DataGridViewRowHeaderCell.GetClipboardContent 方法

定义

检索要复制到 Clipboard 的单元格的已设置格式的值。

protected:
 override System::Object ^ GetClipboardContent(int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, System::String ^ format);
protected override object GetClipboardContent (int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format);
protected override object? GetClipboardContent (int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format);
override this.GetClipboardContent : int * bool * bool * bool * bool * string -> obj
Protected Overrides Function GetClipboardContent (rowIndex As Integer, firstCell As Boolean, lastCell As Boolean, inFirstRow As Boolean, inLastRow As Boolean, format As String) As Object

参数

rowIndex
Int32

包含该单元格的行从零开始的索引。

firstCell
Boolean

若单元格位于由选定单元格定义的区域的第一列,则为 true;否则为 false

lastCell
Boolean

若单元格位于由选定单元格定义的区域的最后一列,则为 true;否则为 false

inFirstRow
Boolean

若单元格位于由选定单元格定义的区域的第一行,则为 true;否则为 false

inLastRow
Boolean

如果该单元格位于选定单元格所定义区域内的最后一行中,则为 true;否则为 false

format
String

单元格的当前格式字符串。

返回

Object,它表示要复制到 Clipboard 的单元格的值。

例外

rowIndex 小于零,或者大于或等于控件中的行数。

注解

根据控件的 ClipboardCopyModeDataGridView 属性的值,此方法由控件的 GetClipboardContent 方法调用,以检索表示单元格的剪贴板格式的值。

此方法的位置相关参数指示此单元格在数据表中的位置,该数据表表示控件中 DataGridView 选定单元格定义的区域。 根据单元格的位置,除单元格值外,此方法可能还会返回格式设置信息。 例如,行第一列中单元格的 HTML 格式将包含指示行开头的 标记。

支持的剪贴板格式包括 DataFormats.TextDataFormats.UnicodeTextDataFormats.HtmlDataFormats.CommaSeparatedValue

有关更多信息,请参见 Clipboard 类。

适用于

另请参阅