IPrxTableIsland.RowsBehaviour

Syntax

RowsBehaviour: PrxDataIslandHeaderBehaviour;

Description

The RowsBehaviour property determines behavior of a relational data area when the number of data area rows is increased. If this property is set to Insert, specify the RowsToInsert property.

Example

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

Sub User;

Var

Report : IPrxReport;

TabIs : IPrxTableIslands;

TI : IPrxTableIsland;

Begin

TabIs := Report.TableIslands;

TI := TabIs.Item(0);

TI := TI.Edit;

TI.RowsBehaviour := PrxDataIslandHeaderBehaviour.Capture;

TI.Save;

End Sub User;

After executing the example the following rows behavior is set: Capture adjacent rows. When the number of the data area rows is increased information in the rows located lower than the data area is overridden with source data.

See also:

IPrxTableIsland