Copyright © 2003-2005 MultiMedia Soft 
Return to index  
 
CursorEx property 
 
Type
[Visual Basic] 
Public Overridable Property Cursor As String 
 
[C#] 
public virtual string Cursor {get; set;} 
 
[C++] 
public: __property virtual String* get_Cursor(); 
public: __property virtual void set_Cursor(String*);
 
 
Remarks
The filename of the cursor file displayed when the mouse is over the button. 
It is possible to use normal cursors files (extension .CUR) or animated cursors files (extension .ANI). 
This property can be changed at design time using the Resources tab of the 3D Button Visual Editor application.
 
 
Notes
Note that setting the cursor at design time will not require to redistribute the cursor file because its binary will be stored in the final application code in a compressed format (the redistribution is required only when there is the need of changing and restoring the cursor at runtime).
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2003-2005 MultiMedia Soft 
Return to index