__SccToolsOptionsEnum Enumeration
Options that can be viewed or updated for source control tools. Used exclusively by the methods on the IVsSccToolsOptions interface.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Déclaration
Public Enumeration __SccToolsOptionsEnum
'Utilisation
Dim instance As __SccToolsOptionsEnum
public enum __SccToolsOptionsEnum
public enum class __SccToolsOptionsEnum
public enum __SccToolsOptionsEnum
Members
Member name | Description | |
---|---|---|
ksctoAllowReadOnlyFilesNotUnderSccToBeEdited | Nonzero to allow files marked as read-only (but which are not under source control) to be edited. | |
ksctoLast | This value is set to the last option in the enumeration. Do not use as an option. | |
ksctoBad | This value indicates an unrecognized option. |
Remarks
COM Signature
From IVsSccToolsOptions.idl:
enum __SccToolsOptionsEnum
{
ksctoAllowReadOnlyFilesNotUnderSccToBeEdited = 1,
ksctoLast = ksctoAllowReadOnlyFilesNotUnderSccToBeEdited,
ksctoBad = ksctoLast+1
} SccToolsOptionsEnum;