Click or drag to resize

IAppointmentAutoSaveOnChangeIdentity Property

Should the model save on IdentityChanged?

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

Property Value

Type: Boolean
Examples
VB
Dim soDB, myAppnt
Set soDB = CreateObject("SuperOffice.Application")

Set myAppnt = soDB.CurrentAppointment
myAppnt.AutoSaveOnChangeIdentity = True
myAppnt.AutoSaveOnFlush = True
myAppnt.Description = myAppnt.Description & " autosave performed"
MsgBox "If you now move another appointment or click shift+F5 the new description will be saved."
See Also