Public Member Functions | |
| override bool | Equals (object arg) |
| override int | GetHashCode () |
| TableCoordinate (int row, int col) | |
| override string | ToString () |
Properties | |
| int | Column [get, set] |
| The column as property. | |
| int | Row [get, set] |
| The row as property. | |
Instances of this class may be used as a key in hashtables. Refer to remarks on BigGridFrame.
Definition at line 1582 of file Grid.cs.
| wx.SampleGrid.TableCoordinate.TableCoordinate | ( | int | row, | |
| int | col | |||
| ) |
| override bool wx.SampleGrid.TableCoordinate.Equals | ( | object | arg | ) |
Definition at line 1605 of file Grid.cs.
References wx.SampleGrid.TableCoordinate.m_col, and wx.SampleGrid.TableCoordinate.m_row.
01606 { 01607 if (arg is TableCoordinate) 01608 { 01609 TableCoordinate castedArg=(TableCoordinate) arg; 01610 return m_row==castedArg.m_row && m_col==castedArg.m_col; 01611 } 01612 else 01613 return false; 01614 }
| override int wx.SampleGrid.TableCoordinate.GetHashCode | ( | ) |
| override string wx.SampleGrid.TableCoordinate.ToString | ( | ) |
int wx.SampleGrid.TableCoordinate.Column [get, set] |
The column as property.
Definition at line 1600 of file Grid.cs.
Referenced by wx.SampleGrid.BigGridTable.NoOfInputsCol().
int wx.SampleGrid.TableCoordinate.Row [get, set] |
The row as property.
Definition at line 1594 of file Grid.cs.
Referenced by wx.SampleGrid.BigGridTable.NoOfInputsRow().
(c) 2003-2010 the wx.NET project