zoukankan      html  css  js  c++  java
  • AutoCAD.Net/C#.Net QQ群:193522571 程序中需要判断是attdef和text时应该把attdef放在前面

    程序中需要判断是attdef和text时应该把attdef放在前面,因为attdef是text的继承类

    namespace Autodesk.AutoCAD.DatabaseServices
    {
        [TypeDescriptionProvider("Autodesk.AutoCAD.ComponentModel.TypeDescriptionProvider`1[[Autodesk.AutoCAD.DatabaseServices.AttributeDefinition, acdbmgd]], acdbmgd")]
        [Wrapper("AcDbAttributeDefinition")]
        public class AttributeDefinition : DBText
        {
            public AttributeDefinition();
            public AttributeDefinition(Point3d position, string value, string tag, string prompt, ObjectId style);
            protected internal AttributeDefinition(IntPtr unmanagedObjPtr, bool autoDelete);
    
            public bool Constant { get; set; }
            public int FieldLength { get; set; }
            public bool Invisible { get; set; }
            public bool IsMTextAttributeDefinition { get; set; }
            public bool LockPositionInBlock { get; set; }
            public MText MTextAttributeDefinition { get; set; }
            public bool Preset { get; set; }
            public string Prompt { get; set; }
            public string Tag { get; set; }
            public bool Verifiable { get; set; }
    
            public void UpdateMTextAttributeDefinition();
        }
    }
  • 相关阅读:
    洛谷P3275 [SCOI2011]糖果
    2018年12月30&31日
    洛谷P4114 Qtree1
    洛谷P4116 Qtree3
    洛谷P4315 月下“毛景树”
    洛谷P1505 [国家集训队]旅游
    洛谷P2253 好一个一中腰鼓!
    CF616D Longest k-Good Segment
    洛谷P3979 遥远的国度
    洛谷P2486 [SDOI2011]染色
  • 原文地址:https://www.cnblogs.com/swtool/p/11531721.html
Copyright © 2011-2022 走看看