RAAdditionalFeatures#
- class ansys.rocky.app.ra_additional_features.RAAdditionalFeatures#
Overview#
Get whether ‘beta features’ are enabled in the application preferences. |
|
Set whether ‘beta features’ are enabled in the application preferences. |
|
Get whether ‘advanced features’ are enabled in the application preferences. |
|
Set whether ‘advanced features’ are enabled in the application preferences. |
|
Get a list with all enabled features in application preferences. |
|
Use a list of custom features to enable them in the application preferences. |
Import detail#
from ansys.rocky.app.ra_additional_features import RAAdditionalFeatures
Method detail#
- RAAdditionalFeatures.GetBetaFeaturesEnabled() bool#
Get whether ‘beta features’ are enabled in the application preferences.
- RAAdditionalFeatures.SetBetaFeaturesEnabled(enable: bool) None#
Set whether ‘beta features’ are enabled in the application preferences.
- RAAdditionalFeatures.GetAdvancedFeaturesEnabled() bool#
Get whether ‘advanced features’ are enabled in the application preferences.
- RAAdditionalFeatures.SetAdvancedFeaturesEnabled(enable: bool) None#
Set whether ‘advanced features’ are enabled in the application preferences.
- RAAdditionalFeatures.GetCustomFeatures() list[str]#
Get a list with all enabled features in application preferences.
- RAAdditionalFeatures.SetCustomFeatures(features: collections.abc.Iterable[str]) None#
Use a list of custom features to enable them in the application preferences.
- Parameters:
features – A list of names that represents the custom features.