ITextTemplatingEngineHost.LoadIncludeText(String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Acquires the text that corresponds to a request to include a partial text template file.
public:
bool LoadIncludeText(System::String ^ requestFileName, [Runtime::InteropServices::Out] System::String ^ % content, [Runtime::InteropServices::Out] System::String ^ % location);
public bool LoadIncludeText (string requestFileName, out string content, out string location);
abstract member LoadIncludeText : string * string * string -> bool
Public Function LoadIncludeText (requestFileName As String, ByRef content As String, ByRef location As String) As Boolean
Parameters
- requestFileName
- String
The name of the partial text template file to acquire.
- location
- String
A String that contains the location of the acquired text. If the host searches the registry for the location of include files or if the host searches multiple locations by default, the host can return the final path of the include file in this parameter. The host can set the location
to Empty if the file could not be found or if the host is not file-system based.
Returns
true to indicate that the host was able to acquire the text; otherwise, false.