Dynamic block issue: block reference base point grip disappears after changing dynamic block parameter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm using code to:
1) Insert the block reference
2) Change the values of its dynamic block parameters
Everything works as expected, except after changing the value of one of the parameters from 2), the parameter named "OFFSET Y", the base point grip of the block reference is not visible.
When I do steps 1) and 2) manually, everything works as expected.
I did some testing, and it appears that the base point grip becomes invisible if property value is a double with 3 decimal places, i.e. "0.125".*
If 2 decimal places are used, everyting works as expected.
prop.Value = (double)0.125; // Doesn't work
prop.Value = (double)0.12; // Works
Any ideas why this is happening?
Block dwg attached.
*For code variant. There are no issues when changing the property manually.