AutoGenerateNameOptions Enumeration |
Specifies options for automatic generation of entry names.
Namespace:
Dundas.BI.FileSystem
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [FlagsAttribute]
public enum AutoGenerateNameOptions
<FlagsAttribute>
Public Enumeration AutoGenerateNameOptions
[FlagsAttribute]
public enum class AutoGenerateNameOptions
[<FlagsAttribute>]
type AutoGenerateNameOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
Specifies no options for automatic name generation.
|
| SkipNumericSuffixIfPossible | 1 |
Specifies that if a prefix was provided, a numeric suffix should only be appended
if necessary to avoid a name collision.
|
| PlaceNumericSuffixBeforeFileExtension | 2 |
Specifies that the prefix may contain a file extension, and the numeric suffix should be
placed before the extension instead of at the end of the prefix. For example, if the specified
name (used as a prefix) is MyData.csv, the system will generate MyData1.csv
instead of MyData.csv1.
|
See Also