1 instantiation of Format
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataFormats.Format.cs (1)
35
static Format IDataFormat<Format>.Create(string name, int id) =>
new
(name, id);
13 references to Format
System.Windows.Forms (13)
GlobalUsings.cs (3)
23
System.Windows.Forms.DataFormats.
Format
>;
25
System.Windows.Forms.DataFormats.
Format
>;
28
System.Windows.Forms.DataFormats.
Format
>;
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1597
public bool CanPaste(DataFormats.
Format
clipFormat)
2578
public void Paste(DataFormats.
Format
clipFormat)
System\Windows\Forms\OLE\DataFormats.cs (4)
124
/// Gets a <see cref="
Format
"/> with the Windows Clipboard numeric ID and name for the specified format.
126
public static
Format
GetFormat(string format)
133
/// Gets a <see cref="
Format
"/> with the Windows Clipboard numeric ID and name for the specified ID.
135
public static
Format
GetFormat(int id) => DataFormatsCore.GetOrAddFormat(id);
System\Windows\Forms\OLE\DataFormats.Format.cs (4)
19
public class Format : IDataFormat<
Format
>
22
/// Initializes a new instance of the <see cref="
Format
"/> class and
35
static
Format
IDataFormat<
Format
>.Create(string name, int id) => new(name, id);