SuperMap.WindowsPhone.Core.Feature.Clone C# (CSharp) 메소드

Clone() 공개 메소드

${WP_core_Feature_method_Clone_D}
public Clone ( ) : Feature
리턴 Feature
        public Feature Clone()
        {
            Feature fClone = new Feature();
            fClone.Geometry = this.Geometry.Clone();
            fClone.Style = this.Style;
            fClone.ToolTip = this.ToolTip;
            fClone.DisableToolTip = this.DisableToolTip;
            fClone.Attributes = this.Attributes;

            return fClone;
        }
    }