pub trait GuiOfficeIntegration_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
    // Provided methods
    fn hosted_application(&self) -> Result<i32> { ... }
    fn append_row(&self, p0: String, p1: String) -> Result<()> { ... }
    fn close_document(&self, p0: i32, p1: bool, p2: bool) -> Result<()> { ... }
    fn remove_content(&self, p0: String) -> Result<()> { ... }
    fn save_document(&self, p0: i32, p1: bool) -> Result<()> { ... }
    fn set_document(&self, p0: i32, p1: String) -> Result<()> { ... }
}

Provided Methods§

source

fn hosted_application(&self) -> Result<i32>

source

fn append_row(&self, p0: String, p1: String) -> Result<()>

source

fn close_document(&self, p0: i32, p1: bool, p2: bool) -> Result<()>

source

fn remove_content(&self, p0: String) -> Result<()>

source

fn save_document(&self, p0: i32, p1: bool) -> Result<()>

source

fn set_document(&self, p0: i32, p1: String) -> Result<()>

Implementors§