All Implemented Interfaces:
com.groupdocs.viewer.results.TextElement, java.io.Serializable
public interface Line extends TextElement<String>, Serializable
Represents a relatively positioned rectangle that contains a single line.
The Line interface defines the contract for accessing and manipulating a line represented by a rectangle in the GroupDocs.Viewer component. It provides methods to retrieve information such as the line text, position, and size of the rectangle.
Example usage:
try (Viewer viewer = new Viewer("document.pdf")) {
PdfViewInfo viewInfo = (PdfViewInfo) viewer.getViewInfo(ViewInfoOptions.forHtmlView());
List lines = viewInfo.getPages().get(0).getLines();
for (Line line : lines) {
// Use the line object for further operations
}
}
Note: The default implementation of this interface is LineImpl.