pub trait GuiCalendar_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 27 methods
// Provided methods
fn end_selection(&self) -> Result<String> { ... }
fn first_visible_date(&self) -> Result<String> { ... }
fn set_first_visible_date(&self, value: String) -> Result<()> { ... }
fn focus_date(&self) -> Result<String> { ... }
fn set_focus_date(&self, value: String) -> Result<()> { ... }
fn focused_element(&self) -> Result<i32> { ... }
fn horizontal(&self) -> Result<bool> { ... }
fn last_visible_date(&self) -> Result<String> { ... }
fn set_last_visible_date(&self, value: String) -> Result<()> { ... }
fn selection_interval(&self) -> Result<String> { ... }
fn set_selection_interval(&self, value: String) -> Result<()> { ... }
fn start_selection(&self) -> Result<String> { ... }
fn today(&self) -> Result<String> { ... }
fn context_menu(
&self,
p0: i32,
p1: i32,
p2: i32,
p3: String,
p4: String
) -> Result<()> { ... }
fn create_date(&self, p0: i32, p1: i32, p2: i32) -> Result<()> { ... }
fn get_color(&self, p0: String) -> Result<i32> { ... }
fn get_color_info(&self, p0: i32) -> Result<String> { ... }
fn get_date_tooltip(&self, p0: String) -> Result<String> { ... }
fn get_day(&self, p0: String) -> Result<i32> { ... }
fn get_month(&self, p0: String) -> Result<i32> { ... }
fn get_weekday(&self, p0: String) -> Result<String> { ... }
fn get_week_number(&self, p0: String) -> Result<i32> { ... }
fn get_year(&self, p0: String) -> Result<i32> { ... }
fn is_weekend(&self, p0: String) -> Result<bool> { ... }
fn select_month(&self, p0: i32, p1: i32) -> Result<()> { ... }
fn select_range(&self, p0: String, p1: String) -> Result<()> { ... }
fn select_week(&self, p0: i32, p1: i32) -> Result<()> { ... }
}