Hi,
Simple question, how can I subscribe to MailMergeCommand so that I can find out where the file is being saved.
void radRichTextBox_CommandExecuted(object sender, CommandExecutedEventArgs e)
{
if (e.Command is MailMergeCommand)
{
// File Dialog FilePath Location Code
}
}
void radRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
if (e.Command is MailMergeCommand)
{
}
}