[This is preliminary documentation and is subject to change.]

Gets or sets URI to navigate to

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[TypeConverterAttribute(typeof(UriTypeConverter))]
[KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Behavior)]
[DefaultValueAttribute(typeof(Uri), "null pointer")]
public virtual Uri LinkURI { get; set; }
Visual Basic
<TypeConverterAttribute(GetType(UriTypeConverter))> _
<KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Behavior)> _
<DefaultValueAttribute(GetType(Uri), "null pointer")> _
Public Overridable Property LinkURI As Uri
	Get
	Set
Visual C++
[TypeConverterAttribute(typeof(UriTypeConverter))]
[KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories::Behavior)]
[DefaultValueAttribute(typeof(Uri), L"null pointer")]
public:
virtual property Uri^ LinkURI {
	Uri^ get ();
	void set (Uri^ value);
}
F#
[<TypeConverterAttribute(typeof(UriTypeConverter))>]
[<KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Behavior)>]
[<DefaultValueAttribute(typeof(Uri), "null pointer")>]
abstract LinkURI : Uri with get, set
[<TypeConverterAttribute(typeof(UriTypeConverter))>]
[<KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Behavior)>]
[<DefaultValueAttribute(typeof(Uri), "null pointer")>]
override LinkURI : Uri with get, set
JScript
function get LinkURI () : Uri
function set LinkURI (value : Uri)

Field Value

Actuall URI or target of the link

Return Value

New URI of target of the link

Remarks

Note for inheritors: Call OnChanged(EventArgs) after value is changed (unless calling base class setter LinkURI)

See Also