Click or drag to resize

IDocumentDescription Property

Description - keywords Displayed in the Document dialog as keywords, just below subject. Used for giving a more complete description of the content of the document. This field is FreeText word indexed, so you find it using the FreeText search

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string Description { get; set; }

Property Value

Type: String
String – the keyword description found in the GUI document dialog
Examples

Description

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    MsgBox "Current document keywords: " & objSO.CurrentDocument.Description, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also