Skip to main content

xfa_layout_engine/
lib.rs

1//! XFA Layout Engine — Box Model and pagination.
2//!
3//! Implements the XFA layout algorithms from XFA 3.3 §4 and §8,
4//! including positioned/flowed layout, content splitting, and pagination.
5
6pub mod error;
7pub mod form;
8pub mod layout;
9pub mod scripting;
10pub mod text;
11pub mod types;