XLL+ Class Library

COper::COper

Constructs a COper object

[C++]
COper();
COper(
   const COper& op
);
COper(
   double d
);
COper(
   WORD wError
);
COper(
   BOOL boolean
);
COper(
   const char* psz
);
COper(
   double* pd,
   USHORT cRows
);
COper(
   double* pd,
   USHORT cRows,
   USHORT cCols,
   BOOL bByRows = FALSE
);
COper(
   double** apd,
   USHORT cRows,
   USHORT cCols,
   BOOL bByRows = FALSE
);

Parameters

op

An initialised OPER, or a reference to COper.

d

A double-precision floating-point number.

wError

An error number (see Error Values).

boolean

A boolean value: TRUE (1) or FALSE (0).

psz

A pointer to a null-terminated ASCII string, or a reference to a CString.

pd

An array of double's, containing either cRows items, or (cRows x cCols) items, depending on the function variant used. For the latter type, the values should be arranged in the order specified by the bByRows parameter.

cRows

The number of rows contained in the supplied array of doubles.

pd

An array of double's, containing either cRows items, or (cRows x cCols) items, depending on the function variant used. For the latter type, the values should be arranged in the order specified by the bByRows parameter.

cRows

The number of rows contained in the supplied array of doubles.

cCols

The number of columns contained in the supplied array of doubles.

bByRows

Storage order of arrays of double's. If TRUE, then values in the same row are stored contiguously, otherwise values in the same column are assumed to be stored contiguously.

apd

An array of pointers to double, containing either cRows arrays each of size cCols, or cCols arrays each of size cRows, depending on the order specified by the bByRows parameter.

cRows

The number of rows contained in the supplied array of doubles.

cCols

The number of columns contained in the supplied array of doubles.

bByRows

Storage order of arrays of double's. If TRUE, then values in the same row are stored contiguously, otherwise values in the same column are assumed to be stored contiguously.

Requirements

Header: xllplus.h

See Also

COper Class | COper Methods