Share via


InkClipboardFormats Enumeration

Defines values that specify the format of ink that is stored on the Clipboard. This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
<FlagsAttribute> _
Public Enumeration InkClipboardFormats
'Usage
Dim instance As InkClipboardFormats
[FlagsAttribute]
public enum InkClipboardFormats
[FlagsAttribute]
public enum class InkClipboardFormats
public enum InkClipboardFormats

Members

Member name Description
None Specifies a flag that can be used to verify whether any formats are present by checking against it.
InkSerializedFormat Specifies ink is encoded in Ink Serialized Format (ISF). This is the most compact persistent representation of ink. Although it often contains only ink data, Ink Serialized Format (ISF) is extensible. Applications can set custom attributes (identified by a globally unique identifier (GUID)) on an Ink object, stroke, or point. This allows an application to store any kind of data or metadata it requires as an attribute in an Ink Serialized Format (ISF) stream.
SketchInk Specifies ink is not expected to form words, but rather is interpreted as a picture. This is also useful for representing multiple words.
TextInk Specifies ink is expected to form words. It allows the ink to be converted to text. The recognized text is either the alternate with the greatest confidence rating or another alternate chosen from a list. This is useful for representing a single word.

This format includes the SketchInk format.

EnhancedMetafile Specifies the enhanced metafile to play to create the background. The metafile must remain valid for as long as it is used to render the ink background.
Metafile Specifies ink is stored as a metafile or a list of commands that can be played back to draw a graphic.
Bitmap Specifies the bitmap to use as the background. The bitmap device context must remain valid for as long as it is used to render the ink background.
PasteMask Specifies the formats that can be used for pasting.

This format includes the TextInk, SketchInk, and InkSerializedFormat formats.

CopyMask Specifies the formats that are copied to the Clipboard through ink.
Default The CopyMask format.

Remarks

For more information about the sketch ink and text ink objects, see sInk and tInk Objects.

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

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

Microsoft.Ink Namespace

Ink.ClipboardCopy

InkClipboardModes