Click or drag to resize

ExtensionCheckIn Method

Check the specified file into the vault using the default behavior.

Namespace:  CADSharpTools.PDM
Assembly:  CADSharpTools.PDM (in CADSharpTools.PDM.dll) Version: 1.4.16.0 (1.4.16)
Syntax
public static MethodReturn<bool> CheckIn(
	this IEdmFile5 file,
	int Phwnd = 0,
	EdmUnlockFlag lockOptions = EdmUnlockFlag.EdmUnlock_Simple,
	string comment = ""
)

Parameters

file
Type: IEdmFile5
File object.
Phwnd (Optional)
Type: SystemInt32
Parent window handle.
lockOptions (Optional)
Type: EdmUnlockFlag
Sets the options of the check in operations.
comment (Optional)
Type: SystemString
comment.

Return Value

Type: MethodReturnBoolean
MethodReturn of boolean. True if the operation is successful, false if not.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmFile5. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
NullReferenceExceptionThrown when file parameter is null.
See Also