OLAPCell
OLAPCell
variables represent single
cells in an OLAP cube. You cannot initialize such variables explicitly, but you
can use them as iterator variables in
foreach
statements.
OLAPConnection con = OLAPCreateConnection(
"server",
"user",
"password"
);
OLAPDataArea targetarea = OLAPCreateDataArea(
con,
"TFINANC",
OlapDataAreaIncludeB,
OlapDataAreaOperatorNone,
0.0,
OlapDataAreaOperatorNone,
0.0
);
foreach (OLAPCell cell in targetarea)
{
// Do something with cell.
}