ITabHyperlink.SeparateLinkText

Syntax

SeparateLinkText: TriState;

Description

The SeparateLinkText property determines whether separate text should be used for a hyperlink. It is used together with the ITabHyperlink.Text property.

Example

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Rep: IPrxReport;
    Tab: ITabSheet;
    Range: ITabRange;
    Hyperlink: ITabHyperlink;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("Reg_rep").Edit;
    Rep := MObj As IPrxReport;
    Tab := Rep.ActiveSheet.Table;
    Range := Tab.Cell(00);
    Hyperlink := Range.Style.Hyperlink;
    Hyperlink.Action := "=Sheet2";
    Hyperlink.Enable := TriState.OnOption;
    Hyperlink.SeparateLinkText := TriState.OnOption;
    Hyperlink.Text := "Goto_List2";
    MObj.Save;
End Sub UserProc;

After executing the example, a hyperlink will be created with the Goto_Sheet2 text in the A0 cell of the regular report, clicking on which will result in going to Sheet2.

See also:

ITabHyperlink