ComponentOne True DBGrid for .NET (2.0) Search HelpCentral 

ViewRow.Visible Property

Gets or sets the visiblity of a row.

[Visual Basic]

Public Property Visible As Boolean

[C#]

public bool Visible {get;set;}

[Delphi]

public property Visible: Boolean read get_Visible write set_Visible;

Example

The following code hides the first row in the grid:

·      Visual Basic

       Me.C1TrueDBGrid1.Splits(0).Rows(0).Visible = False

·      C#

       this.c1TrueDBGrid1.Splits[0].Rows[0].Visible = false;

·      Delphi

       Self.C1TrueDBGrid1.Splits[0].Rows[0].Visible := False;

See Also

ViewRow Class | ViewRow Members | C1.Win.C1TrueDBGrid.BaseGrid Namespace


Send comments about this topic to ComponentOne.
Copyright © ComponentOne LLC. All rights reserved.