HyperlinkFont: ITabFont;
The HyperlinkFont property determines uniform formatting for all report hyperlinks.
The following example assumes that there is the Report object with the IPrxReport type.
Sub UserProc;
Var
Report: IPrxReport;
Opt : IPrxReportOptions;
style : ITabCellStyle;
TabF : ITabFont;
Begin
Opt := Report.Options;
Style := New TabCellStyle.Create;
TabF := Style.Font;
TabF.Bold := TriState.OnOption;
TabF.Color := New GxColor.CreateRGB(231,315,135);
Opt.HyperlinkFont := TabF;
End Sub UserProc;
After executing the report uniform style is applied to report hyperlinks.
See also: