CreateTransient(Page,Symbol,PointD,PointD) Method
Creates new transient Shield object of given dimensions and places on page.
The following example shows how to create and place Shield on page.
//prepare symbol of Shield
SymbolVariant oSymbolVariant = new SymbolVariant();
string strSymbolLibName = "SPECIAL";
string strSymbolName = @"SH";
SymbolLibrary oSymbolLibrary = new SymbolLibrary(oProject, strSymbolLibName);
Symbol oSymbol = new Symbol(oSymbolLibrary, strSymbolName);
//create Shield
Page oPage = oProject.Pages[14];
Shield oShield = new Shield();
oShield.Create(oPage, oSymbol, new PointD(50.0, 200.0), new PointD(120.0, 230.0));