pub struct ITextEditProvider(/* private fields */);Implementations§
Source§impl ITextEditProvider
impl ITextEditProvider
pub unsafe fn GetSelection(&self) -> Result<*mut SAFEARRAY, Error>
pub unsafe fn GetVisibleRanges(&self) -> Result<*mut SAFEARRAY, Error>
pub unsafe fn RangeFromChild<'a>( &self, childelement: impl IntoParam<'a, IRawElementProviderSimple>, ) -> Result<ITextRangeProvider, Error>
pub unsafe fn RangeFromPoint<'a>( &self, point: impl IntoParam<'a, UiaPoint>, ) -> Result<ITextRangeProvider, Error>
pub unsafe fn get_DocumentRange(&self) -> Result<ITextRangeProvider, Error>
pub unsafe fn get_SupportedTextSelection( &self, ) -> Result<SupportedTextSelection, Error>
pub unsafe fn GetActiveComposition(&self) -> Result<ITextRangeProvider, Error>
pub unsafe fn GetConversionTarget(&self) -> Result<ITextRangeProvider, Error>
Trait Implementations§
Source§impl Clone for ITextEditProvider
impl Clone for ITextEditProvider
Source§fn clone(&self) -> ITextEditProvider
fn clone(&self) -> ITextEditProvider
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ITextEditProvider
impl Debug for ITextEditProvider
Source§impl From<&ITextEditProvider> for ITextProvider
impl From<&ITextEditProvider> for ITextProvider
Source§fn from(value: &ITextEditProvider) -> ITextProvider
fn from(value: &ITextEditProvider) -> ITextProvider
Converts to this type from the input type.
Source§impl From<ITextEditProvider> for ITextProvider
impl From<ITextEditProvider> for ITextProvider
Source§fn from(value: ITextEditProvider) -> ITextProvider
fn from(value: ITextEditProvider) -> ITextProvider
Converts to this type from the input type.
Source§impl Interface for ITextEditProvider
impl Interface for ITextEditProvider
Source§impl PartialEq for ITextEditProvider
impl PartialEq for ITextEditProvider
impl Eq for ITextEditProvider
impl StructuralPartialEq for ITextEditProvider
Auto Trait Implementations§
impl Freeze for ITextEditProvider
impl RefUnwindSafe for ITextEditProvider
impl !Send for ITextEditProvider
impl !Sync for ITextEditProvider
impl Unpin for ITextEditProvider
impl UnwindSafe for ITextEditProvider
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