Property VLCommonFilter.TVLTransparency.TransparentSource
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 TransparentSource : TVLTransparentSource read FTransparentSource write SetTransparentSource default tsTopLeft;
C++ Builder:
__property TVLTransparentSource TransparentSource = { read=FTransparentSource, write=SetTransparentSource, default=tsTopLeft };
Summary
Specifies the location of the pixel for the transparent color. Specifies if the Alpha channel will be used for the transparency.
Description
Use this property to specify the location of the pixel for
the transparent color.
Use this property to specify if the Alpha channel will be
used for the transparency.
Delphi example:
VLImageGen1.Transparency.TransparentSource := tsTopLeft;
C++ Builder example:
VLImageGen1->Transparency->TransparentSource := tsTopLeft;
Visual C++(MFC) example:
VLImageGen1.Transparency.TransparentSource := tsTopLeft;
Visual C++/CLI example:
imageGen1->Transparency->TransparentSource = Mitov::VideoLab::TransparentSource::TopLeft;
C# example:
imageGen1.Transparency.TransparentSource = Mitov.VideoLab.TransparentSource.TopLeft;
VB example:
ImageGen1.Transparency.TransparentSource = Mitov.VideoLab.TransparentSource.TopLeft