Freigeben über


PropertyGuidsForContextNodes.ShapeName-Feld

Gibt die GUID (Globally Unique Identifier) zum Abrufen der String an, die den Formnamen in einer Freihandzeichnung darstellt.

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Syntax

'Declaration
Public Shared ReadOnly ShapeName As Guid
'Usage
Dim value As Guid

value = PropertyGuidsForContextNodes.ShapeName
public static readonly Guid ShapeName
public:
static initonly Guid ShapeName
public static final Guid ShapeName
public static final var ShapeName : Guid

Hinweise

Das ShapeName-Feld stellt den Namen der Form in einem ContextNode vom Typ InkDrawing dar. Zurzeit unterstützt die InkAnalysis-API die folgenden Formnamen:

  • Ellipse

  • Circle (Kreis)

  • Triangle (Dreieck)

  • IsoscelesTriangle (Gleichschenkliges Dreieck)

  • EquilateralTriangle (Gleichseitiges Dreieck)

  • RightTriangle (Rechtwinkliges Dreieck)

  • Quadrilateral (Viereck)

  • Rectangle (Rechteck)

  • Square (Quadrat)

  • Diamond (Rhombus)

  • Trapezoid (Trapez)

  • Parallelogram (Parallelogramm)

  • Pentagon (Fünfeck)

  • Hexagon (Sechseck)

Beispiele

Im folgenden Beispiel wird überprüft, ob in der ContainsPropertyData-Methode eines AnalysisHintNode ein ShapeName existiert. Wenn das ShapeName-Feld vorhanden ist, füllen die zurückgegebenen Eigenschaftsdaten vom Typ StringmyShapeName auf.

' Get the name of the shape on an ink drawing
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.ShapeName) Then

    Dim myShapeName As String = _
        CStr(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.ShapeName))
End If
// Get the name of the shape on an ink drawing
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.ShapeName))
{
    string myShapeName =
        (string)myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.ShapeName);
}

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

PropertyGuidsForContextNodes-Klasse

PropertyGuidsForContextNodes-Member

System.Windows.Ink-Namespace