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

All Superinterfaces:
IArea, IClone
All Known Implementing Classes:
MultiColumnArea

public interface IMultiColumnArea
extends IArea

This interface defines an area containing multiple columns in a report. Each section within the area can be formatted differently. This interface allows you to retrieve information and set options for a specified area containing multiple columns in your report.


Method Summary
 int getDetailHeight()
           Returns the height of the Details area.
 int getDetailWidth()
           Returns the width of the Details area.
 int getHorizontalGap()
           Returns the horizontal gap between the columns.
 void setDetailHeight(int detailHeight)
           Sets the height of the Details area.
 void setDetailWidth(int detailWidth)
           Sets the width of the Details area.
 void setHorizontalGap(int horizontalGap)
           Sets the horizontal gap between the columns.
 
Methods inherited from interface com.crystaldecisions.sdk.occa.report.definition.IArea
getFormat, getKind, getName, getSections, setFormat, setKind, setName, setSections
 

Method Detail

getDetailHeight

int getDetailHeight()

Returns the height of the Details area.

Returns:
An int that specifies the height of the Details area in twips.

getDetailWidth

int getDetailWidth()

Returns the width of the Details area.

Returns:
An int that specifies the width of the Details area in twips.

getHorizontalGap

int getHorizontalGap()

Returns the horizontal gap between the columns.

Returns:
The horizontal gap between the columns in twips as an int.

setDetailHeight

void setDetailHeight(int detailHeight)

Sets the height of the Details area.

Parameters:
detailHeight - An int that specifies the height of the Details area in twips.

setDetailWidth

void setDetailWidth(int detailWidth)

Sets the width of the Details area.

Parameters:
detailWidth - An int that specifies the width of the Details area in twips.

setHorizontalGap

void setHorizontalGap(int horizontalGap)

Sets the horizontal gap between the columns.

Parameters:
horizontalGap - An int that specifies the horizontal gap between the columns in twips.