DataGridViewClipboardCopyMode 枚举     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义常数,指示是否将内容从 DataGridView 控件复制到剪贴板。
public enum class DataGridViewClipboardCopyMode
	public enum DataGridViewClipboardCopyMode
	type DataGridViewClipboardCopyMode = 
	Public Enum DataGridViewClipboardCopyMode
		- 继承
 
字段
| Disable | 0 | 禁用“复制到剪贴板”。  | 
			
| EnableAlwaysIncludeHeaderText | 3 | 可以将所选单元格的文本值复制到剪贴板。 为所选单元格所在的行和列包含标题文本。  | 
			
| EnableWithAutoHeaderText | 1 | 可以将所选单元格的文本值复制到剪贴板。 仅当 SelectionMode 属性设置为 RowHeaderSelect 或 ColumnHeaderSelect,并且至少选择了一个标题时,才为所选单元格所在的行或列包含行或列标题文本。  | 
			
| EnableWithoutHeaderText | 2 | 可以将所选单元格的文本值复制到剪贴板。 不包含标题文本。  | 
			
示例
下面的代码示例演示如何在控件中 DataGridView 启用复制。 有关完整示例,请参阅如何:让用户从 Windows 窗体 DataGridView 控件将多个单元格复制到剪贴板。
private void Form1_Load(object sender, System.EventArgs e)
{
    // Initialize the DataGridView control.
    this.DataGridView1.ColumnCount = 5;
    this.DataGridView1.Rows.Add(new string[] { "A", "B", "C", "D", "E" });
    this.DataGridView1.Rows.Add(new string[] { "F", "G", "H", "I", "J" });
    this.DataGridView1.Rows.Add(new string[] { "K", "L", "M", "N", "O" });
    this.DataGridView1.Rows.Add(new string[] { "P", "Q", "R", "S", "T" });
    this.DataGridView1.Rows.Add(new string[] { "U", "V", "W", "X", "Y" });
    this.DataGridView1.AutoResizeColumns();
    this.DataGridView1.ClipboardCopyMode = 
        DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
}
private void CopyPasteButton_Click(object sender, System.EventArgs e)
{
    if (this.DataGridView1
        .GetCellCount(DataGridViewElementStates.Selected) > 0)
    {
        try
        {
            // Add the selection to the clipboard.
            Clipboard.SetDataObject(
                this.DataGridView1.GetClipboardContent());
            
            // Replace the text box contents with the clipboard text.
            this.TextBox1.Text = Clipboard.GetText();
        }
        catch (System.Runtime.InteropServices.ExternalException)
        {
            this.TextBox1.Text = 
                "The Clipboard could not be accessed. Please try again.";
        }
    }
}
Private Sub Form1_Load(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Me.Load
    ' Initialize the DataGridView control.
    Me.DataGridView1.ColumnCount = 5
    Me.DataGridView1.Rows.Add(New String() {"A", "B", "C", "D", "E"})
    Me.DataGridView1.Rows.Add(New String() {"F", "G", "H", "I", "J"})
    Me.DataGridView1.Rows.Add(New String() {"K", "L", "M", "N", "O"})
    Me.DataGridView1.Rows.Add(New String() {"P", "Q", "R", "S", "T"})
    Me.DataGridView1.Rows.Add(New String() {"U", "V", "W", "X", "Y"})
    Me.DataGridView1.AutoResizeColumns()
    Me.DataGridView1.ClipboardCopyMode = _
        DataGridViewClipboardCopyMode.EnableWithoutHeaderText
End Sub
Private Sub CopyPasteButton_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles CopyPasteButton.Click
    If Me.DataGridView1.GetCellCount( _
        DataGridViewElementStates.Selected) > 0 Then
        Try
            ' Add the selection to the clipboard.
            Clipboard.SetDataObject( _
                Me.DataGridView1.GetClipboardContent())
            ' Replace the text box contents with the clipboard text.
            Me.TextBox1.Text = Clipboard.GetText()
        Catch ex As System.Runtime.InteropServices.ExternalException
            Me.TextBox1.Text = _
                "The Clipboard could not be accessed. Please try again."
        End Try
    End If
End Sub
	注解
此属性使用此 ClipboardCopyMode 枚举来指示用户是否可以将所选单元格的文本值复制到剪贴板,以及是否包含行和列标题文本。