public override float GetElementHeight(GUIContent label, ICustomTypeEditorInherited element, fiGraphMetadata metadata)
 {
     return(30);
 }
 public override ICustomTypeEditorInherited Edit(Rect region, GUIContent label, ICustomTypeEditorInherited element, fiGraphMetadata metadata)
 {
     EditorGUI.HelpBox(region, string.Format(label.text + ": This is the inherited editor (TDerived={0})", typeof(TDerived).Name), MessageType.Info);
     return(element);
 }