pub struct GuiSession { /* private fields */ }Trait Implementations§
Source§impl From<IDispatch> for GuiSession
impl From<IDispatch> for GuiSession
Source§impl GuiComponentExt for GuiSession
impl GuiComponentExt for GuiSession
Source§impl GuiContainerExt for GuiSession
impl GuiContainerExt for GuiSession
fn children(&self) -> Result<GuiComponentCollection>
fn find_by_id(&self, p0: String) -> Result<GuiComponent>
Source§impl GuiSessionExt for GuiSession
impl GuiSessionExt for GuiSession
fn acc_enhanced_tab_chain(&self) -> Result<bool>
fn set_acc_enhanced_tab_chain(&self, value: bool) -> Result<()>
fn acc_symbol_replacement(&self) -> Result<bool>
fn set_acc_symbol_replacement(&self, value: bool) -> Result<()>
fn active_window(&self) -> Result<GuiComponent>
fn busy(&self) -> Result<bool>
fn set_busy(&self, value: bool) -> Result<()>
fn info(&self) -> Result<GuiSessionInfo>
fn is_active(&self) -> Result<bool>
fn is_list_box_active(&self) -> Result<bool>
fn list_box_curr_entry(&self) -> Result<i32>
fn list_box_curr_entry_height(&self) -> Result<i32>
fn list_box_curr_entry_left(&self) -> Result<i32>
fn list_box_curr_entry_top(&self) -> Result<i32>
fn list_box_curr_entry_width(&self) -> Result<i32>
fn list_box_height(&self) -> Result<i32>
fn list_box_left(&self) -> Result<i32>
fn list_box_top(&self) -> Result<i32>
fn list_box_width(&self) -> Result<i32>
fn passport_pre_system_id(&self) -> Result<String>
fn set_passport_pre_system_id(&self, value: String) -> Result<()>
fn passport_system_id(&self) -> Result<String>
fn set_passport_system_id(&self, value: String) -> Result<()>
fn passport_transaction_id(&self) -> Result<String>
fn set_passport_transaction_id(&self, value: String) -> Result<()>
fn progress_percent(&self) -> Result<i32>
fn progress_text(&self) -> Result<String>
fn record(&self) -> Result<bool>
fn set_record(&self, value: bool) -> Result<()>
fn record_file(&self) -> Result<String>
fn set_record_file(&self, value: String) -> Result<()>
fn save_as_unicode(&self) -> Result<bool>
fn set_save_as_unicode(&self, value: bool) -> Result<()>
fn show_dropdown_keys(&self) -> Result<bool>
fn set_show_dropdown_keys(&self, value: bool) -> Result<()>
fn suppress_backend_popups(&self) -> Result<bool>
fn set_suppress_backend_popups(&self, value: bool) -> Result<()>
fn test_tool_mode(&self) -> Result<i32>
fn set_test_tool_mode(&self, value: i32) -> Result<()>
fn as_std_number_format(&self, p0: String) -> Result<String>
fn clear_error_list(&self) -> Result<()>
fn create_session(&self) -> Result<()>
fn enable_jaws_events(&self) -> Result<()>
fn end_transaction(&self) -> Result<()>
fn find_by_position(&self, p0: i32, p1: i32) -> Result<GuiComponent>
fn get_icon_resource_name(&self, p0: String) -> Result<String>
fn get_object_tree(&self, p0: String) -> Result<String>
fn get_v_key_description(&self, p0: i32) -> Result<String>
fn lock_session_ui(&self) -> Result<()>
fn send_command(&self, p0: String) -> Result<()>
fn send_command_async(&self, p0: String) -> Result<()>
fn start_transaction(&self, p0: String) -> Result<()>
fn unlock_session_ui(&self) -> Result<()>
Source§impl HasIDispatch for GuiSession
impl HasIDispatch for GuiSession
Source§fn get_idispatch(&self) -> &IDispatch
fn get_idispatch(&self) -> &IDispatch
Get the IDispatch object for low-level access to this component.
Source§impl HasSAPType for GuiSession
impl HasSAPType for GuiSession
Source§impl IsA<GuiComponent> for GuiSession
impl IsA<GuiComponent> for GuiSession
Source§fn upcast(&self) -> GuiComponent
fn upcast(&self) -> GuiComponent
Upcast this value to it’s parent type.
Source§impl IsA<GuiContainer> for GuiSession
impl IsA<GuiContainer> for GuiSession
Source§fn upcast(&self) -> GuiContainer
fn upcast(&self) -> GuiContainer
Upcast this value to it’s parent type.
Source§impl VariantTypeExt<'_, GuiSession> for VARIANT
impl VariantTypeExt<'_, GuiSession> for VARIANT
Source§fn variant_from(value: GuiSession) -> VARIANT
fn variant_from(value: GuiSession) -> VARIANT
Convert from a type T into a
VARIANT.Source§fn variant_into(&self) -> Result<GuiSession>
fn variant_into(&self) -> Result<GuiSession>
Convert from a
VARIANT into a type, T.Auto Trait Implementations§
impl !Send for GuiSession
impl !Sync for GuiSession
impl Freeze for GuiSession
impl RefUnwindSafe for GuiSession
impl Unpin for GuiSession
impl UnsafeUnpin for GuiSession
impl UnwindSafe for GuiSession
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more