You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.3 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace HelloTeamcenter.hello
{
public class OriginBTL
{
private Hashtable btlinfotable = null; // 块参照上所有信息<CAD属性名,CAD属性值>
public Hashtable Btlinfotable
{
get { return btlinfotable; }
set { btlinfotable = value; }
}
public OriginBTL()
{
this.btlname = "";
this.btlinfotable = new Hashtable();
this.btldatatable = new Hashtable();
this.btltctable = new Hashtable();
this.btltypetable = new Hashtable();
this.btlwritetable = new Hashtable();
this.Btlupdatetable = new Hashtable();
this.Btlfromtctable = new Hashtable();
}
private string btlname; //标题栏块参照名
public string Btlname
{
get { return btlname; }
set { btlname = value; }
}
private Hashtable btldatatable = null; // <CAD属性名,CAD属性值>
public Hashtable Btldatatable
{
get { return btldatatable; }
set { btldatatable = value; }
}
private Hashtable btltctable = null; // <CAD属性名,TC属性名>
public Hashtable Btltctable
{
get { return btltctable; }
set { btltctable = value; }
}
private Hashtable btltypetable = null; // <CAD属性名,TC类型名>
public Hashtable Btltypetable
{
get { return btltypetable; }
set { btltypetable = value; }
}
private Hashtable btlwritetable = null; // <CAD属性名writeable值>
public Hashtable Btlwritetable
{
get { return btlwritetable; }
set { btlwritetable = value; }
}
private Hashtable btlupdatetable = null; // <CAD属性名updateable值>
public Hashtable Btlupdatetable
{
get { return btlupdatetable; }
set { btlupdatetable = value; }
}
private Hashtable btlfromtctable = null; //<CAD属性名fromtc值>
public Hashtable Btlfromtctable
{
get { return btlfromtctable; }
set { btlfromtctable = value; }
}
}
}