Report > Report Assembly Interfaces > IPrxReportOptions > IPrxReportOptions.HyperlinkFont
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
MB: IMetabase;
Report: IPrxReport;
Opt: IPrxReportOptions;
style: ITabCellStyle;
TabF: ITabFont;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("REGULAR_REPORT").Edit As IPrxReport;
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: