Difference between revisions of "CAIndex::IndexElements"

(Marked this version for translation)
 
Line 3: Line 3:
 
<languages />
 
<languages />
 
<translate>
 
<translate>
= property int IndexElements =
+
= property int IndexElements = <!--T:1-->
  
 +
<!--T:2-->
 
Returns the number of elements in the index.
 
Returns the number of elements in the index.
  
== Data type ==
+
== Data type == <!--T:3-->
  
 +
<!--T:4-->
 
integer
 
integer
  
== Access ==
+
== Access == <!--T:5-->
  
 +
<!--T:6-->
 
read
 
read
  
= Usage =
+
= Usage = <!--T:7-->
  
== C# ==
+
== C# == <!--T:8-->
  
  [[CATable]] tab = ade.[[CAEngine::Get|Get]]("Y").[[CAObject::ResultTable|ResultTable]];
+
  <!--T:9-->
 +
[[CATable]] tab = ade.[[CAEngine::Get|Get]]("Y").[[CAObject::ResultTable|ResultTable]];
 
  [[CAIndex]] theIndex = tab.[[CATable::GetIndexObject|GetIndexObject]]("I");
 
  [[CAIndex]] theIndex = tab.[[CATable::GetIndexObject|GetIndexObject]]("I");
 
  x = theIndex.IndexElements;
 
  x = theIndex.IndexElements;
  
= See Also =
+
= See Also = <!--T:10-->
  
 +
<!--T:11-->
 
* [[CATable::GetIndexObject]]
 
* [[CATable::GetIndexObject]]
 
</translate>
 
</translate>

Latest revision as of 01:17, 16 June 2015

ADE User Guide > ADE Server Class Reference > CAIndex

Other languages:
English • ‎中文

property int IndexElements

Returns the number of elements in the index.

Data type

integer

Access

read

Usage

C#

CATable tab = ade.Get("Y").ResultTable;
CAIndex theIndex = tab.GetIndexObject("I");
x = theIndex.IndexElements;

See Also

Comments


You are not allowed to post comments.