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

PromptCheckinUnchangedFile Event

Description

Fired when checking in an unchanged file.

Syntax

HRESULT ObjectName_PromptCheckinUnchangedFile()

Remarks

This is the place to call the GetPromptCheckinOrUndoUnchangedFile method and SetPromptCheckinOrUndoUnchangedFile method.

If no method is called when this event is fired, the Check In operation will be cancelled.

See Also

Sample

VB Sample:

Dim WithEvents sdkObject As SAWHSDKLib.SAWHAppObject

Set sdkObject = New SAWHSDKLib.SAWHAppObject

Private Sub sdkObject_PromptCheckinUnchangedFile()

	sdkObject.SetPromptCheckinOrUndoUnchangedFile Enum_CheckinUnchangedFile, True

End Sub