Trait atk::prelude::EditableTextExtManual[][src]

pub trait EditableTextExtManual: 'static {
    fn insert_text(&self, string: &str, position: i32) -> i32;
}

Required methods

Insert text at a given position.

string

the text to insert

length

the length of text to insert, in bytes

position

The caller initializes this to the position at which to insert the text. After the call it points at the position after the newly inserted text.

Implementors