In This Article

Int64PropertyEditor Class

Represents a PropertyEditor for editing a Int64 value with a Int64EditBox.

public class Int64PropertyEditor : PartEditBoxPropertyEditorBase
Inheritance:
object ObservableObjectBase PropertyEditor PropertyEditorBase PartEditBoxPropertyEditorBase object
Derived:
NullableInt64PropertyEditor

Constructors

Int64PropertyEditor()

Initializes an instance of the Int64PropertyEditor class.

public Int64PropertyEditor()

Int64PropertyEditor(Type)

Initializes an instance of the Int64PropertyEditor class.

protected Int64PropertyEditor(Type propertyType)
Parameter Type Description
propertyType Type

The type of the property.

Properties

DefaultValue

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

public long DefaultValue { get; set; }

Property Value

long:

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 "D".

LargeChange

Gets or sets the large change value.

public long LargeChange { get; set; }

Property Value

long:

The large change value. The default value is 5.

Maximum

Gets or sets the highest possible value.

public long Maximum { get; set; }

Property Value

long:

The highest possible value.

Minimum

Gets or sets the lowest possible value.

public long Minimum { get; set; }

Property Value

long:

The lowest possible value.

PickerKind

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

public Int64EditBoxPickerKind PickerKind { get; set; }

Property Value

Int64EditBoxPickerKind:

A Int64EditBoxPickerKind 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.

SmallChange

Gets or sets the small change value.

public long SmallChange { get; set; }

Property Value

long:

The small change value. The default value is 1.

Inherited Members