Determines the images used to show collapsed nodes on the grid.

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

Syntax

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

Remarks

By default, these properties are set to images that look like the '+' and '-' icons used in TreeView controls. You can select your own images, and even use different images for different groups.

See Also