GefArcFormat.StartAngle (property)

Gets and sets the starting angle of the arc in radians.
Syntax: VARIANT = object.StartAngle
object.StartAngle = VARIANT
Description: The StartAngle property gets and sets the starting angle of the arc in radians.

Example:

Sub GefArcFormat_StartAngle()
    
    Dim oCimArcFmt As GefArcFormat
    
    Set oCimArcFmt = CimGetObject.ArcFormat
    oCimArcFmt.StartAngle = pi / 4
    CimGetScreen.Refresh False
    
End Sub