⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tongjidataset.designer.cs

📁 gis,使用c#,arcobject(ae)实现空间分析的列子(geoproceor使用),根据面积淹没,实现灾评信息的统计.
💻 CS
📖 第 1 页 / 共 3 页
字号:
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn 村Column {
                get {
                    return this.column村;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            [System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public resultRow this[int index] {
                get {
                    return ((resultRow)(this.Rows[index]));
                }
            }
            
            public event resultRowChangeEventHandler resultRowChanging;
            
            public event resultRowChangeEventHandler resultRowChanged;
            
            public event resultRowChangeEventHandler resultRowDeleting;
            
            public event resultRowChangeEventHandler resultRowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void AddresultRow(resultRow row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public resultRow AddresultRow(string 风险图, double 面积, double gdp, double 固定资产, double 房屋, double 人口, double 村) {
                resultRow rowresultRow = ((resultRow)(this.NewRow()));
                rowresultRow.ItemArray = new object[] {
                        风险图,
                        面积,
                        gdp,
                        固定资产,
                        房屋,
                        人口,
                        村};
                this.Rows.Add(rowresultRow);
                return rowresultRow;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override System.Data.DataTable Clone() {
                resultDataTable cln = ((resultDataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new resultDataTable();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal void InitVars() {
                this.column风险图 = base.Columns["风险图"];
                this.column面积 = base.Columns["面积"];
                this.columngdp = base.Columns["gdp"];
                this.column固定资产 = base.Columns["固定资产"];
                this.column房屋 = base.Columns["房屋"];
                this.column人口 = base.Columns["人口"];
                this.column村 = base.Columns["村"];
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            private void InitClass() {
                this.column风险图 = new System.Data.DataColumn("风险图", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column风险图);
                this.column面积 = new System.Data.DataColumn("面积", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column面积);
                this.columngdp = new System.Data.DataColumn("gdp", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columngdp);
                this.column固定资产 = new System.Data.DataColumn("固定资产", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column固定资产);
                this.column房屋 = new System.Data.DataColumn("房屋", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column房屋);
                this.column人口 = new System.Data.DataColumn("人口", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column人口);
                this.column村 = new System.Data.DataColumn("村", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column村);
                this.column风险图.MaxLength = 30;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public resultRow NewresultRow() {
                return ((resultRow)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new resultRow(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(resultRow);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.resultRowChanged != null)) {
                    this.resultRowChanged(this, new resultRowChangeEvent(((resultRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.resultRowChanging != null)) {
                    this.resultRowChanging(this, new resultRowChangeEvent(((resultRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.resultRowDeleted != null)) {
                    this.resultRowDeleted(this, new resultRowChangeEvent(((resultRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.resultRowDeleting != null)) {
                    this.resultRowDeleting(this, new resultRowChangeEvent(((resultRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void RemoveresultRow(resultRow row) {
                this.Rows.Remove(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
                System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
                System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
                tongjiDataSet ds = new tongjiDataSet();
                xs.Add(ds.GetSchemaSerializable());
                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 = "resultDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                return type;
            }
        }
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        public partial class resultRow : System.Data.DataRow {
            
            private resultDataTable tableresult;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal resultRow(System.Data.DataRowBuilder rb) : 
                    base(rb) {
                this.tableresult = ((resultDataTable)(this.Table));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 风险图 {
                get {
                    try {
                        return ((string)(this[this.tableresult.风险图Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“result”中列“风险图”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableresult.风险图Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public double 面积 {
                get {
                    try {
                        return ((double)(this[this.tableresult.面积Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“result”中列“面积”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableresult.面积Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public double gdp {
                get {
                    try {
                        return ((double)(this[this.tableresult.gdpColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“result”中列“gdp”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableresult.gdpColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public double 固定资产 {
                get {
                    try {
                        return ((double)(this[this.tableresult.固定资产Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“result”中列“固定资产”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableresult.固定资产Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public double 房屋 {
                get {
                    try {
                        return ((double)(this[this.tableresult.房屋Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“result”中列“房屋”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableresult.房屋Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public double 人口 {
                get {
                    try {
                        return ((double)(this[this.tableresult.人口Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“result”中列“人口”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableresult.人口Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public double 村 {
                get {
                    try {
                        return ((double)(this[this.tableresult.村Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“result”中列“村”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableresult.村Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is风险图Null() {
                return this.IsNull(this.tableresult.风险图Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set风险图Null() {
                this[this.tableresult.风险图Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is面积Null() {
                return this.IsNull(this.tableresult.面积Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set面积Null() {
                this[this.tableresult.面积Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool IsgdpNull() {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -