SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Determines the area at a given location.
VB.NET | Success = object.HitTestV(ByVal x As Single, ByVal y As Single, ByRef Area As Object) As Boolean |
VB | Success = object.HitTestV(ByVal x As Single, ByVal y As Single, Area As Variant) As Boolean |
C#.NET | bool Success = object.HitTestV(float x, float y, out object Area); |
VC++ | VARIANT_BOOL Success = object->HitTestV(float x, float y, const _variant_t&* Area); |
C | HRESULT object->raw_HitTestV(float x, float y, VARIANT* Area, VARIANT_BOOL* Success); |
object
x
An expression that evaluates to the x-coordinate to be tested. The units used depend on the container used (e.g., Visual Basic uses TWIPS by default, Visual C++ uses pixels).
y
An expression that evaluates to the y-coordinate to be tested. The units used depend on the container used (e.g., Visual Basic uses TWIPS by default, Visual C++ uses pixels).
Area
Returns a value describing the area where the coordinates x, y are located.
Name | Value | Description |
---|---|---|
areaSftButtonButton | 0 | The coordinates are located within the button portion. |
areaSftButtonDropDown | 1 | The coordinates are located within the drop down button portion. |
Success
Returns True if the coordinates x, y are located within the control.
The HitTestV method determines the area at a given location.
The general area where the coordinates, described by x, are located in the control (relative to the top, left corner of the control) is returned in Area.
HitTest uses the units native to the container application (e.g., Visual Basic uses TWIPS by default, Visual C++ uses pixels). HitTestPix always uses pixels. HitTestV should be used when using Internet Explorer.
See Also SftButton Object | Object Hierarchy