Property VLFreeFrame.TVLFreeFrame.FilterFileName
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: TVLFreeFrame
Contents |
Syntax
Delphi:
property FilterFileName : String read FFilterFileName write SetFilterFileName;
C++ Builder:
__property String FilterFileName = { read=FFilterFileName, write=SetFilterFileName };
Summary
File Name of the FreeFrame Plug-In.
Description
Use this property to specify the File Name of the FreeFrame
Plug-In to be used by the filter.
Delphi example:
VLFreeFrame1.FilterFileName := '..\FreeFrame\PlugIns\AlphaTrail.dll';
C++ Builder example:
VLFreeFrame1->FilterFileName = "..\\\FreeFrame\\\PlugIns\\\AlphaTrail.dll";
Visual C++ MFC example:
VLFreeFrame1.FilterFileName = "..\\\FreeFrame\\\PlugIns\\\AlphaTrail.dll";
Visual C++/CLI example:
freeFrame1->FilterFileName = "..\\\FreeFrame\\\PlugIns\\\AlphaTrail.dll";
C# example:
freeFrame1.FilterFileName = "..\\\FreeFrame\\\PlugIns\\\AlphaTrail.dll";
VB example:
FreeFrame1.FilterFileName = "..\FreeFrame\PlugIns\AlphaTrail.dll"