Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > Application Object : BuildPlatform Property
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