Share via


ContextNode.GetPropertyData Method

Returns application-specific data that was added with the specified identifier.

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

Syntax

'Declaration
Public Function GetPropertyData ( _
    propertyDataId As Guid _
) As Object
'Usage
Dim instance As ContextNode 
Dim propertyDataId As Guid 
Dim returnValue As Object 

returnValue = instance.GetPropertyData(propertyDataId)
public Object GetPropertyData(
    Guid propertyDataId
)
public:
Object^ GetPropertyData(
    Guid propertyDataId
)
public function GetPropertyData(
    propertyDataId : Guid
) : Object

Parameters

  • propertyDataId
    Type: System.Guid

    The identifier for the data.

Return Value

Type: System.Object
The application-specific data that was added with the specified identifier.

Remarks

In addition to application-specific data, you can also use this method to get internal data previously stored with the identifiers described by the PropertyGuidsForAnalysisHints and PropertyGuidsForContextNodes classes.

Examples

This example looks for a property added with the Guid named timeStampGuid. It then adds the value into the Content property of a Label named timeStampLabel.

If inkWord.ContainsPropertyData(Me.timeStampGuid) Then 
    Dim timeStamp As DateTime = CType(inkWord.GetPropertyData(Me.timeStampGuid), DateTime)
    timeStampLabel.Content = timeStamp.ToShortTimeString()
End If
if (inkWord.ContainsPropertyData(this.timeStampGuid))
{
    DateTime timeStamp =
        (DateTime)inkWord.GetPropertyData(this.timeStampGuid);
    timeStampLabel.Content = timeStamp.ToShortTimeString();
}

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

ContextNode Class

ContextNode Members

System.Windows.Ink Namespace

System.Windows.Ink.PropertyGuidsForAnalysisHints

System.Windows.Ink.PropertyGuidsForContextNodes

ContextNode.AddPropertyData

ContextNode.ContainsPropertyData

ContextNode.RemovePropertyData

ContextNode.SavePropertiesData

ContextNode.LoadPropertiesData