Opening specific SolidWorks version in C#

The lines below opens up the Solidworks 2014 program:

            SldWorks.SldWorks swApp = new SldWorks.SldWorks();

            swApp.Visible = true;

Is it possible to specify which version to run? I would rather have it run SolidWorks 2012 instead.

SolidworksApi macros