Function ncursesw::mvaddnwstr[][src]

pub fn mvaddnwstr(
    origin: Origin,
    wstr: &WideString,
    number: i32
) -> Result<(), NCurseswError>
Expand description

Add/Output a wide character unicode UTF-8 string of a given length to the standard screen at a given origin.

Example

extern crate ncursesw;

use ncursesw::*;

let origin = Origin { y: 5, x: 10 };

let wide_str = WideString::from_str("Testing..Testing..1..2..3..");

// this will output "Testing..Testing.." at line 5, column 10
mvaddnwstr(origin, &wide_str, 18)?;