Find a matrix sheet by name.
FindMatrixSheet(name)
[<bookName>]<sheetName>
The MatrixSheet
EX1
import PyOrigin MSheet=PyOrigin.FindMatrixSheet('[MBook1]Sheet1') nCol=MSheet.GetColCount() nRow=MSheet.GetRowCount() print('The dimension of the matrixSheet is %s*%s' % (nCol,nRow))