UrlBuilder Class
Starts a URL editor that allows a user to select or create a URL. This class cannot be inherited.
Assembly: System.Design (in System.Design.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | BuildUrl(IComponent, Control, String, String, String) | Creates a UI to create or pick a URL. |
![]() ![]() | BuildUrl(IComponent, Control, String, String, String, UrlBuilderOptions) | Creates a UI to create or pick a URL, using the specified UrlBuilderOptions object. |
![]() ![]() | BuildUrl(IServiceProvider, Control, String, String, String, UrlBuilderOptions) | Creates a UI to create or pick a URL, using the specified UrlBuilderOptions object. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The following code example shows how to use the BuildUrl method to launch a URL builder from a menu command at design time.
' This method handles the "Launch Url Builder UI" menu command. ' Invokes the BuildUrl method of the System.Web.UI.Design.UrlBuilder. Private Sub launchUrlBuilder(ByVal sender As Object, ByVal e As EventArgs) ' Create a parent control. Dim c As New System.Windows.Forms.Control() c.CreateControl() ' Launch the Url Builder using the specified control ' parent, initial URL, empty relative base URL path, ' window caption, filter string and URLBuilderOptions value. UrlBuilder.BuildUrl( _ Me.Component, _ c, _ "http://www.example.com", _ "Select a URL", _ "", _ UrlBuilderOptions.None) End Sub
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
.jpeg?cs-save-lang=1&cs-lang=vb)
.jpeg?cs-save-lang=1&cs-lang=vb)