DedNetConnectorCommands.CheckOutDocument Method

DedNetConnector

DedNetConnectorCommandsCheckOutDocument Method

Esegue un CheckOut sul documento specificato in ingresso.

Namespace:  DedNetConnector
Assembly:  DedNetConnector (in DedNetConnector.dll) Version: 23.0.0.0 (23.0.0.0)
Syntax
public string CheckOutDocument(
	string file,
	bool structure = false,
	bool showException = false
)
Public Function CheckOutDocument ( 
	file As String,
	Optional structure As Boolean = false,
	Optional showException As Boolean = false
) As String
public:
String^ CheckOutDocument(
	String^ file, 
	bool structure = false, 
	bool showException = false
)
member CheckOutDocument : 
        file : string * 
        ?structure : bool * 
        ?showException : bool 
(* Defaults:
        let _structure = defaultArg structure false
        let _showException = defaultArg showException false
*)
-> string 

Parameters

file
Type: SystemString
Percorso del documento su cui eseguire l'operazione.
structure (Optional)
Type: SystemBoolean
Specifica se eseguire un CheckOut su tutta la struttura del documento; Default: False.
showException (Optional)
Type: SystemBoolean
Indica se visualizzare eventuali eccezioni all'interno di un apposito dialogo; Default: False.

Return Value

Type: String
Tipo: 'System.String'; Ritorna il percorso del doumento in locale se l'operazione è andata a buon fine, 'null' altrimenti.
See Also