Show contents 

Report > Report Assembly Interfaces > IPrxReportOptions > IPrxReportOptions.SetDefaultHyperlinkFont

IPrxReportOptions.SetDefaultHyperlinkFont

Syntax

SetDefaultHyperlinkFont;

Description

The SetDefaultHyperlinkFont method sets default hyperlinks formatting (underlined blue text).

Example

The following example assumes that there is the Report object with the IPrxReport type.

Sub UserProc;
Var
    MB: IMetabase;
    MOBj: IMetabaseObject;
    Report: IPrxReport;
    Options: IPrxReportOptions;
Begin
    MB := MetabaseClass.Active;
    MOBj := MB.ItemById("REPORT").Edit;
    Report := MOBj As IPrxReport;
    Options := Report.Options;
    Options.SetDefaultHyperlinkFont;
    MOBj.Save;
End Sub UserProc;

After executing the example default style is applied to hyperlinks.

See also:

IPrxReportOptions