Click or drag to resize

IUDefFieldShortLabel Property

Short version of label used in archive multi-column list-views. Not yet implemented in GUI, but used by NetServer.

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

Property Value

Type: String
Examples

Short label

VB
dim objdb
dim udef
dim udefs
set objdb = CreateObject("superofficedb.database")
If Not (objDB is Nothing) Then
    objdb.login  "<username>", "<password>"
    set cont = objdb.getcontact(1)
    set udefs = cont.udef
    for each udef in udefs
        item = item  & "lable = " & udef.label  & vbcrlf
        item = item  & "HideLabel = " & udef.HideLabel & vbcrlf
        item = item  & "ShortLabel = " & udef.ShortLabel & vbcrlf
        item = item  & "ProgId = " & udef.ProgId & vbcrlf
        item = item  & "________________________________" & vbcrlf
    next
    msgbox item
else
    msgbox  "unable to connect to database"
end if

See Also