|
高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】saving Current View To Db
saving current view to db?
saving current view to db?
i wanna ask, how can i save my current transformed view back to file?
checking the sample, i manage to get the following code to automatic save the file in viewport with extents zoom.
code:
odgsview* pview = pdevice->viewat(0);
oddbviewporttableptr pvptbl = pdb->getviewporttableid().safeopenobject();
oddbobjectid id = pvptbl->getactiveviewportid();
if (id)
{
odabstractviewpeptr pabstractviewpe = odabstractviewpeptr(pview);
oddbviewporttablerecordptr prec = id.safeopenobject(oddb::kforwrite);
prec->zoomextents();
}
however, i want the viewport to be saved with the current view user viewing. is this possible?
|