Recurity.Swf.StraightEdgeRecord.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.Append(base.ToString());
            sb.AppendFormat(" deltaX :{0:d} , deltaY : {1:d}", this._deltaX, this._deltaY);
            return sb.ToString();
        }