In This Article

DoublePropertyEditor Class

Represents a PropertyEditor for editing a Double value with a DoubleEditBox.

public class DoublePropertyEditor : PartEditBoxPropertyEditorBase
Inheritance:
object ObservableObjectBase PropertyEditor PropertyEditorBase PartEditBoxPropertyEditorBase object
Derived:
NullableDoublePropertyEditor

Constructors

DoublePropertyEditor()

Initializes an instance of the DoublePropertyEditor class.

public DoublePropertyEditor()

DoublePropertyEditor(Type)

Initializes an instance of the DoublePropertyEditor class.

protected DoublePropertyEditor(Type propertyType)
Parameter Type Description
propertyType Type

The type of the property.

Properties

CanSnapToChangePrecision

Gets or sets whether the value should be snapped to the precision of the incremental change value prior to applying the increment.

public bool CanSnapToChangePrecision { get; set; }

Property Value

bool:

true if the value should be snapped to the precision of the incremental change value prior to applying the increment; otherwise, false. The default value is true.

Remarks

When true, a value of 1.24 with change value 0.1 would result in 1.3. When false, a value of 1.24 with change value 0.1 would result in 1.34.

DefaultValue

Gets or sets the value to set when incrementing/decrementing from a null value.

public double DefaultValue { get; set; }

Property Value

double:

The value to set when incrementing/decrementing from a null value. The default value is 0.

Format

Gets or sets the number format string.

public string Format { get; set; }

Property Value

string:

The number format string. The default value is "G".

IsNaNAllowed

Gets or sets whether NaN is accepted as a value.

public bool IsNaNAllowed { get; set; }

Property Value

bool:

true if NaN is accepted as a value; otherwise, false. The default value is false.

IsNegativeInfinityAllowed

Gets or sets whether NegativeInfinity is accepted as a value.

public bool IsNegativeInfinityAllowed { get; set; }

Property Value

bool:

true if NegativeInfinity is accepted as a value; otherwise, false. The default value is false.

IsPositiveInfinityAllowed

Gets or sets whether PositiveInfinity is accepted as a value.

public bool IsPositiveInfinityAllowed { get; set; }

Property Value

bool:

true if PositiveInfinity is accepted as a value; otherwise, false. The default value is false.

LargeChange

Gets or sets the large change value.

public double LargeChange { get; set; }

Property Value

double:

The large change value. The default value is 5.

Maximum

Gets or sets the highest possible value.

public double Maximum { get; set; }

Property Value

double:

The highest possible value.

Minimum

Gets or sets the lowest possible value.

public double Minimum { get; set; }

Property Value

double:

The lowest possible value.

PickerKind

Gets or sets a DoubleEditBoxPickerKind indicating the pre-defined Style to apply to the picker used within the popup.

public DoubleEditBoxPickerKind PickerKind { get; set; }

Property Value

DoubleEditBoxPickerKind:

A DoubleEditBoxPickerKind indicating the pre-defined Style to apply to the picker used within the popup. The default value is Calculator in WPF and Default in UWP.

PredefinedValueTemplateKey

Gets the resource key that references a pre-defined DataTemplate within internal resources to use for editing the property value.

protected override object PredefinedValueTemplateKey { get; }

Property Value

object:

The resource key that references a pre-defined DataTemplate within internal resources to use for editing the property value.

RoundingDecimalPlace

Gets or sets the rounding decimal place.

public int? RoundingDecimalPlace { get; set; }

Property Value

int?:

The rounding decimal place, which is a value between 0 and 15. Pass a null value to disable rounding. The default value is 8.

SmallChange

Gets or sets the small change value.

public double SmallChange { get; set; }

Property Value

double:

The small change value. The default value is 1.

Inherited Members