ToolsRevisionAuthor$()

Syntax

ToolsRevisionAuthor$()

Remarks

Returns the name of the person who made the selected revision. If the selection does not include revision marks, ToolsRevisionAuthor$() returns an empty string ("").

Example

This example finds the next revision and checks the revision author. If the revision author is Stella Richards, the revision is accepted.


ToolsRevisions .ViewRevisions = 1
ToolsReviewRevisions .FindNext
If ToolsRevisionAuthor$() = "Stella Richards" Then
    ToolsReviewRevisions .AcceptRevisions
End If

See Also

ToolsReviewRevisions, ToolsRevisionDate$(), ToolsRevisions, ToolsRevisionType()