online source control
back to content
sign up free version control plan

ISAWHAppObject::CheckoutFiles

Description

Checks out multiple files.

Syntax

long CheckoutFiles(
        ISAWHCheckoutFileSet* CheckoutFileSet,
        VARIANT_BOOL ExclusivelyCheckout,
        BSTR Comment,
        VARIANT_BOOL DoNotGetLocalCopy,
        Enum_ModifiedFileHandling ModifiedFileHandling,
        Enum_EOL EOL,
        Enum_CompareFileBy CompareFileBy,
        Enum_SetLocalFileTime SetLocalFileTime,
        ISAWHDiffMergeParam* MergeParam,
        VARIANT_BOOL* Cancelled,

        BSTR* ResultDescription,
        ISAWHOperationResultSet* OperationResultSet
);

Parameters

CheckoutFileSet
[in] Specifies the name set of files to be checked out.

ExclusivelyCheckout
[in] Specifies whether to request exclusive checkout of the files.

Comment
[in] Specifies the comments for the Check Out operation.

DoNotGetLocalCopy
[in] Specifies whether to copy the files to the local working folder when it is checked out.

ModifiedFileHandling
[in] Specifies how to handle the local file if a writable copy of the file exists in the local folder.

EOL
[in] Specifies which end-of-line terminator is to be used for files.

CompareFileBy
[in] Specifies how to determine if the local copy is up-to-date, by checksum or by date/time.

SetLocalFileTime
[in] Specifies the type of time to be assigned to the local file.

MergeParam
[in] Specifies the parameters used for merge.

Cancelled
[out] If the method fails, returns whether the operation is cancelled.

ResultDescription
[out] Returns the description of the result. If the operation succeeds, returns 'Completed'. If the operation fails, returns the error information.

OperationResultSet
[out] Returns the result information set of the operation.

Return Value

If the method succeeds, returns 0. If the method fails, returns other error codes.

See Also

Sample

VB Sample:

Dim WithEvents sdkObject As SAWHSDKLib.SAWHAppObject

Set sdkObject = New SAWHSDKLib.SAWHAppObject

Private Sub CheckoutFiles_Click()

	Dim Cancelled As Boolean
	Dim ResultDescription As String

	Dim CheckoutFileSet As New SAWHCheckoutFileSet
	Dim CheckoutFile As New SAWHCheckoutFile
	Dim Comment As String
	Dim OperationResultSet As New SAWHOperationResultSet
	Dim MergeParam As New SAWHDiffMergeParam

	CheckoutFile.FileToCheckout = "$/FileName.txt"
	CheckoutFile.LocalFileName = "D:\LocalFileName.txt"
	Comment = "Check out files"
	CheckoutFileSet.Add CheckoutFile

	Dim ResultValue As Long
	ResultValue = sdkObject.CheckoutFiles(CheckoutFileSet, False, Comment, False, Enum_AskModifiedFile, Enum_EOLNative, Enum_CompareFileByChecksum, Enum_SetLocalFileTimeCurrent, MergeParam, Cancelled, ResultDescription, OperationResultSet)

	If ResultValue <> 0 Then
		MsgBox "Failed to check out files."
	End If

End Sub