Sets a file path that is used to search for resources like images or hypertext links. This path replaces all absolute file paths used in the document.

Syntax

public string ImageSearchPath { get; set; }
Public Property ImageSearchPath() As String

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.ImageSearchPath' property. Here, it is set to an imaginary path of the type 'string'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
ls.ImageSearchPath = "C:/Users/Bob/Images";
//...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
ls.ImageSearchPath = "C:/Users/Bob/Images"
'...