Replies: 1 comment 1 reply
-
That's the right result. Dynamic blocks, such as parametric blocks, dimension blocks and such always get generated names, starting with a star. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Excuse me, My program fragments are as follows:
for (i = 0; i < dwg.num_objects; i++)
{
switch (dwg.object[i].fixedtype)
{
case DWG_TYPE_INSERT:
{
theInsert=dwg_object_to_INSERT (&dwg.object[i]);
int error;
char *insertname=dwg_ref_get_table_name (theInsert->block_header, &error);
General blocks are all given the right names,But if it's a dynamic block, then the name is usually *** U**,
so I want to ask how to get the right result
Beta Was this translation helpful? Give feedback.
All reactions