SetSequence Method


Sets the sequence of strings to be used as numbers for revisions with the Alphanumeric RevisionNumberType.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 16.0.0.0 (16.0.0.0)
Since: 2016

Syntax

C#
public void SetSequence(
	IList<string> sequence
)
Visual Basic
Public Sub SetSequence ( _
	sequence As IList(Of String) _
)
Visual C++
public:
void SetSequence(
	IList<String^>^ sequence
)

Parameters

sequence
Type: System.Collections.Generic IList String
The sequence. The sequence strings cannot contain commas.

Remarks

If 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.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException Input sequence contains invalid entries.
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was NULL

See Also