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