LOTUSSCRIPT/COM/OLE CLASSES
Examples: SignOnSend property
1. This script sets the SaveMessageOnSend property for the NotesDatabase object doc to True.
Dim doc As NotesDocument
'...set value of doc...
doc.SignOnSend = True
2. This script creates, mails, and signs a new memo.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set doc = New NotesDocument( db )
doc.SignOnSend = True
doc.Form = "Memo"
doc.Subject = "Here's a signed mail memo."
Call doc.Send( False, "Carl Pycha" )
Véase también
SignOnSend property
Glosario
¿Desea opinar sobre la Ayuda?
Ayuda sobre la Ayuda
Abrir la Ayuda en pantalla completa
Glosario
¿Desea opinar sobre la Ayuda?
Ayuda sobre la Ayuda
Abrir la Ayuda en pantalla completa