Table of Contents

Class FieldNumberOptions

Namespace
PnP.Core.Model.SharePoint
Assembly
PnP.Core.dll

Available options for SharePoint Number fields

public class FieldNumberOptions : CommonFieldOptions
Inheritance
FieldNumberOptions
Inherited Members

Properties

Decimals

How many decimals to show

public int? Decimals { get; set; }

Property Value

int?

DefaultValue

Default value set on the field

public double? DefaultValue { get; set; }

Property Value

double?

MaximumValue

Gets or sets a value that specifies the maximum allowed value for the field.

public double? MaximumValue { get; set; }

Property Value

double?

MinimumValue

Gets or sets a value that specifies the minimum allowed value for the field.

public double? MinimumValue { get; set; }

Property Value

double?

ShowAsPercentage

Gets or sets whether the field must be shown as percentage.

public bool? ShowAsPercentage { get; set; }

Property Value

bool?