Class DataGridRowClipboardEventArgs
This class encapsulates a selected row's information necessary for the CopyingRowClipboardContent event.
Inheritance
System.Object
System.EventArgs
DataGridRowClipboardEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.Controls.Data.dll
Syntax
public class DataGridRowClipboardEventArgs : EventArgs
Properties
| Improve this Doc View SourceClipboardRowContent
This list should be used to modify, add ot remove a cell content before it gets stored into the clipboard.
Declaration
public List<DataGridClipboardCellContent> ClipboardRowContent { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DataGridClipboardCellContent> |
IsColumnHeadersRow
This property is true when the ClipboardRowContent represents column headers, in which case the Item is null.
Declaration
public bool IsColumnHeadersRow { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Item
DataGrid row item used for proparing the ClipboardRowContent.
Declaration
public object Item { get; }
Property Value
Type | Description |
---|---|
System.Object |