The Portrate Interview Engine

DateSpanInitializer.Configure Method 

Reads elements named 'property' looking for attributes that define the date span for the initialization. The span is the difference between the 'value' and the 'refDate'. Supported attribute are:

 override: true/false if the initialized value clobbers any existing values field: The name of the date field to use in the span calculation, allows 'day', 'month', or 'year' name: The name of the property being initialized format: A date format used for parsing, can also be specified as child elements with the name 'format' and value being the date format refDate: The start date of the span value: The end date of the span 
Each 'property' element can have 'rule' children which will determine when a property is initialized.

[Visual Basic]
Overrides Public Sub Configure( _ 
   ByVal eData As XmlElement _ 
) _
    Implements IXmlConfigurable.Configure
[C#]
public override void Configure(
   XmlElement eData
);
[C++]
public: void Configure(
   XmlElement* eData
);
[JScript]
public override function Configure(
   XmlElement eData
);

Parameters

eData

Implements

IXmlConfigurable.Configure

See Also

DateSpanInitializer Class | Portrate.Interview.Model.Init Namespace