AspNetEdit.UI.EditorManager.instantiateEditor C# (CSharp) Method

instantiateEditor() private method

private instantiateEditor ( Type type, GridRow parentRow ) : BaseEditor
type System.Type
parentRow GridRow
return AspNetEdit.UI.PropertyEditors.BaseEditor
        private BaseEditor instantiateEditor(Type type, GridRow parentRow)
        {
            ConstructorInfo ctor = type.GetConstructor( new Type[] { typeof (GridRow) });
            return (BaseEditor) ctor.Invoke(new object[] { parentRow });
        }