Table of Contents

Class CheckBoxDataShared<T>

Namespace
SunamoFilesIndex.Data
Assembly
SunamoFilesIndex.dll

Represents checkbox data with a tick state and a value

public class CheckBoxDataShared<T>

Type Parameters

T

Type of the value

Inheritance
CheckBoxDataShared<T>
Inherited Members
Extension Methods

Properties

Tick

Gets or sets the tick state of the checkbox (true = checked, false = unchecked, null = indeterminate)

public bool? Tick { get; set; }

Property Value

bool?

Value

Gets or sets the value associated with this checkbox

public T? Value { get; set; }

Property Value

T