Copyright © 2003-2005 MultiMedia Soft 
Return to index  
 
ButtonRaiseFactor property 
 
Type
[Visual Basic] 
Public Property ButtonRaiseFactor As Short 
 
[C#] 
public short ButtonRaiseFactor {get; set;} 
 
[C++] 
public: __property short get_ButtonRaiseFactor(); 
public: __property void set_ButtonRaiseFactor(short);
 
 
Remarks
Determines how much raised (or sunken) is a button when it is not pressed (or when it is pressed). 
The raise factor range is between 0 and 9: if the value exceed this range, 1 will be assumed; by default the factor 1 is selected. 
Here follows a sample of a custom shaped button with the ButtonRaiseFactor property set to 1 (default): 
 
and here is the same button with the ButtonRaiseFactor property set to 4: 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2003-2005 MultiMedia Soft 
Return to index