XmlFileEditor Class
.NET Framework 3.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 calling unmanaged code. Demand value: Demand; Associated enumeration: UnmanagedCode.
Community Additions
ADD
Show: