UnityEditor.StyleDrawInspectView.DoDrawInstruction C# (CSharp) Method

DoDrawInstruction() protected method

protected DoDrawInstruction ( ListViewElement el, int id ) : void
el ListViewElement
id int
return void
        protected override void DoDrawInstruction(ListViewElement el, int id)
        {
            GUIContent content = GUIContent.Temp(this.GetInstructionListName(el.row));
            GUIViewDebuggerWindow.s_Styles.listItemBackground.Draw(el.position, false, false, base.m_ListViewState.row == el.row, false);
            GUIViewDebuggerWindow.s_Styles.listItem.Draw(el.position, content, id, base.m_ListViewState.row == el.row);
        }