PurplePen.DescriptionRenderer.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : object
return object
        public object Clone()
        {
            DescriptionRenderer n = new DescriptionRenderer(symbolDB);
            n.margin = this.margin;
            n.cellSize = this.cellSize;
            n.numColumns = this.numColumns;
            n.description = this.description;
            n.descriptionKind = this.descriptionKind;
            n.replaceMultiplySign = this.replaceMultiplySign;
            return n;
        }