Difference between revisions of "CAEngine::DefaultRenderingStyle"

(Marked this version for translation)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[CAEngine|<< class CAEngine]]
+
<languages />
 +
<translate>
 +
<!--T:1-->
 +
[[Category:ADE User Guide]]
 +
[[ADE User Guide]] > [[ADE Server Class Reference]] > [[CAEngine]]
  
= Description =
+
= Description = <!--T:2-->
  
 +
<!--T:3-->
 
The default [[CARenderingStyle|rendering style]] controlling how result values are returned from ADE.  All [[CAObject]] instances inherit this rendering style when they are created.
 
The default [[CARenderingStyle|rendering style]] controlling how result values are returned from ADE.  All [[CAObject]] instances inherit this rendering style when they are created.
  
 +
<!--T:4-->
 
Although these settings determine the [[CARenderingStyle|rendering style]] defaults, the settings for any [[CAObject]] or [[CATable]] can be specialized further using [[CAObject::RenderingStyle]] or [[CATable::RenderingStyle]].
 
Although these settings determine the [[CARenderingStyle|rendering style]] defaults, the settings for any [[CAObject]] or [[CATable]] can be specialized further using [[CAObject::RenderingStyle]] or [[CATable::RenderingStyle]].
  
= Data Type =
+
= Data Type = <!--T:5-->
  
 +
<!--T:6-->
 
[[CARenderingStyle]]
 
[[CARenderingStyle]]
  
= Access =
+
= Access = <!--T:7-->
  
 +
<!--T:8-->
 
This is a read/write property.  However, you don't usually set the property itself (if you do, you would assign it a [[CARenderingStyle]] object instance, but rather you normally set the properties of the [[CARenderingStyle]] object it points to.
 
This is a read/write property.  However, you don't usually set the property itself (if you do, you would assign it a [[CARenderingStyle]] object instance, but rather you normally set the properties of the [[CARenderingStyle]] object it points to.
  
= Example Usage =
+
= Example Usage = <!--T:9-->
  
  CAEngine ade = new CAEngine;
+
  <!--T:10-->
 +
CAEngine ade = new CAEngine;
 
  ade.DefaultRenderingStyle.GeneralExpression = false;
 
  ade.DefaultRenderingStyle.GeneralExpression = false;
  
= When to use =
+
= When to use = <!--T:11-->
  
 +
<!--T:12-->
 
Set this when you want to ensure an application-wide default behavior for all results values.
 
Set this when you want to ensure an application-wide default behavior for all results values.
  
= See Also =
+
= See Also = <!--T:13-->
  
* class [[CARenderingStyle]]
+
<!--T:14-->
 +
* class [[CARenderingStyle]] -- this shows all the properties that can be set.
 
* [[CAEngine::DefaultDefTableRenderingStyle]] -- global default for [[CAObject::DefTable|DefTable]]s.
 
* [[CAEngine::DefaultDefTableRenderingStyle]] -- global default for [[CAObject::DefTable|DefTable]]s.
 
* [[CAObject::Evaluate]], [[CAObject::Result]], [[CATable::AtomicValue]], [[CATable::GetDataByElements]], [[CATable::GetDataByLabels]], [[CATable::GetSafeArray]]
 
* [[CAObject::Evaluate]], [[CAObject::Result]], [[CATable::AtomicValue]], [[CATable::GetDataByElements]], [[CATable::GetDataByLabels]], [[CATable::GetSafeArray]]
 +
</translate>

Latest revision as of 22:21, 11 June 2015

Other languages:
English • ‎中文

ADE User Guide > ADE Server Class Reference > CAEngine

Description

The default rendering style controlling how result values are returned from ADE. All CAObject instances inherit this rendering style when they are created.

Although these settings determine the rendering style defaults, the settings for any CAObject or CATable can be specialized further using CAObject::RenderingStyle or CATable::RenderingStyle.

Data Type

CARenderingStyle

Access

This is a read/write property. However, you don't usually set the property itself (if you do, you would assign it a CARenderingStyle object instance, but rather you normally set the properties of the CARenderingStyle object it points to.

Example Usage

CAEngine ade = new CAEngine;
ade.DefaultRenderingStyle.GeneralExpression = false;

When to use

Set this when you want to ensure an application-wide default behavior for all results values.

See Also

Comments


You are not allowed to post comments.