Search Results for

    Show / Hide Table of Contents

    Class FieldNumberOptions

    Available options for SharePoint Number fields

    Inheritance
    System.Object
    CommonFieldOptions
    FieldNumberOptions
    Inherited Members
    CommonFieldOptions.Id
    CommonFieldOptions.Required
    CommonFieldOptions.AddToDefaultView
    CommonFieldOptions.Options
    CommonFieldOptions.Description
    CommonFieldOptions.InternalName
    CommonFieldOptions.DefaultFormula
    CommonFieldOptions.EnforceUniqueValues
    CommonFieldOptions.Group
    CommonFieldOptions.Hidden
    CommonFieldOptions.Indexed
    CommonFieldOptions.ValidationFormula
    CommonFieldOptions.ValidationMessage
    CommonFieldOptions.ShowInEditForm
    CommonFieldOptions.ShowInViewForms
    CommonFieldOptions.ShowInNewForm
    CommonFieldOptions.CustomFormatter
    Namespace: PnP.Core.Model.SharePoint
    Assembly: PnP.Core.dll
    Syntax
    public class FieldNumberOptions : CommonFieldOptions

    Properties

    Decimals

    How many decimals to show

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

    DefaultValue

    Default value set on the field

    Declaration
    public double? DefaultValue { get; set; }
    Property Value
    System.Nullable<System.Double>

    MaximumValue

    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>

    MinimumValue

    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>

    ShowAsPercentage

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

    Declaration
    public bool? ShowAsPercentage { get; set; }
    Property Value
    System.Nullable<System.Boolean>

    Back to top PnP Core SDK
    Generated by DocFX with Material UI
    spacer