Gets or sets the row index for the first visible row in a split.
[Visual Basic]
Public Property FirstRow As Integer
[C#]
public int FirstRow {get;set;}
[Delphi]
public property FirstRow: Int32 read get_FirstRow write set_FirstRow;
Remarks
For a Split object, setting the FirstRow property causes the specified row to become the topmost row for that split only.
Example
The following code sets the FirstRow property to 5:
Me.C1TrueDBGrid1.Splits(1).FirstRow = 5
· C#
this.c1TrueDBGrid1.Splits[1].FirstRow = 5;
· Delphi
Self.C1TrueDBGrid1.Splits[1].FirstRow := 5;
See Also
Split Class | Split Members | C1.Win.C1TrueDBGrid Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |