FlexCel Studio for VCL/LCL
ContentsIndex
PreviousUpNext
THyperLink Record

An encapsulation of an Excel hyperlink.

Pascal
THyperLink = record
  LinkType: THyperLinkType;
  Description: UTF16String;
  TargetFrame: UTF16String;
  TextMark: UTF16String;
  Text: UTF16String;
  Hint: UTF16String;
end;
C++
struct THyperLink {
  THyperLinkType LinkType;
  UTF16String Description;
  UTF16String TargetFrame;
  UTF16String TextMark;
  UTF16String Text;
  UTF16String Hint;
};
Members 
Description 
LinkType: THyperLinkType; 
The type of hyperlink: to a local file, to an url, to a cell or to a networked file.  
Description: UTF16String; 
Text of the HyperLink. This is empty when linking to a cell.  
TargetFrame: UTF16String; 
Description of the HyperLink.  
TextMark: UTF16String; 
When entering an URL on excel, you can enter additional text following the url with a "#" character (for example www.your_url.com#myurl") The text Mark is the text after the "#" char. When entering an address to a cell, the address goes here too.  
Text: UTF16String; 
This parameter is not documented. You can leave it empty.  
Hint: UTF16String; 
Hint when the mouse hovers over the hyperlink.  
Copyright (c) 2002-2008 TMS Software. All rights reserved.
What do you think about this topic? Send feedback!