vsCMPropertyKind Enumeration
Visual Studio 2015
Returns the Get/Set status for the specified property.
Assembly: EnvDTE80 (in EnvDTE80.dll)
| Member name | Description | |
|---|---|---|
| vsCMPropertyKindReadOnly | Returned if the property has only a Get statement. | |
| vsCMPropertyKindReadWrite | Returned if the property has both Get and Set statements. | |
| vsCMPropertyKindWriteOnly | Returned if the property has only a Set statement. |
The enumeration value returned depends upon the read/write status of the specified property. If, for example, a property has only a Get statement, then vsCMPropertyKind will return vsCMPropertyKindReadOnly. If it has only a Set statement, it will return vsCMPropertyKindWriteOnly. If it has both, it will return vsCMPropertyKindReadWrite.
Show: