|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IArea
This interface manipulates an area in a report. An area is a group of like sections in the report (for example, Details A--Da, Details B--Db, and so on) that all share the same characteristics. Each section within the area can be formatted differently. This interface allows you to retrieve information and set options for a specified area in your report.
Method Summary | |
---|---|
IAreaFormat |
getFormat()
Returns the format of the area. |
AreaSectionKind |
getKind()
Returns the type (kind) of area (for example, Details, Report Header, Page Footer, and so on). |
java.lang.String |
getName()
Returns the area name. |
Sections |
getSections()
Returns the sections of the area. |
void |
setFormat(IAreaFormat areaFormat)
Sets the format of the area. |
void |
setKind(AreaSectionKind kind)
Sets the type (kind) of area (for example, Details, Report Header, Page Footer, and so on). |
void |
setName(java.lang.String name)
Sets the area name. |
void |
setSections(Sections sections)
Sets the sections of the area. |
Method Detail |
---|
IAreaFormat getFormat()
Returns the format of the area.
IAreaFormat
object that specifies the format of the area.AreaSectionKind getKind()
Returns the type (kind) of area (for example, Details, Report Header, Page Footer, and so on).
AreaSectionKind
object that specifies the kind of area.java.lang.String getName()
Returns the area name.
String
that specifies the area name.Sections getSections()
Returns the sections of the area.
Sections
object containing the sections of the area.void setFormat(IAreaFormat areaFormat)
Sets the format of the area.
areaFormat
- An IAreaFormat
object that specifies the format of the area.void setKind(AreaSectionKind kind)
Sets the type (kind) of area (for example, Details, Report Header, Page Footer, and so on).
kind
- An AreaSectionKind
object that specifies the kind of area.void setName(java.lang.String name)
Sets the area name.
name
- A String
that specifies the area name.void setSections(Sections sections)
Sets the sections of the area.
sections
- A Sections
object containing the sections of the area.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |