enum Abbyy::FieldMarkingType
Defined in:
abbyy/field_marking_type.crEnum Members
-
SimpleText =
0 -
This value denotes plain text.
-
UnderlinedText =
1 -
This value specifies that the text is underlined.
-
TextInFrame =
2 -
This value specifies that the text is enclosed in a frame.
-
GreyBoxes =
3 -
This value specifies that the text is located in white fields on a gray background.
-
CharBoxSeries =
4 -
This value specifies that the field where the text is located is a set of separate boxes.
-
SimpleComb =
5 -
This value specifies that the field where the text is located is a comb.
-
CombInFrame =
6 -
This value specifies that the field where the text is located is a comb and that this comb is also the bottom line of a frame.
-
PartitionedFrame =
7 -
This value specifies that the field where the text is located is a frame and this frame is split by vertical lines.
Instance Method Summary
- #char_box_series?
- #comb_in_frame?
- #grey_boxes?
- #partitioned_frame?
- #simple_comb?
- #simple_text?
- #text_in_frame?
-
#to_s
Returns a
Stringrepresentation of this enum member. - #underlined_text?
Instance Method Detail
Returns a String representation of this enum member.
In the case of regular enums, this is just the name of the member.
In the case of flag enums, it's the names joined by vertical bars, or "None",
if the value is zero.
If an enum's value doesn't match a member's value, the raw value is returned as a string.
Color::Red.to_s # => "Red"
IOMode::None.to_s # => "None"
(IOMode::Read | IOMode::Write).to_s # => "Read | Write"
Color.new(10).to_s # => "10"