Spread Windows Forms 8.0 Product Documentation > Developer's Guide > Customizing Interaction in Cells > Using the Additional Spread Controls > Setting up the Name Box |
You can use the name box control to display or create custom names at run time. Custom names that are created by the name box can only refer to a cell or a range of cells.
Select the name box control from the Toolbox and draw it on the form or use the NameBox class to create the control at runtime.
Attach the control to Spread.
To create a custom name, select a cell or range of cells in the Spread control, type a custom name in the name box control, and then press the equal key to create the custom name.
Use the drop-down list in the name box control to display the custom names. You can select one of the names to see the cell or cell range that the name refers to.
Create the name box and attach it to the control.
This example code creates a name box control and a custom name.
C# |
Copy Code
|
---|---|
fpSpread1.ActiveSheet.AddCustomName("Alpha", "A1:B1", 0, 0); FarPoint.Win.Spread.NameBox namebox1 = new FarPoint.Win.Spread.NameBox(); |
VB |
Copy Code
|
---|---|
FpSpread1.ActiveSheet.AddCustomName("Alpha", "A1:B1", 0, 0) Dim namebox1 As New FarPoint.Win.Spread.NameBox() |