class GroupDocs::Document::Change

Attributes

action[RW]

@attr [String] action

actionStr[RW]

@attr [String] actionStr

box[RW]

@attr [GroupDocs::Document::Rectangle] box

id[RW]

@attr [Integer] id

page[RW]

@attr [GroupDocs::Document::Page] page

text[RW]

@attr [String] text

type[RW]

@attr [Symbol] type

typeStr[RW]

@attr [String] typeStr

Public Instance Methods

box=(options) click to toggle source

Coverts passed hash to GroupDocs::Document::Rectangle object.

@param [Hash] options @return [GroupDocs::Document::Rectangle]

# File lib/groupdocs/document/change.rb, line 41
def box=(options)
  @box = GroupDocs::Document::Rectangle.new(options)
end
page=(options) click to toggle source

Coverts passed hash to GroupDocs::Document::Page object.

@param [Hash] options @return [GroupDocs::Document::Page]

# File lib/groupdocs/document/change.rb, line 51
def page=(options)
  @page = GroupDocs::Document::Page.new(options)
end