Function ncursesw::mvaddwstr[][src]

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

Add/Output a wide character unicode UTF-8 string 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..1..2..3.." at line 5, column 10
mvaddwstr(origin, &wide_str)?;