AuraPhotoViewer.ResizeableWindow.RECT.ToString C# (CSharp) Method

ToString() public method

Return a user friendly representation of this struct
public ToString ( ) : string
return string
            public override string ToString()
            {
                if (this == Empty) { return "RECT {Empty}"; }
                return "RECT { left : " + left + " / top : " + top + " / right : " + right + " / bottom : " + bottom + " }";
            }