XmlFileEditor Class
.NET Framework 2.0
Provides a user interface for selecting an XML file using a standard OpenFileDialog box.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
XmlFileEditor is a UITypeEditor that provides a dialog for selecting an XML file for a file name property.
private: property String^ XmlFile { [EditorAttribute(XmlFileEditor::typeid,UITypeEditor::typeid)] String^ get() { return xml_; } [EditorAttribute(XmlFileEditor::typeid,UITypeEditor::typeid)] void set( String^ value ) { xml_ = value; } } String^ xml_;
/** @attribute EditorAttribute(System.Web.UI.Design.XmlFileEditor.class,
UITypeEditor.class)
*/
/** @property
*/
public String get_XmlFile()
{
return xml_;
} //get_XmlFile
/** @property
*/
public void set_XmlFile(String value)
{
xml_ = value;
} //set_XmlFile
private String xml_;
- SecurityPermission for operating with unmanaged code. Associated enumeration: UnmanagedCode
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Show: