高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】setdimtxt90 Etc. Not Implemented For Oddbdimension
setdimtxt() etc. not implemented for oddbdimension?
setdimtxt() etc. not implemented for oddbdimension?
i am trying to create dimension objects with overides from the default settings from their dimension style.
in arx i can call functions like setdimtxt() or setdimclrt() to this effect but these do not seem to be implemented of oddbdimension and derived classes. only (some) for oddbleader.
is this an omision that is intended to be remedied in a later version of the library, or is there a reason this functionality is not supplied?
thanks in advance
hans verhoef
these functions are implemented.
they declared by macro in dbdimension.h file:
code:
#define var_def(a, b, dxf, c, d, r1, r2) \
/** returns the dim##b value of this dimension entity. */ \
virtual a dim##b() const; \
/** sets the dim##b value of this dimension entity. */ \
virtual void setdim##b(a);
#include "dimvardefs.h"
#undef var_def
sincerely yours,
george udov
quote:
originally posted by george udov
these functions are implemented.
they declared by macro in dbdimension.h file:
code:
#define var_def(a, b, dxf, c, d, r1, r2) \
/** returns the dim##b value of this dimension entity. */ \
virtual a dim##b() const; \
/** sets the dim##b value of this dimension entity. */ \
virtual void setdim##b(a);
#include "dimvardefs.h"
#undef var_def
thank you very much for your help. i can now test the rest of what our application will need to be able to do.
|