

| Type | Description | |||
| Mode as ViewModeEnum | A ViewModeEnum expression that indicates the way how data is displayed. | |||
| Option as ViewModeOptionEnum | A ViewModeOptionEnum expression that indicates the view's option being changed | |||
| Variant | A Variant expression indicates the newly value for the specified option. |
For instance, the following VB sample changes the size of the control's borders when the control is running in exTableView mode:
With Grid1
.ViewModeOption(exTableView, exBorderWidth) = 2
.ViewModeOption(exTableView, exBorderHeight) = 2
End With