Table of Contents

Class MacroFieldContainer

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Container for field extensions of an arbitrary object used by MacroEngine.

public class MacroFieldContainer : MacroExtensionContainer<MacroFieldContainer, MacroField>
Inheritance
object
MacroFieldContainer
Inherited Members
Extension Methods

Methods

GetField(string)

Returns a field of given name (return null if specified field does not exist).

public MacroField GetField(string name)

Parameters

name string

Field name

Returns

MacroField

GetFieldForObject(object, string)

Returns macro field object of given name if registered for specified object. It loops through all MacroFieldContainer extensions of given object type. Returns null if there is no such Extension for given object.

public static MacroField GetFieldForObject(object obj, string name)

Parameters

obj object

Object to check

name string

Name of the field

Returns

MacroField

GetFieldsForObject(object)

Returns list of macro field extension registered for specified object. Returns null if there is no such extension for given object.

public static IEnumerable<MacroField> GetFieldsForObject(object obj)

Parameters

obj object

Object to check

Returns

IEnumerable<MacroField>

RegisterExtensions()

Registers all the fields.

protected override void RegisterExtensions()

RegisterField(MacroField)

Registers the given field.

public void RegisterField(MacroField field)

Parameters

field MacroField

Field to register

RegisterFields()

Registers all the fields.

protected virtual void RegisterFields()