Table of Contents

Class NameValueSelected

Namespace
Contensive.BaseClasses.LayoutBuilder
Assembly
CPBase.dll

A simple class to hold a name value pair with a selected flag. Used to create a list of options for a select input in the filter group.

public class NameValueSelected
Inheritance
NameValueSelected
Inherited Members

Constructors

NameValueSelected(string, string, bool)

A simple class to hold a name value pair with a selected flag. Used to create a list of options for a select input in the filter group.

public NameValueSelected(string name, string value, bool selected)

Parameters

name string
value string
selected bool

Properties

name

public string name { get; set; }

Property Value

string

selected

public bool selected { get; set; }

Property Value

bool

value

public string value { get; set; }

Property Value

string