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();
        }
    }
  • 相关阅读:
    几个前端可能会遇到的小问题
    函数内部变量与该函数名冲突会怎样
    顺序表之删除算法
    顺序表之插入算法
    IPV4和IPV6的区别
    win10关闭自动更新
    spring常见十大异常
    java中list和Arrylist的区别
    垃圾收集器与内存分配策略
    java类加载机制
  • 原文地址:https://www.cnblogs.com/swtool/p/11531721.html
Copyright © 2011-2022 走看看