VerificationServerBase Class
The base class for the custom table verification server.
Object Model
VerificationServerBase Class
Remarks

A custom server that supports table checkpoints and output values must implement the following methods in the derived class:

  • GetTableColNames
  • GetTableRowRange
  • GetTableData

Syntax
'Declaration
 
Public MustInherit Class VerificationServerBase 
public abstract class VerificationServerBase 
Inheritance Hierarchy

System.Object
   Mercury.QTP.CustomServer.VerificationServerBase

Protected Properties
 NameDescription
Protected PropertyFirstRowReturns the number of the first grid row in the table checkpoint or output value.  
Protected PropertyLastRowReturns the number of the last grid row in the table checkpoint or output value.  
Protected PropertySourceControlReturns the grid control attached to this server.  
Top
Public Methods
 NameDescription
Public MethodGetColNamesThis method supports the UFT infrastructure. Do not call it directly in your code.  
Public MethodGetDataThis method supports the UFT infrastructure. Do not call it directly in your code.  
Public MethodGetRowsRangeThis method supports the UFT infrastructure. Do not call it directly in your code.  
Public MethodSetRowsRangeThis method supports the UFT infrastructure. Do not call it directly in your code.  
Public MethodSetTargetControlHandleThis method supports the UFT infrastructure. Do not call it directly in your code.  
Top
Protected Methods
 NameDescription
Protected MethodGetTableColNamesReturns the column names.  
Protected MethodGetTableDataReturns the values of the cells in the checkpoint or output value area.  
Protected MethodGetTableRowRangeGets the indexes of the first and last visible rows, and the table row count.  
Top