UnityEditor.UnifiedInspectView.GetInstructionListName C# (CSharp) Method

GetInstructionListName() private method

private GetInstructionListName ( int index ) : string
index int
return string
        internal override string GetInstructionListName(int index)
        {
            IMGUIInstruction instruction = this.m_Instructions[index];
            BaseInspectView inspectViewForType = this.GetInspectViewForType(instruction.type);
            return inspectViewForType.GetInstructionListName(instruction.typeInstructionIndex);
        }