change the style of created obj or change the style and create that obj

change the style of created obj or change the style and create that obj

damyan_lyaskov
Contributor Contributor
878 Views
2 Replies
Message 1 of 3

change the style of created obj or change the style and create that obj

damyan_lyaskov
Contributor
Contributor

One general question for all the .net gurus out there.

 

It’s my understanding that every time a new object is created, Mtext for example, its created with the current style, Mtext style in my case.

 

I remember that when I used to code with Autolisp, I will always first change, for example the MText Style to the desired one and after that create the Mtext object.

 

Do I need to do the same here or just changing the MTextStyleID to the new MText Style will change all the properties of the Mtext object based on that MText Style.

 

Thank you.

 

 

 

0 Likes
Accepted solutions (1)
879 Views
2 Replies
Replies (2)
Message 2 of 3

Balaji_Ram
Alumni
Alumni
Accepted solution

Hello,

 

When you create an MText entity, call the "SetDatabaseDefaults" method. This will ensure that the default values including the default style is assigned to the MText entity.

 

If you then want to have a different MTextStyle, then create a new MTextStyle and assign the ObjectId of it to the MText entity as its "MTextStyleId".

 

You can also choose to open the MTextStyle object using its objectId inside a transaction.

Changes made to the MTextStyle and then committed to the database will get reflected in all the MText entities that refer to this MTextStyle.

 

Hope this helps.

 

 



Balaji
Developer Technical Services
Autodesk Developer Network

0 Likes
Message 3 of 3

damyan_lyaskov
Contributor
Contributor

Thank you.

0 Likes