pub trait AdvancedTableExt {
// Required methods
fn add_advanced_table(
&mut self,
table: &AdvancedTable,
x: f64,
y: f64,
) -> Result<f64, PdfError>;
fn add_advanced_table_auto(
&mut self,
table: &AdvancedTable,
) -> Result<f64, PdfError>;
}Expand description
Extension trait to add advanced table capabilities to PDF pages
Required Methods§
Sourcefn add_advanced_table(
&mut self,
table: &AdvancedTable,
x: f64,
y: f64,
) -> Result<f64, PdfError>
fn add_advanced_table( &mut self, table: &AdvancedTable, x: f64, y: f64, ) -> Result<f64, PdfError>
Add an advanced table to the page at the specified position
Sourcefn add_advanced_table_auto(
&mut self,
table: &AdvancedTable,
) -> Result<f64, PdfError>
fn add_advanced_table_auto( &mut self, table: &AdvancedTable, ) -> Result<f64, PdfError>
Add an advanced table with automatic positioning (below last content)