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)


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

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

Instance Attribute Details

#bottomInteger (readonly)

Returns the value of attribute bottom.

Returns:

  • (Integer)


1202
1203
1204
# File 'sig/types.rbs', line 1202

def bottom
  @bottom
end

#leftInteger (readonly)

Returns the value of attribute left.

Returns:

  • (Integer)


1199
1200
1201
# File 'sig/types.rbs', line 1199

def left
  @left
end

#rightInteger (readonly)

Returns the value of attribute right.

Returns:

  • (Integer)


1201
1202
1203
# File 'sig/types.rbs', line 1201

def right
  @right
end

#topInteger (readonly)

Returns the value of attribute top.

Returns:

  • (Integer)


1200
1201
1202
# File 'sig/types.rbs', line 1200

def top
  @top
end