API Documentation > CorelDRAW > 2025-v26 > Outline > IVGOutline
Outline.NibAngle property
Gets or sets NibAngle
Syntax:
Property Get NibAngle() As Double
Property Let NibAngle(ByVal Value As Double)
Remarks:
The NibAngle property returns or specifies the angle of the Brush tool in a calligraphic outline. The default value of the NibAngle property is 0.
Examples:
The following VBA example assigns a very thin horizontal pen nib to the outline of the active shape.
Sub Test()
ActiveShape.Outline.NibAngle = 90
ActiveShape.Outline.NibStretch = 1 
End Sub