Sdílet prostřednictvím


ShapeElement.DoHitTest – metoda (PointD, DiagramHitTestInfo, Boolean)

Vrací true, pokud je zadaný bod uvnitř tvaru.

Obor názvů:  Microsoft.VisualStudio.Modeling.Diagrams
Sestavení:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (v Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)

Syntaxe

'Deklarace
Public Overridable Function DoHitTest ( _
    point As PointD, _
    hitTestInfo As DiagramHitTestInfo, _
    includeTolerance As Boolean _
) As Boolean
public virtual bool DoHitTest(
    PointD point,
    DiagramHitTestInfo hitTestInfo,
    bool includeTolerance
)

Parametry

  • includeTolerance
    Typ: System.Boolean
    True zahrnout hranice oblasti kolem obrazce při provedení testu přístupů; jinak false.

Vrácená hodnota

Typ: System.Boolean
TRUE, pokud byl vybrán tvar; jinak false.

Poznámky

Pokud metoda vrátí hodnotu PRAVDA, znamená hitTestInfo DiagramItem, který skutečně přístupů, které mohou být podřízené obrazce.

Namísto toto volání přímo z příkazu, zvažte přepsání OnClick() nebo OnDoubleClick(), HitTestInfo je součástí událostí argument.

Příklady

public override global::System.Windows.Forms.Cursor GetCursor(global::System.Windows.Forms.Cursor currentCursor, DslDiagrams::DiagramClientView diagramClientView, DslDiagrams::PointD mousePosition)
{
if (this.MouseDownHitShape == null && currentCursor != global::System.Windows.Forms.Cursors.No)
{
DslDiagrams::DiagramHitTestInfo hitTestInfo = new DslDiagrams::DiagramHitTestInfo(diagramClientView);
this.Diagram.DoHitTest(mousePosition, hitTestInfo);
DslDiagrams::ShapeElement shape = hitTestInfo.HitDiagramItem.Shape;
}
return base.GetCursor(currentCursor, diagramClientView, mousePosition);
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

ShapeElement Třída

DoHitTest – přetížení

Microsoft.VisualStudio.Modeling.Diagrams – obor názvů