Referenced By      Properties       Methods Send us your Feedback
SGColumns Object

Name: SGColumns
Description: Collection of SGColumn objects.
GUID: {F0A68CB3-9109-11D2-8EBB-008048E27A77}

 Show Example
 Copy Code     Show Me

The following example changes width and color of the current column. To try the example, place BeeGrid on a form. Paste the code into the Declarations section and press F5.

Private Sub SGGrid1_OnInit()
   SGGrid1.DataColCount = 3
   With SGGrid1.Columns.Current
      .Width = .Width * 1.3
      .Style.BackColor = vbBlue
   End With
End Sub


Back to topic

Referenced By

Columns