Gets or sets the cursor image. You can use one of the default System.Windows.Forms.Cursors
Often in an sdg application you may want to customize the cursor for different users of the application. The cursor property allows you to use the default windows cursors and your own custom .cur files. Please note that animated cursors and inverted colours are currently not supported.
There have been some issues noted with the loading of cursors that are not black and white and 32x32 pixels, unfortunately these problems are systemic in the .NET framework implementation of the cursor class. We expect this issue to be solved but in the mean time to create a cursor in Visual Studio .NET go File->New->File->Visual C++->Cursor File.
C# Eg., sdgManager1.Mice[0].Cursor = System.Windows.Forms.Cursors.Cross;
C# Eg., sdgManager1.Mice[0].Cursor = new Cursor(@"c:\windows\cursors\larrow.cur");