Enum StaSharePointStatus
scSharePointInvalid = -1
scSharePointNotCheckedOut = 0
scSharePointCheckedOutToUser = 1
scSharePointCheckedOutToOther = 2
End Enum
|
- scSharePointInvalid: Document is not in SharePoint.
- scSharePointNotCheckedOut: Document is not checked out from SharePoint.
- scSharePointCheckedOutToUser: Document is checked out from SharePoint to the current user.
- scSharePointCheckedOutToOther: Document is checked out from SharePoint to someone other than the current user.
|