IEaxGridViewSettings.ShowRealBorderDataStyle

Syntax

ShowRealBorderDataStyle: Boolean;

Description

The ShowRealBorderDataStyle property determines whether the borders that intersect in a table cell are displayed.

Comments

Available values:

For details about setting up borders and the order of formatting application see the the Setting Up BordersOrder of Applying Formatting Parameters sections.

Example

Executing the example requires that the repository contains an express report with the EXPRESS_REPORT identifier. The express report should have borders configured:

For example:

Add links to the Express and Metabase system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Express: IEaxAnalyzer;
    Grid: IEaxGrid;
    View: IEaxGridViewSettings;
Begin
    MB := MetabaseClass.Active;
    // Get express report
    MObj := MB.ItemById("EXPRESS_REPORT").Edit;
    Express := MObj As IEaxAnalyzer;
    Grid := Express.Grid;
    // Get table display options
    View := Grid.ViewSettings;
    // Display intersecting borders
    View.ShowRealBorderDataStyle := True;
    // Save changes
    MObj.Save;
End Sub UserProc;

After executing the example the table cell displays intersecting borders:

See also:

IEaxGridViewSettings