Disables a property if it is drawn within an <see cref="InlineEditorAttribute"/>.
[InfoBox("Click the pen icon to open a new inspector window for the InlineObject too see the difference this attribute make.")]
[InlineEditor(Expanded = true)]
public MyInlineScriptableObject InlineObject = ExampleHelper.GetScriptableObject<MyInlineScriptableObject>();
public class MyInlineScriptableObject : ScriptableObject
{
public string AlwaysEnabled;
[DisableInInlineEditors]
public string DisabledInInlineEditor;
}