XLL+ Class Library

CXlOStream::operator <<

Writes a serialized value to the output stream

[C++]
CXlOStream& operator <<(
   double dval
);
CXlOStream& operator <<(
   short int sval
);
CXlOStream& operator <<(
   unsigned short usval
);
CXlOStream& operator <<(
   int ival
);
CXlOStream& operator <<(
   long lval
);
CXlOStream& operator <<(
   bool bval
);
CXlOStream& operator <<(
   const std::string& strval
);
CXlOStream& operator <<(
   const CString& cstrval
);
CXlOStream& operator <<(
   const char* pszval
);
CXlOStream& operator <<(
   const XLOPER* pxloval
);
CXlOStream& operator <<(
   const OPER* popval
);
CXlOStream& operator <<(
   const XLARRAY* pxlaval
);

Parameters

dval

A numeric value which will be written to the output stream.

sval

A numeric value which will be written to the output stream.

usval

A numeric value which will be written to the output stream.

ival

A numeric value which will be written to the output stream.

lval

A numeric value which will be written to the output stream.

bval

A boolean value which will be written to the output stream.

strval

A string value which will be written to the output stream.

cstrval

A string value which will be written to the output stream.

pszval

A string value which will be written to the output stream.

pxloval

A pointer to an XLOPER structure or CXlOper object which will be written to the output stream.

popval

A pointer to an OPER structure or COper object which will be written to the output stream.

pxlaval

A pointer to an XLARRAY structure or CXlArray object which will be written to the output stream.

Requirements

Header: xlserialize.h

See Also

CXlOStream Class | CXlOStream Methods