Write(Object,Int32) Method
Initiate the process to write the value to the element of the referenced array.
Syntax
'Declaration Public Overloads MustOverride Function Write( _ ByVal value As Object, _ ByVal elementIndex As Integer _ ) As WriteOperationStatus
'Usage Dim instance As DataReference Dim value As Object Dim elementIndex As Integer Dim value As WriteOperationStatus value = instance.Write(value, elementIndex)
public abstract WriteOperationStatus Write( object value, int elementIndex )
public: abstract WriteOperationStatus Write( Object^ value, int elementIndex )
Parameters
- value
- The value to be written
- elementIndex
- The 1-based index of array element (the index of the first element in array is 1)
Return Value
The status of the initiation process
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