Type | Description | |||
Level as Long | A long expression that inidcates the level being resized. The 0 Level indicates the first level. The 1 Level indicates the second level and so on. | |||
Long | A long expression that indicates the width of the level, in pixels. |
The following sample specify a minimum width for the first level:
Private Sub XMLGrid1_ResizeLevel(ByVal Level As Long) If Level = 0 Then With XMLGrid1 If .LevelWidth(Level) < 64 Then .LevelWidth(Level) = 64 End If End With End If End Sub