Gets or sets the width in pixels of the pen line when it is drawn.
Defined As
Execution Result
If the property get/set succeeds the return value will be Success. If the return variable is bad then the return value will be InvalidArgument. If the pen is deleted the return value will be GeneralFailure.
Limits
Calling Syntax
This example assumes there is a valid alarm pen object to be passed into the example methods.
[VBA]
Sub Example(alarmPen As Object)
Dim lineWidth As Long
`Getting Property value
lineWidth = alarmPen.LineWidth
`Setting Property value
alarmPen.LineWidth = 5
End Sub
[Cicode]
FUNCTION Example(OBJECT hAlarmPen)
// Getting property value
INT nLineWidth = _ObjectGetProperty(hAlarmPen, "LineWidth");
// Setting property value
_ObjectSetProperty(hAlarmPen, "LineWidth", 5);
END