GefArcFormat.EndAngle (property)

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

Example:

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