IPrxDataIsland.OutputPart

Syntax

OutputPart: PrxDataIslandPart;

Description

The OutputPart property determines the part of the data area to be displayed on a sheet.

Example

Executing the example requires a regular report with the REPORT identifier, which contains data area. Add links to the Metabase, Report system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    DI: IPrxDataIsland;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById(
"REPORT").Edit;
    DI := (MObj 
As IPrxReport).DataIslands.Item(0).Edit;
        
// Set displaying of data only. 
        DI.OutputPart := PrxDataIslandPart.DataOnly;
    DI.Save;

    // Save report.
    MObj.Save;
End Sub UserProc;

After executing the example the first data area of the REPORT regular report shows only data without row and column headings.

See also:

IPrxDataIsland