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.
public string ImageSearchPath { get; set; }
Public Property ImageSearchPath() As String
This example shows a simple variant of how to use the 'TXText
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"
'...