高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】how to create a dashdot linetype
how to create a dashdot linetype?
how to create a dashdot linetype?
hi all,
i know how to add a dash line type as the following code
// dash line - - - - - - - - - - - - -
oddblinetypetableptr plinetypes = pdb->getlinetypetableid().safeopenobject(oddb::kforwri te);
oddblinetypetablerecordptr plinetype = oddblinetypetablerecord::createobject();
plinetype->setname("dash line");
oddbobjectid linetypeid = plinetypes->add(plinetype);
plinetype->setnumdashes(2);
plinetype->setpatternlength(0.1875);
plinetype->setdashlengthat(0, 0.125);
plinetype->setdashlengthat(1, -0.0625);
but i cannot figure out how to create a dashdot line type (-.-.-.-.-.).
any help is very appreciated.
dash length having zero value specifies dot.
sergey slezkin
greate, that is what i am looking for.
thank sergey.
|