DatasheetColumnHeaderUnderlineStyle Property

Microsoft Access Visual Basic

expression.DatasheetColumnHeaderUnderlineStyle

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

Valid values are between zero and eight. Values greater than eight are ignored; negative values or values above 255 cause an error.

Value Description
0 Transparent border
1 Solid
2 Dashes
3 Short dashes
4 Dots
5 Sparse dots
6 Dash-dot
7 Dash-dot-dot
8 Double solid

This property is not supported when saving a form as a data access page.

Example

This example sets the column header underline style for the first open form to sparse dots. The form must be set to Datasheet View in order for you to see the change.

Forms(0).DatasheetColumnHeaderUnderlineStyle = 5