Class RangeSelectorBase<T>
RangeSelectorBase<T> is a base class for SfRangeSelector, and SfDateTimeRangeSelector.
Implements
Inherited Members
Namespace: Syncfusion.Maui.Sliders
Assembly: Syncfusion.Maui.Sliders.dll
Syntax
public abstract class RangeSelectorBase<T> : RangeSliderBase<T>, IDrawableLayout, IDrawable, IAbsoluteLayout, ILayout, IView, IElement, ITransform, IContainer, IList<IView>, ICollection<IView>, IEnumerable<IView>, IEnumerable, ISafeAreaView, IPadding, ICrossPlatformLayout, IVisualTreeElement, ISemanticsProvider, ITouchListener, ITapGestureListener, IPanGestureListener, IGestureListener, IInteractionState
Type Parameters
Name |
---|
T |
Constructors
RangeSelectorBase()
Initializes a new instance of the SfRangeSelector, and SfDateTimeRangeSelector classes.
Declaration
public RangeSelectorBase()
Fields
ActiveRegionFillProperty
The backing store for the ActiveRegionFill field.
Declaration
public static readonly BindableProperty ActiveRegionFillProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | Microsoft.Maui.Controls.BindableProperty. |
ActiveRegionStrokeProperty
The backing store for the ActiveRegionStroke field.
Declaration
public static readonly BindableProperty ActiveRegionStrokeProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | Microsoft.Maui.Controls.BindableProperty. |
ActiveRegionStrokeThicknessProperty
The backing store for the ActiveRegionStrokeThickness field.
Declaration
public static readonly BindableProperty ActiveRegionStrokeThicknessProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | Microsoft.Maui.Controls.BindableProperty. |
ContentProperty
The backing store for the Content field.
Declaration
public static readonly BindableProperty ContentProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | Microsoft.Maui.Controls.BindableProperty. |
InactiveRegionFillProperty
The backing store for the InactiveRegionFill field.
Declaration
public static readonly BindableProperty InactiveRegionFillProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | Microsoft.Maui.Controls.BindableProperty. |
InactiveRegionStrokeProperty
The backing store for the InactiveRegionStroke field.
Declaration
public static readonly BindableProperty InactiveRegionStrokeProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | Microsoft.Maui.Controls.BindableProperty. |
InactiveRegionStrokeThicknessProperty
The backing store for the InactiveRegionStrokeThickness field.
Declaration
public static readonly BindableProperty InactiveRegionStrokeThicknessProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | Microsoft.Maui.Controls.BindableProperty. |
Properties
ActiveRegionFill
Gets or sets the brush to the ActiveRegionFill.
Declaration
public Brush ActiveRegionFill { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Controls.Brush | Defaults to |
Examples
Snippet for SfRangeSelector
Snippet for SfDateTimeRangeSelector
ActiveRegionStroke
Gets or sets the brush to the ActiveRegionStroke.
Declaration
public Brush ActiveRegionStroke { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Controls.Brush | Defaults to |
Examples
Snippet for SfRangeSelector
Snippet for SfDateTimeRangeSelector
ActiveRegionStrokeThickness
Gets or sets the thickness to the ActiveRegionStrokeThickness.
Declaration
public Thickness ActiveRegionStrokeThickness { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Thickness | Defaults to Microsoft.Maui.Thickness(1). |
Examples
Snippet for SfRangeSelector
Snippet for SfDateTimeRangeSelector
<sliders:SfDateTimeRangeSelector ActiveRegionStroke = "Red"
ActiveRegionStrokeThickness = "3" />
Content
Gets or sets the content to the SfRangeSelector and SfDateTimeRangeSelector.
Declaration
public View Content { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Controls.View | Defaults to |
Examples
Snippet for SfRangeSelector
<sliders:SfRangeSelector>
<sliders:SfRangeSelector.Content>
<chart:SfCartesianChart />
</sliders:SfRangeSelector.Content>
</sliders:SfRangeSelector>
Snippet for SfDateTimeRangeSelector
<sliders:SfDateTimeRangeSelector>
<sliders:SfDateTimeRangeSelector.Content>
<chart:SfCartesianChart />
</sliders:SfDateTimeRangeSelector.Content>
</sliders:SfDateTimeRangeSelector>
InactiveRegionFill
Gets or sets the brush to the InactiveRegionFill.
Declaration
public Brush InactiveRegionFill { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Controls.Brush | Defaults to |
Examples
Snippet for SfRangeSelector
Snippet for SfDateTimeRangeSelector
InactiveRegionStroke
Gets or sets the brush to the InactiveRegionStroke.
Declaration
public Brush InactiveRegionStroke { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Controls.Brush | Defaults to |
Examples
Snippet for SfRangeSelector
Snippet for SfDateTimeRangeSelector
InactiveRegionStrokeThickness
Gets or sets the thickness to the InactiveRegionStrokeThickness.
Declaration
public Thickness InactiveRegionStrokeThickness { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Thickness | Defaults to Microsoft.Maui.Thickness(1). |
Examples
Snippet for SfRangeSelector
<sliders:SfRangeSelector InactiveRegionStroke = "Red"
InactiveRegionStrokeThickness = "3" />
Snippet for SfDateTimeRangeSelector
<sliders:SfDateTimeRangeSelector InactiveRegionStroke = "Red"
InactiveRegionStrokeThickness = "3" />