Customize ExportEditor
Posted: Thu Oct 10, 2013 9:45 pm
I'm trying to customize the ExportEditor before displaying it, but nothing I change in DataFormat seems to have any effect on the resultant dialog. Here's what I'm trying:
So I expected that the Series Title checkbox would be checked, and when I exported to a text file I expected to see " End of Line" at the end of each line. But neither happens. How do I get my customizations to take effect?
Incidentally, setting ed->Text did work as expected.
I'm using C++/CLI .NET 4.0.
Thank you,
Matt
Code: Select all
Steema::TeeChart::Editors::Export::ExportEditor ^ed = gcnew Steema::TeeChart::Editors::Export::ExportEditor(tChart1->Chart);
ed->Text = "Export Plot";
ed->DataFormat->IncludeSeriesTitle = true;
ed->DataFormat->TextLineSeparator = " End of Line\n";
ed->ShowDialog();
Incidentally, setting ed->Text did work as expected.
I'm using C++/CLI .NET 4.0.
Thank you,
Matt