コミュニティ

SETTING HYPERLINK DESTINATION TO BOOKMARK OF OTHER DOCUMENT

We can set target of hyperlink to any bookmark of that document . But can we set hyperlink target to bookmark of any other document???

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

1件のコメント

  • Avatar
    Permanently deleted user

    There are different types of hyperlink, you can use any of them:

    • HS_File - the full path to the file.
    • HS_Ftp - the FTP site address.
    • HS_Gopher - the Gopher server address.
    • HS_Http - the website address.
    • HS_Https - the HTTPS website address.
    • HS_Local - a local hyperlink to a text fragment in the same document.
    • HS_Mailto - the e-mail address.
    • HS_News - the full address to a news group.
    • HS_Unknown - the type of hyperlink is defined automatically.

    For example:

    FREngine.Hyperlink hprLink = engineLoader.Engine.CreateHyperlink();

    hprLink.Scheme = FREngine.HyperlinkSchemeEnum.HS_Http;

    hprLink.Target = "http://forum.ocrsdk.com/";

    Please find more details in Developer's Help → API Reference → Text-Related Objects → Hyperlink Object (IHyperlink Interface).

    0

サインインしてコメントを残してください。