IBuildProcessLoad Method
Load a help file builder project from the given filename unrelated to the current build process
Namespace: Sandcastle.Core.BuildEngineAssembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2025.9.30.0
ISandcastleProject Load(
string filename,
bool mustExist,
bool useFinalValues
)
Function Load (
filename As String,
mustExist As Boolean,
useFinalValues As Boolean
) As ISandcastleProject
ISandcastleProject^ Load(
String^ filename,
bool mustExist,
bool useFinalValues
)
abstract Load :
filename : string *
mustExist : bool *
useFinalValues : bool -> ISandcastleProject
- filename String
- The project to load
- mustExist Boolean
- Specify true if the file must exist or false if a new project should be
created if the file does not exist.
- useFinalValues Boolean
- True to use final evaluated property values, or false to use the
unevaluated property values. For builds, this should always be true. If loading the project for
editing, it should always be false.
ISandcastleProjectA reference to the loaded help file builder project
| ArgumentException | This is thrown if a filename is not specified or if it does not
exist and mustExist is true. |