Uri Property (SelectionEventArgs)
Topic Last Modified: 2006-11-30
The Uniform Resource Identifier (URI) of the selected folder. The Uri property applies to the SelectionEventArgs Class.
Syntax
Property Uri As String
string Uri
Remarks
This property is read-only.
Example
The following Visual Basic .NET example shows a Selection Event handler function that displays the URI of the selected folder.
Private Sub OnSelection(ByVal o As Object, ByVal e As EventArgs) Handles treeView.Selection
' Declare the SelectionEventArgs object.
Dim evtArgs As SelectionEventArgs
' Cast e to a SelectionEventArgs object.
evtArgs = CType(e, SelectionEventArgs)
Debug.WriteLine("Selected folder uri: " + evtArgs.Uri)
End Sub
The following C# example shows a Selection Event handler function that displays the URI of the selected folder.
void OnSelection(object o, EventArgs e )
{
// Cast e to a SelectionEventArgs object.
SelectionEventArgs evtArgs = (SelectionEventArgs)e;
Debug.WriteLine("Selected folder uri: " + evtArgs.Uri);
}