pub fn mvwchgat<A, P, T>(
    handle: WINDOW,
    origin: Origin,
    number: i32,
    attrs: A,
    color_pair: P
) -> Result<(), NCurseswError> where
    A: AttributesType<T>,
    P: ColorPairType<T>,
    T: ColorAttributeTypes
Expand description

Set the attributes of number characters at the position origin. This routine moves cursor to position origin. The changed line will be touched using the touchline() method so that the contents will be redisplayed by the next window refresh().