Intersoft ClientUI Documentation
TextDecorationsMousePress Property



Gets or sets the text decoration applied to the hyperlink element when it is pressed.
Syntax
Public Property TextDecorationsMousePress As TextDecorationCollection
Dim instance As Hyperlink
Dim value As TextDecorationCollection
 
instance.TextDecorationsMousePress = value
 
value = instance.TextDecorationsMousePress
public TextDecorationCollection TextDecorationsMousePress {get; set;}
public:
property TextDecorationCollection^ TextDecorationsMousePress {
   TextDecorationCollection^ get();
   void set (    TextDecorationCollection^ value);
}
Remarks

As an inline element, you can specify formatting to Hyperlink element. By default, a Hyperlink element will have Underline text decoration, which will still be displayed when the element is hovered or pressed. You can use several properties to change the formatting when the hyperlink element is hovered and pressed. Simply use BackgroundMouseOver, BackgroundMousePress, ForegroundMouseOver, ForegroundMousePress, TextDecorationsMouseOver, and TextDecorationsMousePress properties.

XAML
Copy Code
<Intersoft:FlowDocument>
    <Intersoft:Paragraph>
        <Intersoft:Hyperlink NavigateUri="http://www.bmj.com/content/343/bmj.d4995" Foreground="#FF3ab0f2" 
                    BackgroundMouseOver="#FF88e6f2" BackgroundMousePress="#FF88e6f2" 
                    TextDecorations="None" TextDecorationsMouseOver="None" TextDecorationsMousePress="None">
            <Intersoft:Run>
                British Medical Journal
            </Intersoft:Run>
        </Intersoft:Hyperlink>
    </Intersoft:Paragraph>
</Intersoft:FlowDocument>

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Hyperlink Class
Hyperlink Members

Send Feedback