Property VLCommonFilter.TVLTransparency.UseWithAlphaChannel
From Mitov Wiki Doc
				
				
				
				
																
				
				
								
				This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLTransparency
| Contents | 
Syntax
Delphi:
property UseWithAlphaChannel : Boolean read FUseWithAlphaChannel write SetUseWithAlphaChannel default True;
C++ Builder:
__property bool UseWithAlphaChannel = { read=FUseWithAlphaChannel,  write=SetUseWithAlphaChannel,  default=True };
Summary
Specifies if the Alpha channel will be used for the transparency.
Description
Use this property to specify if the Alpha channel will be
used for the transparency.
Delphi example:
VLImageGen1.Transparency.UseWithAlphaChannel := True;
C++ Builder example:
VLImageGen1->Transparency->UseWithAlphaChannel := true;
Visual C++(MFC) example:
VLImageGen1.Transparency.UseWithAlphaChannel := true;
Visual C++/CLI example:
imageGen1->Transparency->UseWithAlphaChannel = System::Drawing::KnownColor::Red;
C# example:
imageGen1.Transparency.UseWithAlphaChannel = System.Drawing.KnownColor.Red;
VB example:
ImageGen1.Transparency.UseWithAlphaChannel = System.Drawing.KnownColor.Red
