pub trait IUIAutomationRangeValuePattern_Impl: Sized {
Show 13 methods
// Required methods
fn SetValue(&self, val: f64) -> Result<()>;
fn CurrentValue(&self) -> Result<f64>;
fn CurrentIsReadOnly(&self) -> Result<BOOL>;
fn CurrentMaximum(&self) -> Result<f64>;
fn CurrentMinimum(&self) -> Result<f64>;
fn CurrentLargeChange(&self) -> Result<f64>;
fn CurrentSmallChange(&self) -> Result<f64>;
fn CachedValue(&self) -> Result<f64>;
fn CachedIsReadOnly(&self) -> Result<BOOL>;
fn CachedMaximum(&self) -> Result<f64>;
fn CachedMinimum(&self) -> Result<f64>;
fn CachedLargeChange(&self) -> Result<f64>;
fn CachedSmallChange(&self) -> Result<f64>;
}
Required Methods§
fn SetValue(&self, val: f64) -> Result<()>
fn CurrentValue(&self) -> Result<f64>
fn CurrentIsReadOnly(&self) -> Result<BOOL>
fn CurrentMaximum(&self) -> Result<f64>
fn CurrentMinimum(&self) -> Result<f64>
fn CurrentLargeChange(&self) -> Result<f64>
fn CurrentSmallChange(&self) -> Result<f64>
fn CachedValue(&self) -> Result<f64>
fn CachedIsReadOnly(&self) -> Result<BOOL>
fn CachedMaximum(&self) -> Result<f64>
fn CachedMinimum(&self) -> Result<f64>
fn CachedLargeChange(&self) -> Result<f64>
fn CachedSmallChange(&self) -> Result<f64>
Object Safety§
This trait is not object safe.