Method: Prawn::Document::ColumnBox#right_side

Defined in:
lib/prawn/document/column_box.rb

#right_sideObject

x co-orordinate of the right edge of the current column



97
98
99
100
# File 'lib/prawn/document/column_box.rb', line 97

def right_side
  columns_from_right = @columns - (1 + @current_column)
  absolute_right - (width_of_column * columns_from_right)
end