UnityEditor.VerticalGrid.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            object[] args = new object[] { this.rows, this.columns, this.fixedWidth, this.itemSize };
            return string.Format("VerticalGrid: rows {0}, columns {1}, fixedWidth {2}, itemSize {3}", args);
        }