0

我目前正在研究处理 excel 表格的 ruby​​ on rails 项目。

我正在使用 RubyXL。

https://github.com/weshatheleopard/rubyXL

我不知道如何缩小文本以适应单元格。

我相信这个shrinkToFit在此处输入图像描述

将使之成为可能。

但我不知道怎么称呼它。

有人可以帮我解决这个问题吗?

非常感谢您的阅读 :)

4

1 回答 1

0
module RubyXL
    module CellConvenienceMethods
        def change_shrink_to_fix(shrink_to_fit = false)
            validate_worksheet
            self.style_index = workbook.modify_alignment(self.style_index) { |a| a.shrink_to_fit = shrink_to_fit }
        end
    end
end
于 2021-12-21T18:03:38.730 回答