ShowRealBorderDataStyle: Boolean;
The ShowRealBorderDataStyle property determines whether the borders that intersect in a table cell are displayed.
Available values:
True. Intersecting borders are displayed in a table cell.
False. Default value. Intersecting borders are not displayed in a tale cell.
For details about setting up borders and the order of formatting application see the the Setting Up Borders, Order of Applying Formatting Parameters sections.
Executing the example requires that the repository contains an express report with the EXPRESS_REPORT identifier. The express report should have borders configured:
Top row border.
Right column border.
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: