الحصول على جميع كائنات TEXT/MTEXT من DWG/DXF
Contents
[
Hide
]كيفية الحصول على جميع كائنات TEXT/MTEXT من DWG/DXF
المشكلة: كيفية الحصول على جميع كائنات TEXT/MTEXT من DWG/DXF.
نصائح: للقيام بذلك، تحتاج إلى الحصول على كائنات CadText(DefaultValue) وCadMText(FullClearText) من الرسم.
مثال:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using CadImage cadImage = (CadImage)Image.Load(fileName); | |
foreach (CadBaseEntity entity in cadImage.Entities) | |
{ | |
if (entity.GetType() == typeof(CadText)) | |
{ | |
CadText text = (CadText)entity; | |
System.Console.WriteLine(text.DefaultValue); | |
} | |
if (entity.GetType() == typeof(CadMText)) | |
{ | |
CadMText mtext = (CadMText)entity; | |
System.Console.WriteLine(mtext.FullClearText); | |
} | |
} |