예제 #1
0
 public static void AddNamedRow(this Shape shape, VisSectionIndices section, string rowName, int rowTag)
 {
     shape.AddNamedRow((short)section, rowName, 0);
 }
예제 #2
0
 public static void DeleteRow(this Shape shape, VisSectionIndices section, short row)
 {
     shape.DeleteRow((short)section, row);
 }
예제 #3
0
 public static Cell GetCellSRC(this Shape shape, VisSectionIndices section, VisRowIndices row, VisCellIndices column)
 {
     return(shape.CellsSRC[(short)section, (short)row, (short)column]);
 }