'Declaration
Public Sub AddLinkAnnotationInteractive( _ ByVal Text As String, _ ByVal Link As String, _ ByVal ForeColor As Color, _ ByVal HoverForeColor As Color, _ ByVal FontName As String, _ ByVal FontStyle As FontStyle, _ ByVal HoverFontStyle As FontStyle, _ ByVal Opacity As Single, _ ByVal Rotation As Single _ )
public void AddLinkAnnotationInteractive( string Text, string Link, Color ForeColor, Color HoverForeColor, string FontName, FontStyle FontStyle, FontStyle HoverFontStyle, float Opacity, float Rotation )
public procedure AddLinkAnnotationInteractive( Text: String; Link: String; ForeColor: Color; HoverForeColor: Color; FontName: String; FontStyle: FontStyle; HoverFontStyle: FontStyle; Opacity: Single; Rotation: Single );
public function AddLinkAnnotationInteractive( Text : String, Link : String, ForeColor : Color, HoverForeColor : Color, FontName : String, FontStyle : FontStyle, HoverFontStyle : FontStyle, Opacity : float, Rotation : float );
public: void AddLinkAnnotationInteractive( string* Text, string* Link, Color ForeColor, Color HoverForeColor, string* FontName, FontStyle FontStyle, FontStyle HoverFontStyle, float Opacity, float Rotation )
public: void AddLinkAnnotationInteractive( String^ Text, String^ Link, Color ForeColor, Color HoverForeColor, String^ FontName, FontStyle FontStyle, FontStyle HoverFontStyle, float Opacity, float Rotation )
Parameters
- Text
- The text to render, means the displayed text, of the newly added link annotation.
- Link
- The destination of the newly added link annotation, for example http://www.gdpicture.com or page:5. It corresponds to the AnnotationLink.Link property.
- ForeColor
- A color object that defines the required color of the used font for displaying the specified text.
- HoverForeColor
- A color object that defines the required color of the used font for displaying the specified text when users hover the mouse over the link annotation object.
Be aware, that mouse-hovering is only active when the editing mode for annotations is disabled.
- FontName
- The name of the font used to write the defined text, for example Arial.
- FontStyle
- A member of the FontStyle enumeration. The font style of the used font for writing the defined text.
- HoverFontStyle
- A member of the FontStyle enumeration. The font style of the used font for writing the defined text when users hover the mouse over the link annotation object.
Be aware, that mouse-hovering is only active when the editing mode for annotations is disabled.
- Opacity
- The opacity value of the newly added link annotation, from 0 (full transparency) to 1 (full opacity).
- Rotation
- The clockwise rotation of the newly added link annotation, in degrees.