Skip to main content

AdvancedTableExt

Trait AdvancedTableExt 

Source
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§

Source

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

Source

fn add_advanced_table_auto( &mut self, table: &AdvancedTable, ) -> Result<f64, PdfError>

Add an advanced table with automatic positioning (below last content)

Implementors§