Hi guys,
I have a little problems understand what's going on behind the scenes of the "type T" to get this right, I'm hopping that some of you can show me a light at the end of the tunnel :)
I have a COM object that I assign almost the some things (properties) but I need to use this for all objects, and I want to do this once and only that will work with all types.
Printer type:
switch (type)
{
case convert2pdf.ConvertFileType.Word:
WordPrintJob oPrintJob = null; break;
case convert2pdf.ConvertFileType.Excel:
ExcelPrintJob oPrintJob = null; break;
case convert2pdf.ConvertFileType.PowerPoint:
PowerPointPrintJob oPrintJob = null; break;
case convert2pdf.ConvertFileType.IE:
IEPrintJob oPrintJob = null; break;
case convert2pdf.ConvertFileType.Publisher:
PublisherPrintJob oPrintJob = null; break;
case convert2pdf.ConvertFileType.Visio:
VisioPrintJob oPrintJob = null; break;
default:
GenericPrintJob oPrintJob = null; break;
}
and then, no matter what my object type that I created, I implement every time this:
PDFSetting oPDFSetting = null;
oPrintJob = oPrinter.GenericPrintJob;
oPDFSetting = oPrintJob.PDFSetting;
/*put water mark on the first page, set the water mark text to "BCL EasyPDF */
oPDFSetting.set_Watermark(0, true);
oPDFSetting.set_WatermarkColor(0, (uint)System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Blue));
oPDFSetting.set_WatermarkFirstPageOnly(0, true);
oPDFSetting.set_WatermarkText(0, "EasyPDF");
/*set the meta data for the pdf file*/
oPDFSetting.MetaData = true;
oPDFSetting.MetaDataAuthor = "Your Name";
oPDFSetting.MetaDataCreator = "BCL";
oPDFSetting.MetaDataKeywords = "PDF";
oPDFSetting.MetaDataSubject = "Converter";
oPDFSetting.MetaDataTitle = "easyPDF SDK";
How do I use the "type T" thingy (men... after 3 years of C# I still can't understand that no matter what I read, and I read Wikipedia, ASP.NET 3.5 Professional book, tutorials, ...) :(
In other words is, how can I reuse the properties.
I thought about creating an ExtensionMethod, but I will have to write all of them and not reuse any code... I thought about Creating a Generic control and create a new controls that inherit that base one so I could use
GlocalObject oPrintJob = null;
...
WordPrintJob oPrintJob = (WordPrintJob)GlocalObject;
am I making any sense?
Update from the answers
Ok, so, there is no "type T" but base class/interface... I'm then trying to create that Interface so I can inherit from it and I get this image below:

If in the interface I say PrintJob type, how can I return a WordPrintJob type? :-( I don't get it ... any help please? Thank you so much.
