[Read-only] This property returns the file system path and file name of the current (open) HotDocs library as a String value.
string CurrentLibraryPath [ get ]
The following Visual C# example displays a message box containing the file name and path of the current HotDocs library.
public class ExampleCode { static void Main() { HotDocs.Application app = new HotDocs.Application(); app.Visible = true; MessageBox.Show("Current Library File and Path: " + app.CurrentLibraryPath); } }