XslUrlEditor Class
Provides a user interface for selecting an URL that indicates the location of an XSL file.
For a list of all members of this type, see XslUrlEditor Members.
System.Object
System.Drawing.Design.UITypeEditor
System.Web.UI.Design.UrlEditor
System.Web.UI.Design.XslUrlEditor
[Visual Basic] Public Class XslUrlEditor Inherits UrlEditor [C#] public class XslUrlEditor : UrlEditor [C++] public __gc class XslUrlEditor : public UrlEditor [JScript] public class XslUrlEditor extends UrlEditor
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Remarks
XslUrlEditor is a UITypeEditor that provides a dialog for selecting a URL that indicates the location of an XSL file.
Example
[Visual Basic] <EditorAttribute(GetType(System.Web.UI.Design.XslUrlEditor), GetType(UITypeEditor))> _ Public Property XslFileURL() As String Get Return xslURL End Get Set(ByVal Value As String) xslURL = Value End Set End Property Private xslURL As String [C#] [EditorAttribute(typeof(System.Web.UI.Design.XslUrlEditor), typeof(UITypeEditor))] public string XslFileURL { get { return xslURL; } set { xslURL = value; } } private string xslURL; [C++] public: [EditorAttribute(__typeof(XslUrlEditor), __typeof(UITypeEditor))] __property String* get_XslFileURL() { return xslURL; } [EditorAttribute(__typeof(XslUrlEditor), __typeof(UITypeEditor))] __property void set_XslFileURL(String* value) { xslURL = value; } private: String* xslURL;
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Namespace: System.Web.UI.Design
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
Assembly: System.Design (in System.Design.dll)