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
Syntaxstring PostItText { get; set; }
Property PostItText As String
Get
Set
Dim instance As ISelection
Dim value As String
value = instance.PostItText
instance.PostItText = value
property String^ PostItText {
String^ get ();
void set (String^ value);
}
Property Value
Type:
StringString – the text information hidden on the objects post-it.
ExamplesPostItText
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
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