EDI Integrator 2016 C++ Edition
EDI Integrator 2016 C++ Edition
Questions / Feedback?

ElementSchemaName Property

The name of the element as taken from the schema.

Syntax

char* GetElementSchemaName(int iElementIndex);

Default Value

""

Remarks

The name of the element as taken from the schema.

ElementName holds positional (ref) value like "N101". ElementSchemaName holds the Id taken from the schema.

For instance:

reader.XPath = "/IX/FG/TX/N1Loop1[1]/N1";
for (int i = 0; i < reader.XElements.Count; i++)
{ 
  Console.WriteLine(reader.XElements[i].SchemaName + ": " + reader.XElements[i].Value);
}

When ElementSchemaName is used this will use the name from the schema and will output values like:

98: ST
93: BUYSNACKS PORT
66: 9
67: 1223334445

In contrast, if ElementName was used the output would look like:


N101: ST
N102: BUYSNACKS PORT
N103: 9
N104: 1223334445

Note: This property is only applicable when a RSSBus JSON schema is loaded.

The size of the array is controlled by the ElementCount property.

This property is read-only and not available at design time.

Data Type

String

 
 
Copyright (c) 2019 /n software inc. - All rights reserved.
EDI Integrator 2016 C++ Edition - Version 16.0 [Build 7240]