Returns a String that represents the logon name of the person to whom the specified file is checked out.
Note You must have a source control project in place before using this method.
expression.CheckedoutBy
expression Required. An expression that returns a WebFile object.
Example
This example retrieves the logon alias of the person who checked out the file.
Note You must have a source control project to run this example.
Private Sub GetCheckedOutBy()
Dim myCheckedOutAlias As String
myCheckedOutAlias = _
ActiveWeb.RootFolder.Files(0).CheckedoutBy
End Sub