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. Properties PropertyTypeDescription LabelstringThe label associated with this input field. IsRequiredboolIf set to true then the user will be required to fill this in. This value is currently ignored. OptionsListThe 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. SelectedValuesIEnumerableThe options that have been selected by the user. This corresponds to the Value property of the parameter objects. SelectedValueTextstringA comma separated list that represents the current selection as a single string. Example <Rock:FieldContainer> <Rock:CheckBoxList Label="Categories"> <Rock:Parameter Name="All Church" Value="38" /> <Rock:Parameter Name="Men" Value="39" /> <Rock:Parameter Name="Women" Value="40" /> </Rock:CheckBoxList> </Rock:FieldContainer>