XmlUrlEditor Class
.NET Framework 3.0
Provides a user interface for selecting a URL that indicates the location of an XML file.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
XmlUrlEditor is a UITypeEditor that provides a dialog for selecting a URL that indicates the location of an XML file.
<EditorAttribute(GetType(System.Web.UI.Design.XmlUrlEditor), GetType(UITypeEditor))> _ Public Property XmlFileURL() As String Get Return xmlURL End Get Set(ByVal Value As String) xmlURL = Value End Set End Property Private xmlURL As String
/** @attribute EditorAttribute(System.Web.UI.Design.XmlUrlEditor.class,
UITypeEditor.class)
*/
/** @property
*/
public String get_XmlFileURL()
{
return xmlURL;
} //get_XmlFileURL
/** @property
*/
public void set_XmlFileURL(String value)
{
xmlURL = value;
} //set_XmlFileURL
private String xmlURL;
- SecurityPermission for calling unmanaged code. Demand value: Demand; Associated enumeration: UnmanagedCode.
System.Object
System.Drawing.Design.UITypeEditor
System.Web.UI.Design.UrlEditor
System.Web.UI.Design.XmlUrlEditor
System.Drawing.Design.UITypeEditor
System.Web.UI.Design.UrlEditor
System.Web.UI.Design.XmlUrlEditor
Community Additions
ADD
Show: