UnityEditor.ListViewState.Init C# (CSharp) Method

Init() private method

private Init ( int totalRows, int rowHeight ) : void
totalRows int
rowHeight int
return void
        private void Init(int totalRows, int rowHeight)
        {
            this.row = -1;
            this.column = 0;
            this.scrollPos = Vector2.zero;
            this.totalRows = totalRows;
            this.rowHeight = rowHeight;
            this.selectionChanged = false;
        }
    }