PLANTA customizer APIs Current: interface - Conditionals interface - Conditionals Die nachfolgenden Inhalte sind nur in englischer Sprache verfügbar. This topic discusses the conditionals feature provided by the PLANTA link API.ClassesBaseConditionalMethodsFunctionParametersReturn ValueDescriptionBaseConditional.__init__(self, parameter='')parameter: Value to compareconditional instanceInitialize a new conditional objectPropertiesPropertyGetterSetterDescriptionBaseConditional.is_satisfiedReturns whether the value it was initialized with matches the current value.BaseConditional.valueThis property is abstract and must be implemented in a subclass. It must return the current value for the condition you want to check.UndefinedConditionalThe UndefinedConditional class is a dummy class that will always return False from UndefinedConditional.is_satisfiedFunctionsFunctionParametersReturn ValueDescriptionget_conditional_from_class_name(class_name)class_name: Name of the conditional classconditional classGet the class object of a conditional based on its name. If the name cannot be resolved to a class, UndefinedConditional is returned instead. ×