Version

SetCellData Method (WinTreeReplayServer)

This function will be recorded when a cell exit edit mode by submitting the updated data to the Value of the cell. on replay it will set the data of the specified cell to the value of newValue
Syntax
'Declaration
 
Public Sub SetCellData( _
   ByVal nodeId As System.String, _
   ByVal cellKey As System.String, _
   ByVal newValue As System.String _
) 
public void SetCellData( 
   System.string nodeId,
   System.string cellKey,
   System.string newValue
)

Parameters

nodeId
is the node path. A chain of '\' back slash separated node indexes.
cellKey
is the column key associated with the cell.
newValue
is a string representation of the new value of the specified cell.
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