Difference between revisions of "CALicense::CanUseOptimizer"

(Marked this version for translation)
 
Line 3: Line 3:
 
<languages />
 
<languages />
 
<translate>
 
<translate>
= property bool [[CALicense]]::CanUseOptimizer =
+
= 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>
 
</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.