Verifies whether a file must be checked out to be edited.
[Visual Basic] Function DoesFileNeedCheckout( _ ByVal fileName As String _ ) As Boolean [C#] bool DoesFileNeedCheckout( string fileName ); [C++] bool DoesFileNeedCheckout( String* fileName ) = 0; [JScript] function DoesFileNeedCheckout( fileName : String ) : Boolean;
true if file is under source control and needs to be checked out to be edited; otherwise false.
It will return true only if the file is under source control and is currently not checked out.
ICheckoutService Interface | ICheckoutService Members | System.ComponentModel.Design Namespace