LOTUSSCRIPT/COM/OLE CLASSES
Examples: HiddenChars property
1. This action script turns hidden characters on.
Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = workspace.CurrentDocument
uidoc.HiddenChars = True
End Sub
2. This action script toggles hidden characters: if hidden characters are off, the script turns them on; if hidden characters are on, the script turns them off.
Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = workspace.CurrentDocument
'toggle property
uidoc.HiddenChars = Not uidoc.HiddenChars
End Sub
See Also
HiddenChars property
Glossary
Feedback on
Help
or
Product Usability
?
Help on Help
All Help Contents
Glossary