Returns the logon name of the person to whom the specified WebFile object is checked out. Read-only String.
Note You must have a source control project in place before using this method.
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