Provides data for custom draw events.
Namespace: MindFusion.DataViews
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
// class |
RemarksThe CellCustomDrawEventArgs class provides data for customDrawCell and customDrawHeader events of Grid.
ExampleThe following code handles the customDrawCell event of a Grid, which uses the CellCustomDrawEventArgs class to provide event data.
JavaScript
Copy Code
|
|---|
grid.customDrawCell.addEventListener(function (sender, args) if (args.column === 1) |
Inheritance HierarchyMindFusion.DataViews.EventArgs![]()
MindFusion.DataViews.CellEventArgs
MindFusion.DataViews.CellCustomDrawEventArgs
See Also