Determines the sequence of characters assigned to revisions that use alphabetic numbering.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 16.0.0.0 (16.0.0.0)
Since:
2015
Syntax
| C# |
|---|
[ObsoleteAttribute("This property is obsolete as of Revit 2016. Use GetAlphanumericRevisionSettings or SetAlphanumericRevisionSettings instead.")]
public string RevisionAlphabet { get; set; } |
| Visual Basic |
|---|
<ObsoleteAttribute("This property is obsolete as of Revit 2016. Use GetAlphanumericRevisionSettings or SetAlphanumericRevisionSettings instead.")> _
Public Property RevisionAlphabet As String
Get
Set |
| Visual C++ |
|---|
[ObsoleteAttribute(L"This property is obsolete as of Revit 2016. Use GetAlphanumericRevisionSettings or SetAlphanumericRevisionSettings instead.")]
public:
property String^ RevisionAlphabet {
String^ get ();
void set (String^ value);
} |
Remarks
Exceptions
| Exception | Condition |
|---|
| Autodesk.Revit.Exceptions..::..ArgumentException |
When setting this property: alphabet is an empty string.
-or-
When setting this property: alphabet contains one or more numeric characters.
-or-
When setting this property: alphabet contains one or more whitespace characters.
-or-
When setting this property: alphabet contains one or more duplicated characters.
-or-
When setting this property: Commas are not allowed in the alphanumeric revision sequence.
|
| Autodesk.Revit.Exceptions..::..ArgumentNullException |
When setting this property: A non-optional argument was NULL
|
| Autodesk.Revit.Exceptions..::..InvalidOperationException |
The Alphanumeric sequence for this RevisionSettings is not
compatible with the Alphabetic type. It may have items containing
numbers or special characters, or it may have items more than one
character in length. Call GetAlphanumericRevisionSettings
to get the sequence.
|
See Also