ControlNumberingType Enumeration |
Control number (ID) numbering format type.
Namespace: OpenDiscoverSDK.Interfaces.Platform.SettingsAssembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntaxpublic enum ControlNumberingType
Members| Member name | Value | Description |
|---|
| ParentChildWithPeriodSeparator | 0 |
Top-level parent documents have a unique control number (e.g., 00000121) and child documents have their attachment index appended to their parent's number
with a period character ('.') separator, recursively. For example if a parent document with control number 00000121 has 2 child documents, the child document numbers
will be 00000121.001 and 00000122.002, respectively. If child document "00000122.002" has 1 child document, then its control number will be "00000122.002.001".
|
| ParentChildWithDashSeparator | 1 |
Top-level parent documents have a unique control number (e.g., 00000121) and child documents have their attachment index appended to their parent's number
with a dash character ('-') separator, recursively. For example if a parent document with control number 00000121 has 2 child documents, the child document numbers
will be 00000121-001 and 00000122-002, respectively. If child document "00000122-002" has 1 child document, then its control number will be "00000122-002-001".
|
| ParentChildWithUnderscoreSeparator | 2 |
Top-level parent documents have a unique control number (e.g., 00000121) and child documents have their attachment index appended to their parent's number
with a underscore character ('_') separator, recursively. For example if a parent document with control number 00000121 has 2 child documents, the child document numbers
will be 00000121_001 and 00000122_002, respectively. If child document "00000122_002" has 1 child document, then its control number will be "00000122_002_001".
|
See Also