18 instantiations of Format
System.Windows.Forms (18)
winforms\Managed\System\WinForms\DataFormats.cs (18)
228
formatList[formatCount] = new
Format
(format, formatId);
276
formatList[formatCount] = new
Format
(s.ToString(), id);
328
new
Format
(UnicodeText, NativeMethods.CF_UNICODETEXT),
329
new
Format
(Text, NativeMethods.CF_TEXT),
330
new
Format
(Bitmap, NativeMethods.CF_BITMAP),
331
new
Format
(MetafilePict, NativeMethods.CF_METAFILEPICT),
332
new
Format
(EnhancedMetafile, NativeMethods.CF_ENHMETAFILE),
333
new
Format
(Dif, NativeMethods.CF_DIF),
334
new
Format
(Tiff, NativeMethods.CF_TIFF),
335
new
Format
(OemText, NativeMethods.CF_OEMTEXT),
336
new
Format
(Dib, NativeMethods.CF_DIB),
337
new
Format
(Palette, NativeMethods.CF_PALETTE),
338
new
Format
(PenData, NativeMethods.CF_PENDATA),
339
new
Format
(Riff, NativeMethods.CF_RIFF),
340
new
Format
(WaveAudio, NativeMethods.CF_WAVE),
341
new
Format
(SymbolicLink, NativeMethods.CF_SYLK),
342
new
Format
(FileDrop, NativeMethods.CF_HDROP),
343
new
Format
(Locale, NativeMethods.CF_LOCALE)
13 references to Format
System.Windows.Forms (13)
winforms\Managed\System\WinForms\DataFormats.cs (10)
188
private static
Format
[] formatList;
200
/// <para>Gets a <see cref='System.Windows.Forms.DataFormats.
Format
'/> with the Windows Clipboard numeric ID and name for the specified format.</para>
202
public static
Format
GetFormat(string format) {
235
/// <para>Gets a <see cref='System.Windows.Forms.DataFormats.
Format
'/> with the Windows Clipboard numeric
238
public static
Format
GetFormat(int id) {
251
private static
Format
InternalGetFormat(string strName, ushort id) {
292
Format
[] newList = new
Format
[newSize];
326
formatList = new
Format
[] {
387
/// <para>Initializes a new instance of the <see cref='System.Windows.Forms.DataFormats.
Format
'/> class and specifies whether a
winforms\Managed\System\WinForms\RichTextBox.cs (3)
1798
public bool CanPaste(DataFormats.
Format
clipFormat) {
2701
public void Paste(DataFormats.
Format
clipFormat) {
2712
private void PasteUnsafe(DataFormats.
Format
clipFormat, int hIcon) {