Returns an array of object properties in the tableview.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public Array GetMultipleRowColumns(
	int startIndex,
	int numberOfObjects
)
Visual Basic
Public Function GetMultipleRowColumns ( _
	startIndex As Integer, _
	numberOfObjects As Integer _
) As Array
Visual C++
public:
Array^ GetMultipleRowColumns(
	int startIndex, 
	int numberOfObjects
)

Parameters

startIndex
Type: System..::..Int32
The index of the first object.
numberOfObjects
Type: System..::..Int32
The number of rows to retrieve. If -1 then the method will return all rows.

Return Value

An array of object properties.

Remarks

Each row is an array of values.
  • 0: The ID property value of the object.
  • 1: The ClassID of the object.
  • 2: The Name property value of the object.
  • 3: The DisplayName property value of the object.
  • n: The property values defined when creating the tableview.

See Also