Using the Process Analyst > Process Analyst for Developers > Automation Model > IPen.HorizontalMinorGridlinesColor [Property][Get/Set]

IPen.HorizontalMinorGridlinesColor [Property][Get/Set]

Gets or sets the color used to draw the minor horizontal gridlines.

Defined As

Execution Result

If the property get/set succeeds, the return value will be Success. If the return variable is bad, the return value will be InvalidArgument. If the pen is deleted, the return value will be GeneralFailure.

Remarks

To calculate the integer value necessary for a color apply the following formula:

(65536 * Blue) + (256 * Green) + (Red)

where Red, Green, and Blue are 0-255.

See Also

IPen.HorizontalGridlinesColor [Property][Get/Set]

Calling Syntax

Assumes you have passed a valid pen object into the function.

[VBA]

Sub Example(pen As Object)
Dim color As Long
`Getting Property value
color = pen.HorizontalMinorGridlinesColor
`Setting Property value to Red
pen.HorizontalMinorGridlinesColor = 255
End Sub

[Cicode]

FUNCTION Example(OBJECT hPen)
INT color;
// Getting current property value
color = _ObjectGetProperty(hPen, "HorizontalMinorGridlinesColor");
// Setting Property to Red
_ObjectSetProperty(hPen, "HorizontalMinorGridlinesColor", PackedRGB(255, 0, 0));
END