PropFlags Enumeration
Defines the attributes of the property.
Namespace: Microsoft.Hpc.Scheduler.Properties
Assembly: Microsoft.Hpc.Scheduler.Properties (in Microsoft.Hpc.Scheduler.Properties.dll)
Namespace: Microsoft.Hpc.Scheduler.Properties
Assembly: Microsoft.Hpc.Scheduler.Properties (in Microsoft.Hpc.Scheduler.Properties.dll)
| Member name | Description |
|---|---|
| Calculated | 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. |
| Custom | The property is a custom property. This enumeration member represents a value of 16. |
| Indexed | The property is indexed for faster retrieval. This enumeration member represents a value of 8. |
| None | No flags are set. This enumeration member represents a value of 0. |
| Obsolete | The property is obsolete and should not be used. This enumeration member represents a value of 64. This member was introduced in Windows HPC Server 2008 R2 and is not supported in earlier versions. |
| ReadOnly | The property is read-only. This enumeration member represents a value of 1. |
| Visible | The property can be displayed in a user interface. This enumeration member represents a value of 4. |
| Volatile | The property is not persisted in the database. This enumeration member represents a value of 32. |
To use this enumeration in Visual Basic Scripting Edition (VBScript), you need to use the numeric values for the enumeration members or create constants that correspond to those members and set them equal to the numeric values. The following code example shows how to create and set constants for this enumeration in VBScript.
const None = 0 const ReadOnly = 1 const Calculated = 2 const Visible = 4 const Indexed = 8 const Custom = 16 const Volatile = 32 const Obsolete = 64
Development Platforms
Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012Target Platforms
Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, with HPC Pack Client Utilities
Build Date:
Community Additions
ADD
Show: