UnityEditor.StyleDrawInspectView.DoDrawSelectedInstructionDetails C# (CSharp) Method

DoDrawSelectedInstructionDetails() private method

private DoDrawSelectedInstructionDetails ( int index ) : void
index int
return void
        internal override void DoDrawSelectedInstructionDetails(int index)
        {
            using (new EditorGUI.DisabledScope(true))
            {
                base.DrawInspectedRect(this.m_Instruction.rect);
            }
            this.DrawInspectedStyle();
            using (new EditorGUI.DisabledScope(true))
            {
                this.DrawInspectedGUIContent();
            }
        }