Difference between revisions of "CALicense::CanUseOptimizer"

(Created page with "<< Back to CALicense = property bool CALicense::CanUseOptimizer = Indicates whether your ADE license allows your models to make use of the Optimizer. I...")
 
(Marked this version for translation)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[CALicense|<< Back to CALicense]]
+
[[Category:ADE User Guide]]
 
+
[[ADE User Guide]] > [[ADE Server Class Reference]] > [[CALicense]]
= property bool [[CALicense]]::CanUseOptimizer =
+
<languages />
 +
<translate>
 +
= property bool [[CALicense]]::CanUseOptimizer = <!--T:1-->
  
 +
<!--T:2-->
 
Indicates whether your [[ADE]] license allows your models to make use of the Optimizer. If you don’t have this ability, then models that use [[DefineOptimization]] or other functions that require the Optimizer edition functions cannot perform those optimizations within [[ADE]]. This flag makes it possible to detect that limitation before actually starting your application.
 
Indicates whether your [[ADE]] license allows your models to make use of the Optimizer. If you don’t have this ability, then models that use [[DefineOptimization]] or other functions that require the Optimizer edition functions cannot perform those optimizations within [[ADE]]. This flag makes it possible to detect that limitation before actually starting your application.
  
== Data type ==
+
== Data type == <!--T:3-->
  
 +
<!--T:4-->
 
Boolean
 
Boolean
  
== Access ==
+
== Access == <!--T:5-->
  
 +
<!--T:6-->
 
read
 
read
  
= Example usage =
+
= Example usage = <!--T:7-->
  
  CALicense license = new ADE.CALicense();
+
  <!--T:8-->
 +
CALicense license = new ADE.CALicense();
 
  if (license.CanUseOptimizer) { ... }
 
  if (license.CanUseOptimizer) { ... }
  
= See Also =
+
= See Also = <!--T:9-->
 +
</translate>

Latest revision as of 01:27, 16 June 2015

ADE User Guide > ADE Server Class Reference > CALicense

Other languages:
English • ‎中文

property bool CALicense::CanUseOptimizer

Indicates whether your ADE license allows your models to make use of the Optimizer. If you don’t have this ability, then models that use DefineOptimization or other functions that require the Optimizer edition functions cannot perform those optimizations within ADE. This flag makes it possible to detect that limitation before actually starting your application.

Data type

Boolean

Access

read

Example usage

CALicense license = new ADE.CALicense();
if (license.CanUseOptimizer) { ... }

See Also

Comments


You are not allowed to post comments.