ImageUrlEditor Class
.NET Framework 3.0
Provides a user interface for selecting a URL that references an image.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
ImageUrlEditor is a UITypeEditor that provides a dialog box for selecting a URL property that references an image.
<EditorAttribute(GetType(System.Web.UI.Design.ImageUrlEditor), GetType(UITypeEditor))> _ Public Property imageURL() As String Get Return imgURL End Get Set(ByVal Value As String) imgURL = Value End Set End Property Private imgURL As String
/** @attribute EditorAttribute(System.Web.UI.Design.ImageUrlEditor.class,
UITypeEditor.class)
*/
/** @property
*/
public String get_imageURL()
{
return imgURL;
} //get_imageURL
/** @property
*/
public void set_imageURL(String value)
{
imgURL = value;
} //set_imageURL
private String imgURL;
- 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.ImageUrlEditor
System.Drawing.Design.UITypeEditor
System.Web.UI.Design.UrlEditor
System.Web.UI.Design.ImageUrlEditor
Community Additions
ADD
Show: