Visit Gigasoft's Web Site
 ProEssentials v9 Help

PEvgetcellEx

BOOL PEvgetcellEx (hObject, nProperty, nSubset, nPoint, lpvDestination)

 

HWND 

hObject

The handle returned from PEcreate.

UINT 

nProperty

Identifies the property.

UINT 

nSubset

Zero based subset index to data.

UINT 

nPoint

Zero based point index to data.

VOID* 

lpvDestination

Pointer to buffer where property will be stored.

 

This function gets individual elements of two dimensional property arrays by copying the array element selected by hObject, nProperty, nSubset, and nPoint into the memory location pointed to by lpvDestination.

 

Returns

NonZero if the function was successful, otherwise Zero.

 

Comments

Two dimensional property arrays include XData, YData, ZData, XDataII, YDataII, DataPointLabels, and PointColors.

 

PEvgetcell can be used to get single dimensioned array elements such as SubsetLabels

 

PEvget can be used to get an entire array.

 

PEvgetEx can be used to get a partial section of an array.

 

Make sure that the buffer pointer to by lpvDestination is large enough to hold the property received. DataPointLabels elements will never exceed 48 characters in length.

 

See Also: PEvsetcell, PEvsetcellEx, PEvset, and PEvsetEx.