Gets or sets the URL to an alternate image displayed in an C1ImageField object when the value of the field specified by the DataImageUrlColumn property is null.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[JsonAttribute(true, true, "")]
[DefaultValueAttribute("")]
[EditorAttribute(typeof(ImageUrlEditor), typeof(UITypeEditor))]
public virtual string NullImageUrl { get; set; }
Visual Basic
<JsonAttribute(True, True, "")> _
<DefaultValueAttribute("")> _
<EditorAttribute(GetType(ImageUrlEditor), GetType(UITypeEditor))> _
Public Overridable Property NullImageUrl As String
	Get
	Set

Field Value

The URL to an alternate image displayed when the value of a column is null. The default value is an empty string (""), which indicates that this property is not set.

See Also