Gets and sets radius around a specific color value in the RGB space to define a spherical region
of color to operate on. This region is divided into an inner zone of half the radius and an outer
zone comprising the rest of the sphere. Operations will fully convert colors in the inner half
radius and then fade in effect to zero at the full radius.
Syntax
public int Radius {get; set;}
public: __property int get_Radius();
public: __property void set_Radius(
int value
);
public:
property int Radius {
int get();
void set ( int value);
}
'Declaration
Public Property Radius As Integer
'Usage
Dim instance As ColorRadius
Dim value As Integer
instance.Radius = value
value = instance.Radius
See Also