IDrawingGuide

public interface IDrawingGuide

Represents an adjustable drawing guide.

Methods

MethodDescription
getOrientation()Returns or sets orientation of the drawing guide.
setOrientation(byte value)Returns or sets orientation of the drawing guide.
getPosition()Returns or sets position of the drawing guide in points from the top, left corner of the slide.
setPosition(float value)Returns or sets position of the drawing guide in points from the top, left corner of the slide.
getColor()Returns or sets color of the drawing guide.
setColor(Color value)Returns or sets color of the drawing guide.

getOrientation()

public abstract byte getOrientation()

Returns or sets orientation of the drawing guide. Read/write Orientation.

Returns: byte

setOrientation(byte value)

public abstract void setOrientation(byte value)

Returns or sets orientation of the drawing guide. Read/write Orientation.

Parameters:

ParameterTypeDescription
valuebyte

getPosition()

public abstract float getPosition()

Returns or sets position of the drawing guide in points from the top, left corner of the slide. Read/write float.


The typical value range is from zero to slide height for a horizontal guide and from zero to slide width for a vertical guide.

Returns: float

setPosition(float value)

public abstract void setPosition(float value)

Returns or sets position of the drawing guide in points from the top, left corner of the slide. Read/write float.


The typical value range is from zero to slide height for a horizontal guide and from zero to slide width for a vertical guide.

Parameters:

ParameterTypeDescription
valuefloat

getColor()

public abstract Color getColor()

Returns or sets color of the drawing guide. Read/write java.awt.Color.

Returns: java.awt.Color

setColor(Color value)

public abstract void setColor(Color value)

Returns or sets color of the drawing guide. Read/write java.awt.Color.

Parameters:

ParameterTypeDescription
valuejava.awt.Color