Class FieldNumberOptions
Available options for SharePoint Number fields
Inheritance
System.Object
FieldNumberOptions
Assembly: PnP.Core.dll
Syntax
public class FieldNumberOptions : CommonFieldOptions
Properties
How many decimals to show
Declaration
public int? Decimals { get; set; }
Property Value
System.Nullable<System.Int32>
|
Default value set on the field
Declaration
public double? DefaultValue { get; set; }
Property Value
System.Nullable<System.Double>
|
Gets or sets a value that specifies the maximum allowed value for the field.
Declaration
public double? MaximumValue { get; set; }
Property Value
System.Nullable<System.Double>
|
Gets or sets a value that specifies the minimum allowed value for the field.
Declaration
public double? MinimumValue { get; set; }
Property Value
System.Nullable<System.Double>
|
Gets or sets whether the field must be shown as percentage.
Declaration
public bool? ShowAsPercentage { get; set; }
Property Value
System.Nullable<System.Boolean>
|