Type | Description | |||
Double | A double expression that indicates the width of the drop down filter window proportionally with the width of the column. If the FilterBarDropDownWidth expression is negative, the absolute value indicates the width of the drop down filter window in pixels. Else, the value indicates how many times the width of the column is multiply to get the width of the drop down filter window. |
The following VB sample specifies that the width of the drop down filter window is double of the column's width:
With Gantt1.Columns(0) .FilterBarDropDownWidth = 2 End With
The following VB sample specifies that the width of the drop down filter window is 150 pixels:
With Gantt1.Columns(0) .FilterBarDropDownWidth = -150 End With