Table of Contents

Class CheckBoxData<T>

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Represents data for a checkbox control with a value and checked state.

public class CheckBoxData<T>

Type Parameters

T

The type of value to display.

Inheritance
CheckBoxData<T>
Inherited Members
Extension Methods

Properties

IsChecked

Gets or sets whether the checkbox is checked. Set to IsChecked when TwoWayTable.DataCellWrapper == AddBeforeControl.CheckBox.

public bool? IsChecked { get; set; }

Property Value

bool?

Value

Gets or sets the value that should be displayed.

public T Value { get; set; }

Property Value

T