'KCMLGetChromiumShimVersion(szVersion$, Length)

Arguments

STR()szVersion$[out]
INT()Length[in]

Returns

Syntax

The following definition is built into KCML. You do not have to include it in your own code.

$DECLARE 'KCMLGetChromiumShimVersion(RETURN STR(), INT())

Remarks

This function returns version information about the wrpper for the Chromium Embedded web control (if installed)

To get version information about the Chromium browser itself use KCMLGetChromiumVersion.

Example

	LOCAL DIM Version$
	LOCAL DIM VersionLen
	REM Get the length required to hold the version string
	REM VersionLen will be zero if Chromium is not installed
	VersionLen = 'KCMLGetChromiumShimVersion(NULL, 0)
	if (VersionLen)
		REM Allocate the string and get the version
		MAT REDIM Version$VerLen
		'KCMLGetChromiumShimVersion(Version$, VerLen)
	END IF

Further Information

IntroducedKCML 7.14
CompatibilityKClient

See Also

KCMLAddNotifyIcon, KCMLDeferHiddenControls, KCMLDlgMessageBox, KCMLEnableBufferKeys, KCMLEnableDropdownPreFill, KCMLEnableModalPopups, KCMLForceChromium, KCMLGetBufferKeys, KCMLGetChromiumVersion, GetLocalTime, KCMLGetWindow, KCMLHideErrorDialogs, KCMLHookIEOCX, MessageBox, KCMLRemoveNotifyIcon, KCMLSetBrowserDebugPort, KCMLSetBufferKeyBreakKey, KCMLSetBufferKeyTimeout, KCMLSetBufferKeys, KCMLSetCenturyThreshold, KCMLSetChromiumAcceptLang, KCMLSetDollarConvert, KCMLSetHTMLCtrlRelativeURL, KCMLSetTitleTemplate, KCMLTouchScreenMode

Index of internal $DECLARE functions