AlphanumericRevisionSettingsSetSequence Method |
Sets the sequence of strings to be used as numbers for revisions with the Alphanumeric RevisionNumberType.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntaxpublic void SetSequence(
IList<string> sequence
)
Public Sub SetSequence (
sequence As IList(Of String)
)
public:
void SetSequence(
IList<String^>^ sequence
)
member SetSequence :
sequence : IList<string> -> unit
Parameters
- sequence IListString
-
The sequence. The sequence strings cannot contain commas.
Exceptions
RemarksIf there are more alphanumeric revisions than there are
strings in the sequence, subsequent alphanumeric revisions will
be assigned duplicated characters. For example, if the sequence
provided were ["X", "Y"], the first alphanumeric revision would
be shown as "X", the second as "Y", the third as "XX", then "YY",
"XXX", etc.
See Also