Assigns a new value to the OPER, using a variety of input types
[C++]
const COper& operator =(
const COper& op
);
const COper& operator =(
const OPER& op
);
const COper& operator =(
double d
);
const COper& operator =(
WORD wError
);
const COper& operator =(
BOOL boolean
);
const COper& operator =(
const char* psz
);
An initialised COper.
An initialised OPER.
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.
These operators assign a new value to the COper.
If the COper already contains data, then it will be appropriately cleared before the assignment.
Header: xllplus.h