IRecord Interface
Defines the methods that must be implemented to extend UFT recording.
Object Model
IRecord Interface
Syntax
'Declaration
 
Public Interface IRecord 
public interface IRecord 
Remarks

All the Interface methods have a default implementation in CustomServerBase. To extend UFT's recording capabilities, override the default implementation of the members of this interface.

Recording can be performed by hooking the control's window messages and/or by listening to control events.

Public Methods
 NameDescription
MethodGetWndMessageFilterReturns the filter for window messages received by the Custom object.  
MethodInitEventListenerRegisters event handlers.  
MethodOnMessageHandles window messages.  
MethodReleaseEventListenerCall at the end of the recording session to stop listening for events.  
Top