Recurity.Swf.TagHandler.DefineMorphShape2.ToString C# (CSharp) Method

ToString() public method

Converts the value of this instance to a System.String.
public ToString ( ) : string
return string
        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();
            sb.AppendFormat(" Character ID: {0:d}, offset : {1:d}, number of morph fill styles: {2:d}, number of morph line styles: {3:d}",
                            this._characterID, this._offset, this._morphFillStyles.Count, this._morphLineStyles.Count);
            return sb.ToString();
        }