Search
Table.FillColorAlpha Property
See Also
 



Gets or sets a value defining the transparency of the table fill color.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
short get_FillColorAlpha ()
void put_FillColorAlpha (
    short value
)

 Property Value

A byte value. Initialized with FlowChart.TableFillColorAlpha.

 Remarks

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

If you need to apply semi-transparency to all graphics elements of the node, set the Opacity property instead.

 See Also