Type | Description | |||
Right as Boolean | A Boolean expression that indicates whether the left ( items area ) or right ( chart area ) area is changed. | |||
Long | A Long expression that indicates the width of the pane. |
The following VFP sample changes the width of the control's area:
with thisform.Gantt1.Chart .PaneWidth(0) = 256 endwith
The following VFP sample changes the width of the chart's area:
with thisform.Gantt1.Chart .PaneWidth(1) = 256 endwith