高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】retrieval Of Wrong Dimension Text Posittion
retrieval of wrong dimension text posittion
retrieval of wrong dimension text posittion
while checking properties of dimension entity in autocad,i am getting the text placement as
text pos hor : centered
text pos vert : above.
but while retrieving the position attachment
i am getting as
oddbmtext::kmiddlecenter
i am using following code to retrieve the text attachment.
oddbrotateddimension *oddimension;
oddbmtext::attachmentpoint justify = oddimension->textattachment();
can you give suggestion how to retrieve the correct position.either i need to add any more code.here concern dimension entity is rotated dimension.
thanks and regards,
petchi muthu
attached files
hello petchi,
quote:
originally posted by petchi_muthu_t
while checking properties of dimension entity in autocad,i am getting the text placement as
text pos hor : centered
text pos vert : above.
this is text position relative dimension line and extention lines.
text pos hor : centered - means what text is placed between extention lines in center. possible values are "first extension line", "over fiirst extension" ....
text pos vert : above - means what text is placed above dimernsion line. ( also may be "centered", "outside" and "jis").
quote:
originally posted by petchi_muthu_t
but while retrieving the position attachment
i am getting as
oddbmtext::kmiddlecenter
i am using following code to retrieve the text attachment.
oddbrotateddimension *oddimension;
oddbmtext::attachmentpoint justify = oddimension->textattachment();
this is mtext attachment. "the attachmentpoint value determines how the text will be oriented around the initial insertion point of the mtext object."
default value is oddbmtext::kmiddlecenter for dimensions. there is no way to change it in acad through ui. ( at least i am not able to find it).
best regards,
sergey z.
dear sergey z.,
thanks for your reply. according to the way it looks in autocad gui, i am expecting the value of text attachment would be oddbmtext::kabovecenter.
is it bug in dwgdirect library?.
regards,
petchi
quote:
originally posted by petchi_muthu_t
dear sergey z.,
thanks for your reply. according to the way it looks in autocad gui, i am expecting the value of text attachment would be oddbmtext::kabovecenter.
is it bug in dwgdirect library?.
regards,
petchi
in autocad gui dimension properties defines position mtext relative dimension line and extention lines (above, center). textattachment(); mtext property defines position relative location point (location() property of mtext). it is different properties.
best regards,
sergey z.
sergey z.,
thanks.i understand you explained.concern dimension entity return oddbmtext::kmiddlecenter value for text attachment.is it correct?.
because according to gui, i am expecting oddbmtext::kabovecenter.
regards,
petchi muthu
|