Delphi code :
procedure TMainForm.PdtPrintDAT1AfterOptionsLoaded(Sender: TObject;
var ReportSettings: TpdtReportSettings);
begin
ReportSettings.HideColumns := '~Line#'; {Hide these columns in the report}
ReportSettings.MaxStringColWid[ umTxt ] := 25; {Make all string columns a max of 25 characters}
if IncludeSampleAndTimeOnEachPrintedPage then
ReportSettings.NumFixedCols := 3 // 2 + 1 hidden line #
else ReportSettings.NumFixedCols := 0;
ReportSettings.OutputFileName := ExtractFilePath( Application.ExeName )
+ SUBDIR_REPORTS
+ '\'
+ 'Rpt.TXT';
end;
I tried to convert a little bit like this.
public void PdtPrintDAT1AfterOptionsLoaded(Object Sender, ref PdtReportSettings ReportSettings)
{
ReportSettings.HideColumns = "~Line#";
ReportSettings.MaxStringColWid[umTxt] = 25;
if (Units.Main.IncludeSampleAndTimeOnEachPrintedPage)
{
ReportSettings.NumFixedCols = 3;
}
else
{
ReportSettings.NumFixedCols = 0;
}
ReportSettings.OutputFileName = Path.GetDirectoryName(System.Environment.GetCommandLineArgs()[0]) + Units.Main.SUBDIR_REPORTS + '\\' + "Rpt.TXT";
}
But it gives error in the beginning for this. ref PdtReportSettings ReportSettings The type or namespace name 'PdtReportSettings' could not be found (are you missing a using directive or an assembly reference?)
How can I solve this?
PdtReportSettingsat all? Maybe you need to convert it from Delphi first? – Vlad Oct 16 '12 at 20:39