Skip to main content
ParameterDescription
Void Mode( Direction )White Gap orientation. Example: The code below tells the program to look for a vertical gap. Mode: Vertical;
Void MaxGapLevel( Distance )Sets the maximum level of the histogram. This property allows excluding false histogram maximums which may be caused by large numbers of vertically arranged accidental objects in the search area when looking for a vertical gap or horizontally arranged objects when looking for a horizontal gap. Measured in the user-defined units of measurement. The default value is 150dot. Example: The code below tells the program that the maximum gap level may not exceed 150 dots. MaxGapLevel(150dt);
Void MinGapLevel( Distance )Sets the minimum level of the histogram. This property allows other objects in the search area. If the height of the histogram of the objects is greater than the number specified in this field, the program will consider the search area to contain no gaps. Measured in the user-defined units of measurement. The default value is 37dot.
Void MinGapWidth( Distance )Sets the minimum width/height of a White Gap in the direction perpendicular to Orientation. Gaps of smaller width/height will be ignored. Measured in the user-defined units of measurement. The default value is 20dot. Example: The code below tells the program that the minimum height of the horizontal gap is 50 dot. Mode: Horizontal; MinGapWidth(50dt);
Void Type( ImageObjectType )Searches for a white gap among the objects of a particular type. (By default, the program will look for white gaps among any of the objects detected on the image.) Example: The code below specifies that the program must look for white gaps only among text objects. Type: AnyText+InvertedTextObject;
Void UseRawText( Logic )Enables the use in text searches of those unrecognized text-like objects that were assigned the type Raw Objects during pre-recognition. To enable this feature, call the method with parameter True. By default, only recognized text is used in text searches (i.e. the parameter is set to False).