/// <summary> /// Default constructor /// </summary> public MarkerEditor() { supportsDrawOverlay = TypeUtility.HasOverrideMethod(GetType(), nameof(DrawOverlay)); }
/// <summary> /// Default constructor /// </summary> public ClipEditor() { supportsSubTimelines = TypeUtility.HasOverrideMethod(GetType(), nameof(GetSubTimelines)); }
public static bool SupportsBindingAssign(this TrackEditor editor) { return(TypeUtility.HasOverrideMethod(editor.GetType(), nameof(TrackEditor.GetBindingFrom))); }