| BuildProcessTransformText Method |
Transform the specified template text by inserting the necessary
values into the place holders tags.
Namespace: SandcastleBuilder.Utils.BuildEngineAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public string TransformText(
string templateText,
params Object[] args
)
Public Function TransformText (
templateText As String,
ParamArray args As Object()
) As String
public:
String^ TransformText(
String^ templateText,
... array<Object^>^ args
)
member TransformText :
templateText : string *
args : Object[] -> string
Parameters
- templateText
- Type: SystemString
The template text to transform - args
- Type: SystemObject
An optional list of arguments to format into the
template before transforming it.
Return Value
Type:
StringThe transformed text
See Also