diff options
| author | Randy Morgan <[email protected]> | 2012-05-17 09:43:21 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-05-17 09:43:21 +0900 |
| commit | c32cac5afebcd4cc71923d71c3d331b78554d8c6 (patch) | |
| tree | 54d95628abcf542948ed7b8bc06d362a2d6bcf07 /lib/axlsx/workbook/worksheet/page_setup.rb | |
| parent | d90004e372f74ca3e3b59f9926445933e50735cf (diff) | |
| download | caxlsx-c32cac5afebcd4cc71923d71c3d331b78554d8c6.tar.gz caxlsx-c32cac5afebcd4cc71923d71c3d331b78554d8c6.zip | |
docs
Diffstat (limited to 'lib/axlsx/workbook/worksheet/page_setup.rb')
| -rw-r--r-- | lib/axlsx/workbook/worksheet/page_setup.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/page_setup.rb b/lib/axlsx/workbook/worksheet/page_setup.rb index fa929d31..fdfab981 100644 --- a/lib/axlsx/workbook/worksheet/page_setup.rb +++ b/lib/axlsx/workbook/worksheet/page_setup.rb @@ -22,10 +22,14 @@ module Axlsx # * verticalDpi # Number of vertical pages to fit on. - # @return [Integer] + # @note PageSetup#fit_to is the recomended way to manage page fitting as only specifying one of fit_to_width/fit_to_height will result in the counterpart + # being set to 1. + # @return [Integer] attr_reader :fit_to_height # Number of horizontal pages to fit on. + # @note PageSetup#fit_to is the recomended way to manage page fitting as only specifying one of width/height will result in the counterpart + # being set to 1. # @return [Integer] attr_reader :fit_to_width |
