Share

AcDbGraphStack::AcDbGraphStack

C++

AcDbGraphStack(
    int initPhysicalLength = 0, 
    int initGrowLength = 8
);

Description

The stack is dynamically allocated. initPhysicalLength sets the initial memory allocation for the stack, and initGrowLength sets how many nodes are added to the stack each time additional memory needs to be allocated.

Parameters

Parameters Description
initPhysicalLength Input indicating the initial memory allocation for the stack
initGrowLength Input indicating how many nodes to add each time additional memory is requested

Links

AcDbGraphStack

Was this information helpful?