A form which can be used to specify fill patterns for filling cell ranges with data.
Namespace: MindFusion.Spreadsheet.WinForms
Assembly: MindFusion.Spreadsheet.WinForms.StandardForms
SyntaxC#
Copy Code
|
|---|
public class FillSeriesForm : Form |
Visual Basic
Copy Code
|
|---|
Public Class FillSeriesForm |
RemarksThis form can be used to prompt the user for information about filling worksheet cells with data. To use the form, create an instance of the FillSeriesForm class by providing the target cell range, and call the ShowDialog method. The user's choice can be obtained from the FillType, FillDirection, FillDate, FillStep, FillStop, and FillTrend properties. The following image shows the form:

ExampleThe code below demonstrates how to use the form to fill the cells in an existing worksheet with data.
C#
Copy Code
|
|---|
var form = new FillSeriesForm(cellRange); |
Visual Basic
Copy Code
|
|---|
Dim form = New FillSeriesForm(cellRange) |
Inheritance HierarchySystem.Object![]()
System.MarshalByRefObject![]()
System.ComponentModel.Component![]()
System.Windows.Forms.Control![]()
System.Windows.Forms.ScrollableControl![]()
System.Windows.Forms.ContainerControl![]()
System.Windows.Forms.Form![]()
MindFusion.Spreadsheet.WinForms.FillSeriesForm
See Also