Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
InkCanvas Class
 PreferredPasteFormats Property

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
InkCanvas..::.PreferredPasteFormats Property

Gets or sets formats that can be pasted onto the InkCanvas.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/xaml/presentation
Visual Basic (Declaration)
Public Property PreferredPasteFormats As IEnumerable(Of InkCanvasClipboardFormat)
Visual Basic (Usage)
Dim instance As InkCanvas
Dim value As IEnumerable(Of InkCanvasClipboardFormat)

value = instance.PreferredPasteFormats

instance.PreferredPasteFormats = value
C#
public IEnumerable<InkCanvasClipboardFormat> PreferredPasteFormats { get; set; }
Visual C++
public:
property IEnumerable<InkCanvasClipboardFormat>^ PreferredPasteFormats {
    IEnumerable<InkCanvasClipboardFormat>^ get ();
    void set (IEnumerable<InkCanvasClipboardFormat>^ value);
}
JScript
public function get PreferredPasteFormats () : IEnumerable<InkCanvasClipboardFormat>
public function set PreferredPasteFormats (value : IEnumerable<InkCanvasClipboardFormat>)
XAML Property Element Usage
<object>
  <object.PreferredPasteFormats>
    InkCanvasClipboardFormats
  </object.PreferredPasteFormats>
</object>

XAML Values

InkCanvasClipboardFormats

An array of InkCanvasClipboardFormat enumeration values. Specifying an array in XAML requires x:Array usage. Specifying an enumeration value as an element that declares an array member requires x:Static usage. For more information, see x:Array Markup Extension and x:Static Markup Extension.

Property Value

Type: System.Collections.Generic..::.IEnumerable<(Of <(InkCanvasClipboardFormat>)>)
A collection of enumeration values. The default is InkSerializedFormat.

The following example sets the PreferredPasteFormats to make the InkCanvas accept Extensible Application Markup Language (XAML) format, Ink Serialized Format (ISF).

Visual Basic
Dim formats() As InkCanvasClipboardFormat = _
                {InkCanvasClipboardFormat.InkSerializedFormat, _
                 InkCanvasClipboardFormat.Xaml}

inkCanvas1.PreferredPasteFormats = formats

C#
InkCanvasClipboardFormat[] formats = new InkCanvasClipboardFormat[]
                            { 
                              InkCanvasClipboardFormat.InkSerializedFormat,
                              InkCanvasClipboardFormat.Xaml
                            };

inkCanvas1.PreferredPasteFormats = formats;

The following example accomplishes the same thing in Extensible Application Markup Language (XAML).

<InkCanvas>
  <InkCanvas.PreferredPasteFormats>
    <x:Array Type="{x:Type InkCanvasClipboardFormat}">
      <x:Static Member="InkCanvasClipboardFormat.Xaml" />
      <x:Static Member="InkCanvasClipboardFormat.InkSerializedFormat" />
    </x:Array>
  </InkCanvas.PreferredPasteFormats>
</InkCanvas>

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.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker