Version

GetColumnContent Method (WinComboRecordReplayServer)

Returns all of the items in the specified column.
Syntax
'Declaration
 
Public Function GetColumnContent( _
   ByVal column As System.String _
) As System.String
public System.string GetColumnContent( 
   System.string column
)

Parameters

column
The column key or caption to return values for.

Return Value

The returned string contains a list of all values for the specified column separated by line feed characters.
Remarks
To retreive a column content using the column key you can pass the columnkey as string or in the following format "K;[column key]".

To use the column caption you will have to use "T" as the control character and pass in the column caption text as follow "T;[column caption]" If the column key is "ManagerID", caption is "Report to:". all option below will return the same:

GetColumnContent("ManagerID")GetColumnContent("K;ManagerID")GetColumnContent("T;Report to:")
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