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