IContactAutoSaveOnChangeIdentity Property |
Should the model save on IdentityChanged?
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxbool AutoSaveOnChangeIdentity { get; set; }
Property AutoSaveOnChangeIdentity As Boolean
Get
Set
Dim instance As IContact
Dim value As Boolean
value = instance.AutoSaveOnChangeIdentity
instance.AutoSaveOnChangeIdentity = value
property bool AutoSaveOnChangeIdentity {
bool get ();
void set (bool value);
}
Property Value
Type:
Boolean
ExamplesSet soDB = CreateObject("SuperOffice.Application")
Set myContact = soDB.CurrentContact
myContact.AutoSaveOnChangeIdentity = True
myContact.AutoSaveOnFlush = True
myContact.Name = myContact.lastname & " autosave performed"
MsgBox "If you now move another contact or click shift+F5 the new description will be saved."
See Also