Skip to main content
A newer version of this page is available. .

ICustomObjectSerialize.WritePropertyValues(SettingsStorage) Method

Writes values to the settings storage object.

Namespace: DevExpress.ExpressApp.Utils

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

void WritePropertyValues(
    SettingsStorage storage
)

Parameters

Name Type Description
storage DevExpress.ExpressApp.Utils.SettingsStorage

A SettingsStorage object representing the storage for the values.

Remarks

When implementing the ICustomObjectSerialize interface, this method should handle the process of writing values to the specified settings storage object. You can use the SettingsStorage.SaveOption method to save a string value. To save a value of another type, covert it to the string representation first.

See Also