Click or drag to resize

ISelectionPostItText Property

Postit text Post-It is shown on the selection card as a paperclip that expands to a "Yellow sticky note", when clicked. It contains extra information for the selection card it is attached to.

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

Property Value

Type: String
String – the text information hidden on the objects post-it.
Examples

PostItText

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
    if objSO.CurrentSelection.PostIttext = "" then
        msgbox "The current selection has no Post-It.", vbInformation + vbOKOnly, "SuperCOM"
    else
        MsgBox "Current selection postittext: " & objSO.CurrentSelection.postittext, vbInformation + vbOKOnly, "SuperCOM"
    end if
else
    MsgBox "Unable to connect"
end if
Set objSO = Nothing

See Also