Beispiel #1
0
 ESRI.ArcGIS.esriSystem.IClone ESRI.ArcGIS.esriSystem.IClone.Clone()
 {
     //  Simplest way to implement the Clone function is to make use of the IClone Assign
     //  method. Create a new LogoMarkerSymbol and assign to it the properties of the
     //  current class, then pass back this new class, which is then a copy of the current class.
     GIS.IGasPressureSymbol newLogo = null;
     ESRI.ArcGIS.esriSystem.IClone clone = null;
     newLogo = new GIS.GasPressureSymbol();
     clone = newLogo as IClone;
     clone.Assign(this);
     return clone;
 }
 ESRI.ArcGIS.esriSystem.IClone ESRI.ArcGIS.esriSystem.IClone.Clone()
 {
     //  Simplest way to implement the Clone function is to make use of the IClone Assign
     //  method. Create a new LogoMarkerSymbol and assign to it the properties of the
     //  current class, then pass back this new class, which is then a copy of the current class.
     GIS.IGasPressureSymbol newLogo = null;
     ESRI.ArcGIS.esriSystem.IClone clone = null;
     newLogo = new GIS.GasPressureSymbol();
     clone = newLogo as IClone;
     clone.Assign(this);
     return clone;
 }