using System.Windows.Forms;
using FastReport.Export.LaTeX;
using FastReport.Utils;
namespace FastReport.Forms
{
///
/// Form for .
/// For internal use only.
///
public partial class LaTeXExportForm : BaseExportForm
{
///
public override void Localize()
{
base.Localize();
MyRes res = new MyRes("Export,LaTeX");
Text = res.Get("");
}
///
/// Initializes a new instance of the class.
///
public LaTeXExportForm()
{
InitializeComponent();
}
}
}