UnityEditor.BaseInspectView.GetInstructionListName C# (CSharp) Method

GetInstructionListName() abstract private method

abstract private GetInstructionListName ( int index ) : string
index int
return string
        internal abstract string GetInstructionListName(int index);
        protected virtual bool HasSelectedinstruction()

Usage Example

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

            return(inspectViewForType.GetInstructionListName(instruction.typeInstructionIndex));
        }