/// The property to get/set the indeterminate image.
/// </summary>
/// <exception cref="NullReferenceException">Thrown when setting null value.</exception>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public string IndeterminateImageUrl
{
get
/// <summary>
/// Change Image status. It can be override.
/// </summary>
- /// <since_tizen> 6 </since_tizen>
/// This needs to be considered more if public-open is necessary.
[EditorBrowsable(EditorBrowsableState.Never)]
private void UpdateStates()
/// <summary>
/// Update progress value
/// </summary>
- /// <since_tizen> 6 </since_tizen>
/// This needs to be considered more if public-open is necessary.
[EditorBrowsable(EditorBrowsableState.Never)]
private void UpdateValue()
/// Gets or sets the Url of the thumb image.
/// </summary>
/// <exception cref="NullReferenceException">Thrown when setting null value.</exception>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public Selector<string> ThumbImageUrl
{
get
/// <summary>
/// Flag to decide whether the value indicator is shown
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public bool IsValueShown
{
get
/// <summary>
/// Gets or sets the text of value indicator.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public string ValueIndicatorText
{
get
/// <summary>
/// Gets or sets the size of the value indicator image object.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public Size ValueIndicatorSize
{
get
/// <summary>
/// Gets or sets the resource url of the value indicator image object.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public string ValueIndicatorUrl
{
get
///
/// The default value is false.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public bool IsDiscrete { get; set; } = false;
/// <summary>
/// Then, the thumb can only go to 0, 20, 40, 60, 80, and 100.
/// The default is 0.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public float DiscreteValue
{
get
/// <summary>
/// Update Slider by style.
/// </summary>
- /// <since_tizen> 6 </since_tizen>
/// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
protected override void OnUpdate()
/// <summary>
/// Gets or sets indeterminate progress resource.
/// </summary>
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public string IndeterminateImageUrl { get; set; }
/// <summary>
{
/// <summary>
/// IndicatorTypeProperty
- /// </summary>
+ /// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorTypeProperty = BindableProperty.Create(nameof(IndicatorType), typeof(IndicatorType?), typeof(SliderStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
{
/// <summary>
/// SpaceBetweenTrackAndIndicatorProperty
- /// </summary>
+ /// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SpaceBetweenTrackAndIndicatorProperty = BindableProperty.Create(nameof(SpaceBetweenTrackAndIndicator), typeof(uint?), typeof(SliderStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
{
/// <summary>
/// TrackThicknessProperty
- /// </summary>
+ /// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TrackThicknessProperty = BindableProperty.Create(nameof(TrackThickness), typeof(uint?), typeof(SliderStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
{
/// <summary>
/// TrackPaddingProperty
- /// </summary>
+ /// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TrackPaddingProperty = BindableProperty.Create(nameof(TrackPadding), typeof(Extents), typeof(SliderStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
{
/// <summary>
/// Get or set the value indicator text.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public TextLabelStyle ValueIndicatorText { get; set; } = new TextLabelStyle();
/// <summary>
/// Get or set the value indicator image.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
- [EditorBrowsable(EditorBrowsableState.Never)]
+ /// <since_tizen> 9 </since_tizen>
public ImageViewStyle ValueIndicatorImage { get; set; } = new ImageViewStyle();
/// <summary>