Check Box List
Last updated
Last updated
⚙️ Powered by Rock RMS
Inherits from Xamarin.Forms.ContentView
This field displays a series of check boxes for the user to turn on or off. An example of how this could be used is with a filter of categories where you want to display a list of categories and allow the user to pick which ones to show.
Property
Type
Description
Label
string
The label associated with this input field.
IsRequired
bool
If set to true
then the user will be required to fill this in. This value is currently ignored.
Options
List<Parameter>
The list of checkbox options that will be presented to the user. The displayed text is taken from the Name
property and the stored value is taken from the Value
property.
SelectedValues
IEnumerable<string>
The options that have been selected by the user. This corresponds to the Value
property of the parameter objects.
SelectedValueText
string
A comma separated list that represents the current selection as a single string.