<< Click to Display Table of Contents >>
ArcStyle |
This property specifies a border or line style for this object. This border is drawn according to a defined style, using a color specified by the BorderColor property and a width specified by the BorderWidth property. The next table contains valid values for this property.
Available options for the ArcStyle property
Option |
Description |
---|---|
0 - arc |
Drawing style is an arc |
1 - chord |
Drawing style is a chord, connecting a starting and an ending point |
2 - pie |
Drawing style is a pie (default) |
The next script contains an example of using this property.
Sub CommandButton9_Click()
Screen.Item("Arc1").ArcStyle = 1
End Sub