DataGridColumn.ClipboardContentBinding Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets or sets the binding that provides access to cell contents for clipboard operations.
Namespace: System.Windows.Controls
Assembly: System.Windows.Controls.Data (in System.Windows.Controls.Data.dll)
Syntax
'Declaration
Public Overridable Property ClipboardContentBinding As Binding
public virtual Binding ClipboardContentBinding { get; set; }
<sdk:dataGridColumn ClipboardContentBinding="bindingExpression"/>
XAML Values
sdk:dataGridColumn
Typically, sdk:DataGridTextColumn, sdk:DataGridCheckBoxColumn, or sdk:DataGridTemplateColumn.bindingExpression
A Binding markup extension usage that references a particular property to bind for cell content and clipboard access.
Property Value
Type: System.Windows.Data.Binding
The binding that provides access to cell contents for clipboard operations.
Remarks
The value for the ClipboardContentBinding is automatically determined from the binding for the DataGridColumn. Set the ClipboardContentBinding property if you want to override this behavior.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also