高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】recomputedimblock
recomputedimblock
recomputedimblock
hello,
if there is no dimblock in dimension entity, will recomputedimblock() creates one and update it from the two extension line point nd one dimension line point?
if it creates dimblock on its own then what is the method for doing so?
thanks!
regards
prakhar
quote:
originally posted by prakhar19us
if there is no dimblock in dimension entity, will recomputedimblock() creates one and update it from the two extension line point nd one dimension line point?
yes! recomputedimblock() creates block or makes it up-to-date with accordance dimension property (in case it was changed).
best regards,
sergey z.
recomputedimblock
thanks for your response, but i am still facing problem in the implementation, its not creating any block in my case.
what all properties do i need to set before i call recomputedimblock()?
right now say i create oddbrotateddimension entity, i set start point for the extension line and the dimension line point and also the text rotation,text position and text attachment and after this i call recomputedimblock but its not creating any block.
regards
prakhar
here is a piece of code from writeex dwgdirect sample.
code:
oddbblocktablerecordptr bbtr;
oddbrotateddimensionptr pdimension = oddbrotateddimension::createobject();
pdimension->setdatabasedefaults(pdb);
oddbobjectid dimensionid = bbtr->appendoddbentity(pdimension);
pdimension->setdatabasedefaults(pdb);
pdimension->setxline1point(startpoint);
pdimension->setxline2point(endpoint);
pdimension->setdimlinepoint(dimlinept);
pdimension->usedefaulttextposition();
// or usesettextposition();
best regards,
sergey z.
can you please explain.......
does recomputedimblock() create a block and append it to oddbblocktable ?
when i am calling recomputedimblock(), i can not see any blocktablerecord added in oddbblocktable.........
thankssss
.................................................. .........................
quote:
originally posted by niteshsingh_007
can you please explain.......
does recomputedimblock() create a block and append it to oddbblocktable ?
yes!
quote:
originally posted by niteshsingh_007
when i am calling recomputedimblock(), i can not see any blocktablerecord added in oddbblocktable
best regards,
sergey z.
thanks sergey,
actually da problem was thet.. dummyrecomputedimblock.lib file was also been linked unknowingly with recomputedimblock.lib.......... thanks alot..
.................................................. .........................
|