Dundas Gauge for ASP.NET Send comments on this topic
ImageUrl Property
See Also 
Dundas.Gauges.WebControl Namespace > GaugeContainer Class : ImageUrl Property


Gauge image's absolute or relative URL, which determines the location where the gauge image is saved. Only used when the image is rendered as an IMG tag or INPUT tag.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Image")>
<DefaultValueAttribute()>
<DescriptionAttribute("The URL where the gauge image is saved, when an image or input tag is used for rendering.")>
<PersistenceModeAttribute()>
<EditorAttribute(EditorBaseTypeName="System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", EditorTypeName="Dundas.Gauges.WebControl.x, DundasWebGauge, Version=2.5.1.100, Culture=neutral, PublicKeyToken=2cc0651e6e907aa2")>
Public Property ImageUrl As String
Visual Basic (Usage)Copy Code
Dim instance As GaugeContainer
Dim value As String
 
instance.ImageUrl = value
 
value = instance.ImageUrl
C# 
[CategoryAttribute("Image")]
[DefaultValueAttribute()]
[DescriptionAttribute("The URL where the gauge image is saved, when an image or input tag is used for rendering.")]
[PersistenceModeAttribute()]
[EditorAttribute(EditorBaseTypeName="System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", EditorTypeName="Dundas.Gauges.WebControl.x, DundasWebGauge, Version=2.5.1.100, Culture=neutral, PublicKeyToken=2cc0651e6e907aa2")]
public string ImageUrl {get; set;}

Remarks

This property has no effect if the RenderType property is set to binary streaming.

The temporary image files can be managed by using this ImageUrl property. There are 3 type of file management: Single Filename; Unique Filenames using UIDS; and Round Robin (the default). For more information see the "Image File Management" help topic.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also