📄 qxpdadataset.designer.cs
字号:
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "line_baseDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class line_crossDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnbdz_code;
private System.Data.DataColumn columnline_code;
private System.Data.DataColumn columnsubline_code;
private System.Data.DataColumn columnstart_num;
private System.Data.DataColumn columnend_num;
private System.Data.DataColumn columncross_span_kind;
private System.Data.DataColumn columnx1;
private System.Data.DataColumn columny1;
private System.Data.DataColumn columnx2;
private System.Data.DataColumn columny2;
private System.Data.DataColumn columnremark;
private System.Data.DataColumn columnlc_code;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_crossDataTable() {
this.TableName = "line_cross";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal line_crossDataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn bdz_codeColumn {
get {
return this.columnbdz_code;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn line_codeColumn {
get {
return this.columnline_code;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn subline_codeColumn {
get {
return this.columnsubline_code;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn start_numColumn {
get {
return this.columnstart_num;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn end_numColumn {
get {
return this.columnend_num;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn cross_span_kindColumn {
get {
return this.columncross_span_kind;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn x1Column {
get {
return this.columnx1;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn y1Column {
get {
return this.columny1;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn x2Column {
get {
return this.columnx2;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn y2Column {
get {
return this.columny2;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn remarkColumn {
get {
return this.columnremark;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn lc_codeColumn {
get {
return this.columnlc_code;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_crossRow this[int index] {
get {
return ((line_crossRow)(this.Rows[index]));
}
}
public event line_crossRowChangeEventHandler line_crossRowChanging;
public event line_crossRowChangeEventHandler line_crossRowChanged;
public event line_crossRowChangeEventHandler line_crossRowDeleting;
public event line_crossRowChangeEventHandler line_crossRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Addline_crossRow(line_crossRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_crossRow Addline_crossRow(int bdz_code, int line_code, int subline_code, string start_num, string end_num, string cross_span_kind, decimal x1, decimal y1, decimal x2, decimal y2, string remark) {
line_crossRow rowline_crossRow = ((line_crossRow)(this.NewRow()));
rowline_crossRow.ItemArray = new object[] {
bdz_code,
line_code,
subline_code,
start_num,
end_num,
cross_span_kind,
x1,
y1,
x2,
y2,
remark,
null};
this.Rows.Add(rowline_crossRow);
return rowline_crossRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_crossRow FindBylc_code(int lc_code) {
return ((line_crossRow)(this.Rows.Find(new object[] {
lc_code})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
line_crossDataTable cln = ((line_crossDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new line_crossDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnbdz_code = base.Columns["bdz_code"];
this.columnline_code = base.Columns["line_code"];
this.columnsubline_code = base.Columns["subline_code"];
this.columnstart_num = base.Columns["start_num"];
this.columnend_num = base.Columns["end_num"];
this.columncross_span_kind = base.Columns["cross_span_kind"];
this.columnx1 = base.Columns["x1"];
this.columny1 = base.Columns["y1"];
this.columnx2 = base.Columns["x2"];
this.columny2 = base.Columns["y2"];
this.columnremark = base.Columns["remark"];
this.columnlc_code = base.Columns["lc_code"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnbdz_code = new System.Data.DataColumn("bdz_code", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnbdz_code);
this.columnline_code = new System.Data.DataColumn("line_code", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnline_code);
this.columnsubline_code = new System.Data.DataColumn("subline_code", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnsubline_code);
this.columnstart_num = new System.Data.DataColumn("start_num", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnstart_num);
this.columnend_num = new System.Data.DataColumn("end_num", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnend_num);
this.columncross_span_kind = new System.Data.DataColumn("cross_span_kind", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columncross_span_kind);
this.columnx1 = new System.Data.DataColumn("x1", typeof(decimal), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnx1);
this.columny1 = new System.Data.DataColumn("y1", typeof(decimal), null, System.Data.MappingType.Element);
base.Columns.Add(this.columny1);
this.columnx2 = new System.Data.DataColumn("x2", typeof(decimal), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnx2);
this.columny2 = new System.Data.DataColumn("y2", typeof(decimal), null, System.Data.MappingType.Element);
base.Columns.Add(this.columny2);
this.columnremark = new System.Data.DataColumn("remark", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnremark);
this.columnlc_code = new System.Data.DataColumn("lc_code", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnlc_code);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnlc_code}, true));
this.columnbdz_code.AllowDBNull = false;
this.columnline_code.AllowDBNull = false;
this.columnsubline_code.AllowDBNull = false;
this.columnstart_num.AllowDBNull = false;
this.columnstart_num.MaxLength = 20;
this.columnend_num.AllowDBNull = false;
this.columnend_num.MaxLength = 20;
this.columncross_span_kind.MaxLength = 20;
this.columnremark.MaxLength = 200;
this.columnlc_code.AutoIncrement = true;
this.columnlc_code.AllowDBNull =
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -