Support,
Below are my .aspx and the .cs file - I run the demo app to draw an eclipse but the screen just shows a box with an x in it. Any help is apprecaited,
-Peter
ASPX file
---------------------------------------------------------------------------------------------------------------------------
<%
<!
<
</
CS file
-----------------------------------------------------------------------------------------------------------------------------------
using
public
{
NDrawingView1.ViewLayout =
NDrawingView1.DocumentPadding =
NDrawingView1.Document.HistoryService.Stop();
NDrawingView1.Document.BeginInit();
NDrawingView1.Document.Bounds =
fs.InnerBorderWidth =
ellipse.Name =
ellipse.Width = 250f;
ellipse.Height = 250f;
ellipse.Center =
ellipse.Style.FillStyle =
NDrawingView1.Document.ActiveLayer.AddChild(ellipse);
NDrawingView1.Document.EndInit();
}