UnityEditor.VerticalGrid.ToString C# (CSharp) 메소드

ToString() 공개 메소드

public ToString ( ) : string
리턴 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);
        }