ToString
CString ToString()
Description
Converts the CDocBuilderValue
object to a string.
Please note, that for the
.docbuilder
file theCDocBuilderValue.ToString
method is not used.
Example
C++
std::wstring sWorkDirectory = NSUtils::GetBuilderDirectory();
CDocBuilder::Initialize(sWorkDirectory.c_str());
CDocBuilder oBuilder;
CValue oGlobal = oContext.GetGlobal();
CValue oGlobal = oContext.GetGlobal();
CString sGlobal = oGlobal.ToString();
CDocBuilder::Dispose();