com.crystaldecisions.sdk.occa.report.definition
Interface ICrossTabGridLineOptions

All Superinterfaces:
IClone
All Known Implementing Classes:
CrossTabGridLineOptions

public interface ICrossTabGridLineOptions
extends IClone

This interface allows you to modify formatting options of grid lines use in cross-tab objects. Options include line style, color, width and "is visible".

See Also:
ICrossTabGridLineFormattingInfo#setGridLineOptionsByType(CrossTabGridLineType, ICrossTabGridLineOptions)

Method Summary
 java.awt.Color getColor()
          Gets the grid line's color.
 boolean getIsDraw()
          Gets whether the grid line is visible.
 LineStyle getLineStyle()
          Gets the grid line's line style.
 int getWidth()
          Gets the grid line's width.
 void setColor(java.awt.Color color)
          Sets the grid line's color.
 void setIsDraw(boolean isDraw)
          Sets whether the grid line is visible.
 void setLineStyle(LineStyle lineStyle)
          Sets the grid line's line style.
 void setWidth(int width)
          Sets the grid line's width.
 

Method Detail

getLineStyle

LineStyle getLineStyle()
Gets the grid line's line style.

Returns:
the grid line's style as a com.crystaldecisions.sdk.occa.report.definition.LineStyle

setLineStyle

void setLineStyle(LineStyle lineStyle)
Sets the grid line's line style.

Parameters:
lineStyle - the grid line's style as a com.crystaldecisions.sdk.occa.report.definition.LineStyle

getColor

java.awt.Color getColor()
Gets the grid line's color.

Returns:
the grid line's color as a java.awt.Color object

setColor

void setColor(java.awt.Color color)
Sets the grid line's color.

Parameters:
color - the grid line's color as a java.awt.Color object

getWidth

int getWidth()
Gets the grid line's width.

Returns:
the int value of the grid line's width

setWidth

void setWidth(int width)
Sets the grid line's width.

Parameters:
width - the int value of the grid line's width

getIsDraw

boolean getIsDraw()
Gets whether the grid line is visible.

Returns:
true if the grid line is visible, false if it is not

setIsDraw

void setIsDraw(boolean isDraw)
Sets whether the grid line is visible.

Parameters:
isDraw - true if the grid line is visible, false if it is not