BeginEnumerationOfStoredData

Returns a count of the subcube items for a Value dimension member, while also locking the subcube’s cells to prevent users from changing data. BeginEnumerationOfStoredData takes the member ID of the Value dimension member. (For details on items, see About Subcube Items.)

Tip:

Remove the lock by calling EndEnumerationOfStoredData.

Syntax

<HsvNodeCube>.BeginEnumerationOfStoredData lValue, plHandle, plTotalNumStoredItems

Argument

Description

lValue

Long (ByVal). The member ID of the subcube items’ Value dimension member.

plHandle

Long (x86 platform) or Double (x64 platform). Returns a handle. You must pass this handle to other HsvNodeCube methods that have a “handle” argument.

plTotalNumStoredItems

Long. Returns a count of the subcube items for the lValue argument’s Value dimension member. Use this count to determine the valid range of index numbers when using GetOneCellFromStoredItem or GetPOVFromStoredItem.

Example

BeginEnumerationOfStoredData is used in the Example for GetOneCellFromStoredItem.