Assigns a new value to the CXlOper, using a variety of input types
[C++]
const CXlOper& operator =(
const CXlOper& xlo
);
const CXlOper& operator =(
const XLOPER& xlop
);
const CXlOper& operator =(
const COper& op
);
const CXlOper& operator =(
double d
);
const CXlOper& operator =(
WORD wError
);
const CXlOper& operator =(
BOOL boolean
);
const CXlOper& operator =(
const char* psz
);
const CXlOper& operator =(
const XLREF& xlr
);
const CXlOper& operator =(
const std::vector<T>& vec
);
const CXlOper& operator =(
const ple::imtx<T>& mat1
);
const CXlOper& operator =(
const xlp::matrix<T>& mat2
);
An initialised CXlOper.
An initialised XLOPER.
An initialised OPER, or a reference to COper.
A double-precision floating-point number.
An error number (see Error Values).
A boolean value: TRUE (1) or FALSE (0).
A pointer to a null-terminated ASCII string, or a reference to a CString.
A populated Excel range reference.
A vector of doubles, booleans or strings.
The following types for T are directly supported:
2-dimensional array of data, contained in an object which supports the imtx interface.
The supported data types for T are as for vec.
2-dimensional array of data.
The supported data types for T are as for vec.
These operators assign a new value to the CXlOper.
If the CXlOper already contains data, then it will be appropriately
cleared before the assignment.
Header: xllplus.h