# File Text/Format.rb, line 394
        def format_style=(fs)
            if fs < LEFT_ALIGN || fs > JUSTIFY
                raise ArgumentError,
                      "Invalid value provided for format_style."
            end
            @format_style = fs
        end