How to set a layer current?

How to set a layer current?

Anonymous
Not applicable
449 Views
1 Reply
Message 1 of 2

How to set a layer current?

Anonymous
Not applicable
I use the "Clayer" property of the Database object,but it doesn't work.
The codes are like the following:
Database db = HostApplicationServices.WorkingDatabase;
DBTrans tm =db.TransactionManager;
using (Transaction trans=tm.StartTransaction())
{
........
db.Clayer=id; // id is a valid ObjectId of a database layer
trans.commit()
} Message was edited by: tangferry
0 Likes
450 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
The asignment statement is correct.
How are you determining the ObjectId for the layer ?


wrote in message news:5020999@discussion.autodesk.com...
I use the "Clayer" property of the Database object,but it doesn't work.
The codes are like the following:
Database db = HostApplicationServices.WorkingDatabase;
DBTrans tm =db.TransactionManager;
using (Transaction trans=tm.StartTransaction())
{
........
db.Clayer=id; // id is a valid ObjectId of a database layer
trans.commit()
}

Message was edited by: tangferry
0 Likes