BCDocumentGetDocumentInfo Method |
Returns various document information in a single call.
Namespace:
BlueCieloECM.InnoCielo.Meridian.Server
Assembly:
BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.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
)
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