Version

Reset Method (RowSelectorImageInfo)

Resets the object back to its default state.
Syntax
'Declaration
 
Public Sub Reset() 
public void Reset()
Example
Demonstrates how to call the Reset() method on the RowSelectorImageInfo class.

Private Sub BtnReset_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnReset.Click
    Me.UltraGrid1.DisplayLayout.RowSelectorImages.Reset()
End Sub
private void btnReset_Click(object sender, EventArgs e)
{
    this.ultraGrid1.DisplayLayout.RowSelectorImages.Reset();
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also