CBFS Storage 2020 Python Edition

Questions / Feedback?

report_possible_size Property

How the class should report the virtual drive's size and free space to the OS.

Syntax

def get_report_possible_size() -> bool: ...
def set_report_possible_size(value: bool) -> None: ...

report_possible_size = property(get_report_possible_size, set_report_possible_size)

Default Value

TRUE

Remarks

This property controls which pair of values the class should use when reporting the virtual drive's size and free space to the OS.

When this property is enabled (default), the class will use the values of the possible_size and possible_free_space properties. When this property is disabled, the class will use the values of the vault_size and possible_size properties.

To ensure correct operation, it is recommended that applications keep this property enabled, unless a vault's size has been fixed by setting the vault_size_min and vault_size_max properties equal to each other.

Please refer to the documentation of the properties mentioned above, as well as the Vault Size topic, for more information.

Note: This property cannot be changed within events.

Copyright (c) 2021 Callback Technologies, Inc. - All rights reserved.
CBFS Storage 2020 Python Edition - Version 20.0 [Build 8031]