Edit

Share via


PropFlags Enum

Definition

Defines the attributes of the property.

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum PropFlags
type PropFlags = 
Public Enum PropFlags
Inheritance
PropFlags
Attributes

Fields

Name Value Description
None 0

No flags are set. This enumeration member represents a value of 0.

ReadOnly 1

The property is read-only. This enumeration member represents a value of 1.

Calculated 2

The value of the property is calculated (for example, the number of nodes on which a job is running). This enumeration member represents a value of 2.

Visible 4

The property can be displayed in a user interface. This enumeration member represents a value of 4.

Indexed 8

The property is indexed for faster retrieval. This enumeration member represents a value of 8.

Custom 16

The property is a custom property. This enumeration member represents a value of 16.

Volatile 32

The property is not persisted in the database. This enumeration member represents a value of 32.

Obsolete 64

Applies to