BCDocumentGetDocumentInfo Method |
Returns various document information in a single call.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax public void GetDocumentInfo(
DocumentInfoFlags mode,
out DocumentInfoFlags flags,
out DateTime modifiedDate,
out string lockID,
out string path
)
Public Sub GetDocumentInfo (
mode As DocumentInfoFlags,
<OutAttribute> ByRef flags As DocumentInfoFlags,
<OutAttribute> ByRef modifiedDate As DateTime,
<OutAttribute> ByRef lockID As String,
<OutAttribute> ByRef path As String
)
public:
void GetDocumentInfo(
DocumentInfoFlags mode,
[OutAttribute] DocumentInfoFlags% flags,
[OutAttribute] DateTime% modifiedDate,
[OutAttribute] String^% lockID,
[OutAttribute] String^% path
)
member GetDocumentInfo :
mode : DocumentInfoFlags *
flags : DocumentInfoFlags byref *
modifiedDate : DateTime byref *
lockID : string byref *
path : string byref -> unit
Parameters
- mode
- Type: BlueCieloECM.InnoCielo.Meridian.ServerDocumentInfoFlags
A bitmask that is a combination of bit flags from DocumentInfoFlags.
- flags
- Type: BlueCieloECM.InnoCielo.Meridian.ServerDocumentInfoFlags
Returns a bitmask that is a combination of bit flags from DocumentInfoFlags.
- modifiedDate
- Type: SystemDateTime
Returns the date when the document was last edited.
- lockID
- Type: SystemString
Returns the LockID value of the document (or an empty string if there is no lock).
- path
- Type: SystemString
Returns the relative path of the document.
See Also