ProcUnit::GetFigureData

Gets the figure data

FIG_HEADER *GetFigureData(
   int  figureNo
);

Parameters
figureNo
Figure number to be gotten

Return Value
Returns the pointer to the memory space for storing figure data of the specified figure number.
If failed to get, returns NULL.

Description
Gets the pointer to the memory space for storing figure data of the specified number.

Example
  int Sample::FigureUpdate(ProcUnit *ptrProcUnit, int figureNo)
    {
        FIG_HEADER *figData;

        // Get the figure data

        figData = ptrProcUnit->GetFigureData(figureNo);
    }