ChangeTypes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the types of changes for modified text.
This enumeration supports a bitwise combination of its member values.
public enum class ChangeTypes
public enum class ChangeTypes
enum ChangeTypes
[System.Flags]
public enum ChangeTypes
[<System.Flags>]
type ChangeTypes =
Public Enum ChangeTypes
- Inheritance
-
ChangeTypes
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No change types are set. |
ChangedSinceOpened | 1 | The change occurred after the document was opened. |
ChangedSinceSaved | 2 | The change occurred after the document was saved. |
SourceControlAdded | 4 | The change represents an addition in a document under source control. |
SourceControlDeleted | 8 | The change represents a deletion in a document under source control. |
SourceControlModified | 16 | The change represents a modification in a document under source control. |
SourceControlChangeSaved | 32 | A change in a document under source control was saved. |