DesignIntf.IDesigner60.ModuleFileNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ModuleFileNames(var ImplFileName, IntfFileName, FormFileName: string);

C++

virtual void __fastcall ModuleFileNames(System::UnicodeString &ImplFileName, System::UnicodeString &IntfFileName, System::UnicodeString &FormFileName) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
DesignIntf.pas
DesignIntf.hpp
DesignIntf IDesigner60

Description

Indicates the files associated with the current root object.

Call ModuleFileNames to obtain the names of files that contain information about the current root object.

ImplFileName is the source code file that contains the root object's implementation.

IntfFileName is the file that contains the root object's declaration. In Delphi, this is usually the same as ImplFileName. In C++ this is usually the header file for ImplFileName.

FormFileName is the form file (.dfm or .xfm) for the root object.

See Also