GetValues Method
See Also 
SourceCode.SmartObjects.Client Namespace > SmartObjectReader Class : GetValues Method



values
An array of System.Object into which to copy the attribute columns.

Glossary Item Box

Populates an array of objects with the column values of the current row.

Syntax

Visual Basic (Declaration) 
Public Overrides Function GetValues( _
   ByVal values() As Object _
) As Integer
Visual Basic (Usage)Copy Code
Dim instance As SmartObjectReader
Dim values() As Object
Dim value As Integer
 
value = instance.GetValues(values)
C# 
public override int GetValues( 
   object[] values
)
C++/CLI 
public:
int GetValues( 
   array<Object^>^ values
) override 

Parameters

values
An array of System.Object into which to copy the attribute columns.

Return Value

The number of instances of System.Object in the array.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also