CustomObjectViewerParseObject Method |
This function will be called when a fit table object is viewing and the type of the object is registered as "custom view".
the object will be passed and the CustomViewExtension must show the object in a visual way.
Namespace:
Hummingbird.TestFramework.Extensibility
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public abstract void ParseObject(
Object o
)
Public MustOverride Sub ParseObject (
o As Object
)
public:
virtual void ParseObject(
Object^ o
) abstract
abstract ParseObject :
o : Object -> unit
Parameters
- o
- Type: SystemObject
the object will be passed to this CustomViewExtension, the type of the object will be the same as specified on ObjectTypes
See Also