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

Report: IPrxReport;

Opt : IPrxReportOptions;

Begin

Opt := Report.Options;

Opt.SetDefaultHyperlinkFont;

End Sub UserProc;

After executing the example default style is applied to hyperlinks.

See also:

IPrxReportOptions