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