public override System.Data.DataTable Clone()
            {
                FontDataDataTable cln = ((FontDataDataTable)(base.Clone()));

                cln.InitVars();
                return(cln);
            }
 private void InitClass()
 {
     this.DataSetName             = "MpeData";
     this.Prefix                  = "";
     this.Namespace               = "http://mediaportaleditor/MpeData.xsd";
     this.EnforceConstraints      = true;
     this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableMpeDbString        = new MpeDbStringDataTable();
     base.Tables.Add(this.tableMpeDbString);
     this.tableFontData = new FontDataDataTable();
     base.Tables.Add(this.tableFontData);
 }
 internal void InitVars(bool initTable)
 {
     this.tableMpeDbString = ((MpeDbStringDataTable)(base.Tables["MpeDbString"]));
     if ((initTable == true))
     {
         if ((this.tableMpeDbString != null))
         {
             this.tableMpeDbString.InitVars();
         }
     }
     this.tableFontData = ((FontDataDataTable)(base.Tables["FontData"]));
     if ((initTable == true))
     {
         if ((this.tableFontData != null))
         {
             this.tableFontData.InitVars();
         }
     }
 }
 internal FontDataRow(System.Data.DataRowBuilder rb) :
     base(rb)
 {
     this.tableFontData = ((FontDataDataTable)(this.Table));
 }
Ejemplo n.º 5
0
 internal FontDataRow(System.Data.DataRowBuilder rb) : 
         base(rb) {
     this.tableFontData = ((FontDataDataTable)(this.Table));
 }
Ejemplo n.º 6
0
 private void InitClass() {
     this.DataSetName = "MpeData";
     this.Prefix = "";
     this.Namespace = "http://mediaportaleditor/MpeData.xsd";
     this.EnforceConstraints = true;
     this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableMpeDbString = new MpeDbStringDataTable();
     base.Tables.Add(this.tableMpeDbString);
     this.tableFontData = new FontDataDataTable();
     base.Tables.Add(this.tableFontData);
 }
Ejemplo n.º 7
0
 internal void InitVars(bool initTable) {
     this.tableMpeDbString = ((MpeDbStringDataTable)(base.Tables["MpeDbString"]));
     if ((initTable == true)) {
         if ((this.tableMpeDbString != null)) {
             this.tableMpeDbString.InitVars();
         }
     }
     this.tableFontData = ((FontDataDataTable)(base.Tables["FontData"]));
     if ((initTable == true)) {
         if ((this.tableFontData != null)) {
             this.tableFontData.InitVars();
         }
     }
 }