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