 | CAEXBasicObjectNew_Revision Method |
Creates a new Revision object and inserts it to the collection of Revision objects
Revision
either at the beginning or at the end of the sequence, according to the specified optional value. The Revision
object is initialized with the provided values.
Namespace: Aml.Engine.CAEXAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic RevisionType New_Revision(
DateTime date,
string author,
bool asFirst = true
)
Public Function New_Revision (
date As DateTime,
author As String,
Optional asFirst As Boolean = true
) As RevisionType
public:
virtual RevisionType^ New_Revision(
DateTime date,
String^ author,
bool asFirst = true
) sealed
Parameters
- date DateTime
- The date.
- author String
- The author.
- asFirst Boolean (Optional)
- if set to true the created Revision is prepended, otherwise appended.
Return Value
RevisionTypeA Revision object.
Implements
ICAEXBasicObjectNew_Revision(DateTime, String, Boolean)
See Also