Arnold,
I've just added support for this in the latest update. The
ArticlePost control now has an AttributionLine property which controls the
format of the line, if any, to be added.
If this property is null (the default) or empty, no
attribution line is added and the post is created as before.
If this property is non-empty, any tokens in the line are
replaced with the corresponding values taken from the message being replied to,
and the resulting line is added to the new message.
Tokens are enclosed in curly braces, and must contain the name
of a property within the NewsArticle class, e.g.:
{From} wrote:
Nested objects can also be accessed in the same way, by
combining property names with a period. While the example above will use the
entire, raw From header, the following example will just use the
name:
{ClientArticle.FromName}
wrote:
Any number of tokens can be included in the string,
e.g.:
On
{ClientArticle.Date.DateTime}, {ClientArticle.FromName} wrote in message
{MessageID}:
Mark