BuildPlatform Property
Description
Returns the build platform (x64 or x86) for the PC-DMIS application.
Property type
Read-only property
Syntax
Visual Basic |
---|
Public Property BuildPlatform As String |
Return Type
Read only String.
Example
In this example, buildPlatform gets the string value of either "x64" or "x86".
var application = new PCDLRN.Application(); var buildPlatform = application.BuildPlatform;
See Also