Property | Type | Description | |
---|---|---|---|
DefaultRowHeight | int | ||
MaximumRowHeight | int | ||
MinimumRowHeight | int |
Property | Type | Description | |
---|---|---|---|
Init | void | ||
OnCellAdded | void | ||
OnCellPropertyChanged | void | ||
OnCellRemoved | void | ||
OnRowPropertyChanged | void | ||
RowIndexAtExact | int | ||
ShouldSerializeRowHeight | bool | ||
UpdateRowIndicies | void | ||
this | |||
this |
Method | Description | |
---|---|---|
RowIndexAt ( int yPosition ) : int |
Returns the index of the Row that lies on the specified position
|
|
TableModel ( ) : System |
Initializes a new instance of the TableModel class with default settings
|
|
TableModel ( |
Initializes a new instance of the TableModel class with an array of Row objects
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Releases the unmanaged resources used by the TableModel and optionally releases the managed resources
|
|
OnRowAdded ( |
Raises the RowAdded event
|
|
OnRowHeightChanged ( |
Raises the RowHeightChanged event
|
|
OnRowRemoved ( |
Raises the RowRemoved event
|
|
OnSelectionChanged ( |
Raises the SelectionChanged event
|
Method | Description | |
---|---|---|
Init ( ) : void |
Initialise default settings
|
|
OnCellAdded ( |
Raises the CellAdded event
|
|
OnCellPropertyChanged ( |
Raises the CellPropertyChanged event
|
|
OnCellRemoved ( |
Raises the CellRemoved event
|
|
OnRowPropertyChanged ( |
Raises the RowPropertyChanged event
|
|
RowIndexAtExact ( int yPosition ) : int |
Returns the index of the Row that lies on the specified position. Found by iterating through all rows (i.e. copes with variable height rows).
|
|
ShouldSerializeRowHeight ( ) : bool |
Specifies whether the RowHeight property should be serialized at design time
|
|
UpdateRowIndicies ( int start ) : void |
Updates the Row's Index property so that it matches the Rows position in the RowCollection
|
|
this ( |
||
this ( int row, int column ) : |
protected OnRowAdded ( |
||
e | A TableModelEventArgs that contains the event data | |
return | void |
protected OnRowHeightChanged ( |
||
e | An EventArgs that contains the event data | |
return | void |
protected OnRowRemoved ( |
||
e | A TableModelEventArgs that contains the event data | |
return | void |
protected OnSelectionChanged ( |
||
e | A SelectionEventArgs that contains the event data | |
return | void |
public RowIndexAt ( int yPosition ) : int | ||
yPosition | int | The y-coordinate to check |
return | int |
public TableModel ( |
||
rows | An array of Row objects that represent the Rows /// of the TableModel | |
return | System |