pub type FramePosition = Position;
Expand description
The physical position in a document.
Aliased Type§
struct FramePosition {
pub page: NonZero<usize>,
pub point: Point,
}
Fields§
§page: NonZero<usize>
The page, starting at 1.
point: Point
The exact coordinates on the page (from the top left, as usual).