Search
Box.FrameColorAlpha Property
See Also
 



Gets or sets the transparency of the box border.

 Syntax

VB6  Copy Code

Public Property Get FrameColorAlpha() As Integer
Public Property Let FrameColorAlpha( _
    ByVal value As Integer _
)

C++  Copy Code

public:
short get_FrameColorAlpha ()
void put_FrameColorAlpha (
    short value
)

 Property Value

A byte value. The default is 255.

 Remarks

Specifies the alpha component of FrameColor. Alpha values, ranging from 0 to 255, represent transparency to graphics already rendered behind a box. 255 means no transparency at all; 0 means full transparency; all other values specify that alpha-blending should be used to mix FrameColor with background pixels colors. Alpha-blending can be used only if the GDI+ graphics engine is enabled.

 See Also