|
|
|
|
|
VerticalOrientation (Property) In french: OrientationVerticale
The VerticalOrientation property is used to: - Find out the orientation of a ListView control.
- Modify the orientation of a ListView control.
// Modify the control orientation LSV_MyListView.VerticalOrientation = True
Syntax
Finding out the orientation of a ListView control Hide the details
<Result> = <ListView control>.VerticalOrientation
<Result>: Boolean - True if the control is oriented vertically,
- False if the control is oriented horizontally.
<ListView control>: Control name Name of ListView control to use.
Modifying the orientation of a ListView control Hide the details
<ListView control>.VerticalOrientation = <New orientation>
<ListView control>: Control name Name of ListView control to use. <New orientation>: Boolean - True to orientate the control vertically,
- False to orientate the control horizontally.
Remarks The VerticalOrientation property can only be used on ListView controls.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|