Class FieldCalculatedOptions
Available options for SharePoint Calculated fields
Inherited Members
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public class FieldCalculatedOptions : CommonFieldOptions
Available options for SharePoint Calculated fields
public class FieldCalculatedOptions : CommonFieldOptions
Gets or sets a value that specifies the language code identifier (LCID) used to format the value of the field.
public int? CurrencyLocaleId { get; set; }
System.Nullable<System.Int32>
|
Gets or sets the type of date and time format that is used in the field.
public DateTimeFieldFormatType? DateFormat { get; set; }
System.Nullable<DateTimeFieldFormatType>
|
Gets or sets a value that specifies the formula for the field.
public string Formula { get; set; }
System.String
|
Gets or sets a value that specifies the output format for the field.
public FieldType OutputType { get; set; }
FieldType
|
Gets or sets whether the field must be shown as percentage.
public bool? ShowAsPercentage { get; set; }
System.Nullable<System.Boolean>
|