How can I change/save values of entities within an image
Posted: 18 Aug 2021, 18:01
I have the current code and I want to change the value of text fields from what they are to something different and save the file as a new temp file.
Code: Select all
CADImage cadImage = CADImage.CreateImageByExtension(@"file path to file");
cadImage.LoadFromFile(@"file path to file");
CADEntityCollection entities = cadImage.Converter.Entities;
foreach (CADEntity entity in entities)
{
if (entity.EntType.ToString() == "Text")
{
// change current text value of entity to a new text value
}
}
//save to new temp .dwg file