Library.SharePointCheckIn
This function checks in the document to SharePoint.
| Syntax | Parameters | Return Value |
|---|---|---|
Function Library.SharePointCheckIn( _
Document As Object, _
Comment As String) As Boolean
|
Type: Object
Type: String |
Boolean |
SVB Example
Checking in a document to SharePoint:
Option Base 1
Option Explicit
Sub Main
Dim ss As Spreadsheet
Set ss = Application.Spreadsheets.Open(Application.Path & "\Examples\Datasets\Adstudy.sta",False)
Application.SharePointCheckIn(ss, "Test")
End Sub