Share

AcDbTable::suppressRegenerateTable

C++

void suppressRegenerateTable(
    bool bSuppress
);

Description

This method allows the user to temporarily disable the regeneration of the table object during changes in one or more of its properties.

Warning

This method is provided for VBA applications to temporarily disable the regenerating of the table object. It is not intended for use in ObjectARX applications. Calling this function with bSuppress set to true disables regenerating the table object. The table object is recomputed when this function is called with bSuppress set to false. Before saving the table object to the drawing file, the user should either call this function with false value or call recomputeTableBlock(true). Otherwise, the table object will never be displayed.

Parameters

Parameters Description
bSuppress Input Boolean value to suppress or enable the regeneration of a table object

Links

AcDbTable

Was this information helpful?