📄 dataset1.h
字号:
public: event Ex22_05::DataSet1::ProductsRowChangeEventHandler^ ProductsRowChanging;
public: event Ex22_05::DataSet1::ProductsRowChangeEventHandler^ ProductsRowChanged;
public: event Ex22_05::DataSet1::ProductsRowChangeEventHandler^ ProductsRowDeleting;
public: event Ex22_05::DataSet1::ProductsRowChangeEventHandler^ ProductsRowDeleted;
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
ProductsDataTable();
internal: [System::Diagnostics::DebuggerNonUserCodeAttribute]
ProductsDataTable(System::Data::DataTable^ table);
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
ProductsDataTable(System::Runtime::Serialization::SerializationInfo^ info, System::Runtime::Serialization::StreamingContext context);
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ ProductIDColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ ProductNameColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ SupplierIDColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ CategoryIDColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ QuantityPerUnitColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ UnitPriceColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ UnitsInStockColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ UnitsOnOrderColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ ReorderLevelColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::Data::DataColumn^ DiscontinuedColumn {
System::Data::DataColumn^ get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute,
System::ComponentModel::Browsable(false)]
property System::Int32 Count {
System::Int32 get();
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property Ex22_05::DataSet1::ProductsRow^ default [System::Int32 ] {
Ex22_05::DataSet1::ProductsRow^ get(System::Int32 index);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void AddProductsRow(Ex22_05::DataSet1::ProductsRow^ row);
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
Ex22_05::DataSet1::ProductsRow^ AddProductsRow(
System::String^ ProductName,
System::Int32 SupplierID,
System::Int32 CategoryID,
System::String^ QuantityPerUnit,
System::Decimal UnitPrice,
System::Int16 UnitsInStock,
System::Int16 UnitsOnOrder,
System::Int16 ReorderLevel,
System::Boolean Discontinued);
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
Ex22_05::DataSet1::ProductsRow^ FindByProductID(System::Int32 ProductID);
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Collections::IEnumerator^ GetEnumerator();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Data::DataTable^ Clone() override;
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Data::DataTable^ CreateInstance() override;
internal: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void InitVars();
private: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void InitClass();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
Ex22_05::DataSet1::ProductsRow^ NewProductsRow();
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Data::DataRow^ NewRowFromBuilder(System::Data::DataRowBuilder^ builder) override;
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Type^ GetRowType() override;
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Void OnRowChanged(System::Data::DataRowChangeEventArgs^ e) override;
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Void OnRowChanging(System::Data::DataRowChangeEventArgs^ e) override;
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Void OnRowDeleted(System::Data::DataRowChangeEventArgs^ e) override;
protected: [System::Diagnostics::DebuggerNonUserCodeAttribute]
virtual System::Void OnRowDeleting(System::Data::DataRowChangeEventArgs^ e) override;
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void RemoveProductsRow(Ex22_05::DataSet1::ProductsRow^ row);
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
static System::Xml::Schema::XmlSchemaComplexType^ GetTypedTableSchema(System::Xml::Schema::XmlSchemaSet^ xs);
};
public : [System::CodeDom::Compiler::GeneratedCodeAttribute(L"System.Data.Design.TypedDataSetGenerator", L"2.0.0.0")]
ref class CustomersRow : public System::Data::DataRow {
private: Ex22_05::DataSet1::CustomersDataTable^ tableCustomers;
internal: [System::Diagnostics::DebuggerNonUserCodeAttribute]
CustomersRow(System::Data::DataRowBuilder^ rb);
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ CustomerID {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ CompanyName {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ ContactName {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ ContactTitle {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ Address {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ City {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ Region {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ PostalCode {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ Country {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ Phone {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
property System::String^ Fax {
System::String^ get();
System::Void set(System::String^ value);
}
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsCompanyNameNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetCompanyNameNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsContactNameNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetContactNameNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsContactTitleNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetContactTitleNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsAddressNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetAddressNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsCityNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetCityNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsRegionNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetRegionNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsPostalCodeNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetPostalCodeNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsCountryNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetCountryNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsPhoneNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetPhoneNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Boolean IsFaxNull();
public: [System::Diagnostics::DebuggerNonUserCodeAttribute]
System::Void SetFaxNull();
};
public : [System::CodeDom::Compiler::GeneratedCodeAttribute(L"System.Data.Design.TypedDataSetGenerator", L"2.0.0.0")]
ref class EmployeesRow : public System::Data::DataRow {
private: Ex22_05::DataSet1::EmployeesDataTable^ tableEmployees;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -