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.HitTestPix(ByVal xPix As Integer, ByVal yPix As Integer, ByRef Area As SftMaskAreaConstants) As Boolean |
VB | Success = object.HitTestPix(ByVal xPix As Long, ByVal yPix As Long, Area As SftMaskAreaConstants) As Boolean |
C#.NET | bool Success = object.HitTestPix(int xPix, int yPix, out SftMaskAreaConstants Area); |
VC++ | VARIANT_BOOL Success = object->HitTestPix(long xPix, long yPix, enum SftMaskAreaConstants* Area); |
C | HRESULT object->raw_HitTestPix(long xPix, long yPix, enum SftMaskAreaConstants* Area, VARIANT_BOOL* Success); |
object
xPix
An expression that evaluates to the x coordinate to be tested.
yPix
An expression that evaluates to the y coordinate to be tested.
Area
Returns the area description where the coordinates x, y are located.
Area | Value | Description |
---|---|---|
areaSftMaskCaption | 0 | Caption area |
areaSftMaskEdit | 1 | Edit control (i.e., the editable portion of the control) |
areaSftMaskSpin | 2 | Up/down buttons |
areaSftMaskDropDown | 3 | Drop down button |
areaSftMaskEllipse | 4 | Ellipse button |
Success
Returns True if the coordinates xPix, yPix are located in the control.
The HitTestPix method determines the area at a given location.
The general area where the coordinates described by xPix, yPix are located in the control (relative to the top, left corner of the control) is returned in Area.
HitTestV is used for languages such as VBScript, which are limited by requiring Variant arguments and do not support strongly typed arguments for return values. For more information please see Using SftMask/OCX with Internet Explorer.
See Also SftMask Object | Object Hierarchy