LOTUSSCRIPT/COM/OLE CLASSES
Examples: Title property
1. This script displays the title of the current database.
Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
Messagebox( db.Title )
2. This script changes the title of the SAFFRON.NSF database to "Herb Discussion."
Dim db As New NotesDatabase( "", "saffron.nsf" )
db.Title = "Herb Discussion"
3. This script has no effect, since it is not possible to change the title of the current database.
Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
db.Title = "Marketing Discussion"
Véase también
Title property
Glosario
¿Desea opinar sobre la
Ayuda
o sobre la
utilidad del producto
?
Ayuda sobre la Ayuda
Todo el contenido de la Ayuda
Glosario