Class: Xberg::OcrTableBoundingBox

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOcrTableBoundingBox

Returns a new instance of OcrTableBoundingBox.

Parameters:

  • left: (Integer)
  • top: (Integer)
  • right: (Integer)
  • bottom: (Integer)


1817
# File 'sig/types.rbs', line 1817

def initialize: (left: Integer, top: Integer, right: Integer, bottom: Integer) -> void

Instance Attribute Details

#bottomInteger (readonly)

Returns the value of attribute bottom.

Returns:

  • (Integer)


1815
1816
1817
# File 'sig/types.rbs', line 1815

def bottom
  @bottom
end

#leftInteger (readonly)

Returns the value of attribute left.

Returns:

  • (Integer)


1812
1813
1814
# File 'sig/types.rbs', line 1812

def left
  @left
end

#rightInteger (readonly)

Returns the value of attribute right.

Returns:

  • (Integer)


1814
1815
1816
# File 'sig/types.rbs', line 1814

def right
  @right
end

#topInteger (readonly)

Returns the value of attribute top.

Returns:

  • (Integer)


1813
1814
1815
# File 'sig/types.rbs', line 1813

def top
  @top
end