XslUrlEditor Class
.NET Framework 3.0
Provides a user interface for selecting an URL that indicates the location of an XSL file.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
XslUrlEditor is a UITypeEditor that provides a dialog for selecting a URL that indicates the location of an XSL file.
public: property String^ XslFileURL { [EditorAttribute(XslUrlEditor::typeid,UITypeEditor::typeid)] String^ get() { return xslURL; } [EditorAttribute(XslUrlEditor::typeid,UITypeEditor::typeid)] void set( String^ value ) { xslURL = value; } } private: String^ xslURL;
/** @attribute EditorAttribute(System.Web.UI.Design.XslUrlEditor.class,
UITypeEditor.class)
*/
/** @property
*/
public String get_XslFileURL()
{
return xslURL;
} //get_XslFileURL
/** @property
*/
public void set_XslFileURL(String value)
{
xslURL = value;
} //Set_XslFileURL
private String xslURL;
- 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.XslUrlEditor
System.Drawing.Design.UITypeEditor
System.Web.UI.Design.UrlEditor
System.Web.UI.Design.XslUrlEditor
Community Additions
ADD
Show: