src/spg_icvfxpatterns/PatternGenerators/alignment.py [159:189]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def border_width(cls):
        """ The getter for the class attribute border_width

        :return: The value stored within the border_width CategorizedAttribute
        """
        return cls._border_width.value

    @border_width.setter
    def border_width(cls, value):
        """ Setter for the class attribute border_width

        :param value: the value we want to store within the border_width class attribute, inside the CategorizedAttribute
        """
        cls._border_width.value = value

    @property
    def border_color(cls):
        """ The getter for the class attribute border_color

        :return: The value stored within the border_color CategorizedAttribute
        """
        return cls._border_color.value

    @border_color.setter
    def border_color(cls, value):
        """ Setter for the class attribute border_color

        :param value: the value we want to store within the border_color class attribute, inside the CategorizedAttribute
        """
        cls._border_color.value = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/spg_icvfxpatterns/PatternGenerators/frameCountSync.py [53:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def border_width(cls):
        """ The getter for the class attribute border_width

        :return: The value stored within the border_width CategorizedAttribute
        """
        return cls._border_width.value

    @border_width.setter
    def border_width(cls, value):
        """ Setter for the class attribute border_width

        :param value: the value we want to store within the border_width class attribute, inside the CategorizedAttribute
        """
        cls._border_width.value = value

    @property
    def border_color(cls):
        """ The getter for the class attribute border_color

        :return: The value stored within the border_color CategorizedAttribute
        """
        return cls._border_color.value

    @border_color.setter
    def border_color(cls, value):
        """ Setter for the class attribute border_color

        :param value: the value we want to store within the border_color class attribute, inside the CategorizedAttribute
        """
        cls._border_color.value = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



