Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > Application Object : BuildType Property
BuildType Property
Description
Returns the application's build type. Generally this is "QA" (a build from the development source code) or "Release" (a build from the release source code).
Property type
Read-only property
Syntax
Visual Basic
Public Property BuildType As String
Return Type
Read only String.
Example
In this example, buildType contains the specific build type string. Usually this is "QA" or "Release".
var application = new PCDLRN.Application();
var buildType = application.BuildType;
See Also