<< 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 BorderColor and a width specified by BorderWidth. 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) |
Example:
Sub CommandButton9_Click()
Screen.Item("Arc1").ArcStyle = 1
End Sub