[][src]Trait atk::EditableTextExt

pub trait EditableTextExt: 'static {
    fn copy_text(&self, start_pos: i32, end_pos: i32);
fn cut_text(&self, start_pos: i32, end_pos: i32);
fn delete_text(&self, start_pos: i32, end_pos: i32);
fn paste_text(&self, position: i32);
fn set_text_contents(&self, string: &str); }

Required methods

fn copy_text(&self, start_pos: i32, end_pos: i32)

fn cut_text(&self, start_pos: i32, end_pos: i32)

fn delete_text(&self, start_pos: i32, end_pos: i32)

fn paste_text(&self, position: i32)

fn set_text_contents(&self, string: &str)

Loading content...

Implementors

impl<O: IsA<EditableText>> EditableTextExt for O[src]

Loading content...