Gets or sets the name of a split.
[Visual Basic]
Public Property Name As String
[C#]
public string Name {get;set;}
[Delphi]
public property Name: String read get_Name write set_Name;
Example
The following code sets the name of the second split to Split2:
Me.C1TrueDBGrid1.Splits(1).Name = "Split2"
· C#
this.c1TrueDBGrid1.Splits[1].Name = "Split2";
· Delphi
Self.C1TrueDBGrid1.Splits[1].Name := "Split2";
See Also
Split Class | Split Members | C1.Win.C1TrueDBGrid Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |