ios_base::unsetf

Causes the specified flags to be off.

void unsetf( 
   fmtflags _Mask 
);

Parameters

  • _Mask
    The flags that you want off.

Remarks

The member function effectively calls flags(~_Mask & flags) (clear selected bits).

Example

See ios_base::setf for a sample of using unsetf.

Requirements

Header: <ios>

Namespace: std

See Also

Reference

ios_base Class

iostream Programming

iostreams Conventions