Show contents 

Report > Report Assembly Interfaces > IPrxTableIsland > IPrxTableIsland.ColumnsBehaviour

IPrxTableIsland.ColumnsBehaviour

Syntax

ColumnsBehaviour: PrxDataIslandHeaderBehaviour;

Description

The ColumnsBehaviour property determines behavior of a relational data area when the number of data area columns is increased.

Example

The following example assumes that there is the Report object with the IPrxReport type.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Report: IPrxReport;
    TabIs: IPrxTableIslands;
    TI: IPrxTableIsland;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("REPORT").Edit;
    Report := MObj As IPrxReport;
    TabIs := Report.TableIslands;
    TI := TabIs.Item(0);
    TI := TI.Edit;
    TI.ColumnsBehaviour := PrxDataIslandHeaderBehaviour.Capture;
    TI.Save;
End Sub UserProc;

After executing the example the following columns behavior is set: Capture adjacent columns. When the number of the data area columns is increased information in the columns outside of the data area is overridden with source data.

See also:

IPrxTableIsland