SourceControlCommandOptions

These constants represent the options you can use with the options parameter of the WorkspaceObject.DoSourceControlCommand , WorkspaceObject.CanDoSourceControlCommand , and WorkspaceObject.UpdateStatus methods. Use the bitwise-OR operator to specify more than one option.

  • SCCmdOption_DoNotRecurse –(Value: 0x1) Does not apply the operation recursively on items in the container.
  • SCCmdOption_NoOptions –(Value: 0x0) No options.
  • SCCmdOption_ShowPromptDialog –(Value: 0x4) Launches a dialog box with a list of files before performing the operation on the files. You cannot combine this option with SCCmdOption_SkipPromptDialog . If you do not specify this option or SCCmdOption_SkipPromptDialog , the engine Configuration option determines whether the dialog box is launched.
    Note This constant applies only to the SCCmd_CheckOut and SSCmd_GetLatest commands for the WorkspaceObject.DoSourceControlCommand method.
  • SCCmdOption_SkipErrorDialog –(Value: 0x8) Does not launch a dialog box for errors.
  • SCCmdOption_SkipPromptDialog –(Value: 0x2) Does not launch a dialog box with a list of files before performing the operation on the files. You cannot combine this option with SCCmdOption_ShowPromptDialog . If you do not specify this option or SCCmdOption_ShowPromptDialog , the engine Configuration option determines whether the dialog box is launched.
    Note This constant applies only to the SCCmd_CheckOut and SSCmd_GetLatest commands for the WorkspaceObject.DoSourceControlCommand method.

See Also

WorkspaceObject.CanDoSourceControlCommand

WorkspaceObject.DoSourceControlCommand

WorkspaceObject.UpdateStatus