Try our conversational search powered by Generative AI!

Class PropertyNumber

Property representing a numeric value.

Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
public class PropertyNumber : PropertyData, IReadOnly<PropertyData>, IReadOnly

Constructors

PropertyNumber()

Initializes a new instance of the PropertyNumber class.

Declaration
public PropertyNumber()

PropertyNumber(Int32)

Initializes a new instance of the PropertyNumber class.

Declaration
public PropertyNumber(int numberValue)
Parameters
Type Name Description
System.Int32 numberValue

The number value.

Properties

Number

Gets or sets the value of the property as an System.Int32.

Declaration
public int? Number { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

The value of the property as an System.Int32.

PropertyValueType

Gets the System.Type of the property value.

Declaration
public override Type PropertyValueType { get; }
Property Value
Type Description
System.Type

The type of the property value.

Overrides

Type

Gets the property type as defined by enum PropertyDataType.

Declaration
public override PropertyDataType Type { get; }
Property Value
Type Description
PropertyDataType

The PropertyDataType as defined by enum PropertyDataType.

Overrides

Value

Gets or sets the value of the property.

Declaration
public override object Value { get; set; }
Property Value
Type Description
System.Object

The value of the property.

Overrides
Remarks

Value returns null if the property has no value defined.

Methods

Parse(String)

Parses the specified string.

Declaration
public static PropertyNumber Parse(string str)
Parameters
Type Name Description
System.String str

The string to parse.

Returns
Type Description
PropertyNumber

A new instance of PropertyNumber with the value of the string parameter.

ParseToObject(String)

Creates a new instance of PropertyNumber with the given value, ie reversed ToString().

Declaration
[Obsolete("ParseToObject is no longer required to be implemented. The same functionality can be achieved by creating a new instance and calling the ParseToSelf method.")]
public override PropertyData ParseToObject(string value)
Parameters
Type Name Description
System.String value

The string value to parse.

Returns
Type Description
PropertyData

A new instance of PropertyNumber with the given value.

Overrides

ParseToSelf(String)

Sets the value of the property from a string representation.

Declaration
public override void ParseToSelf(string value)
Parameters
Type Name Description
System.String value

The string value to parse.

Overrides

SetDefaultValue()

Sets the default value for this property.

Declaration
protected override void SetDefaultValue()
Overrides

Implements

Extension Methods

EPiServer.Core.PropertyDataExtensions.TranslateDisplayName(EPiServer.Core.PropertyData)
EPiServer.Core.PropertyDataExtensions.TranslateDescription(EPiServer.Core.PropertyData)