Spread Windows Forms 6.0 Product Documentation
RemoveCustomName Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetDataModel Class : RemoveCustomName Method


name
User-defined custom name to remove

Glossary Item Box

Removes a named expression from the model.

Syntax

Visual Basic (Declaration) 
Public Sub RemoveCustomName( _
   ByVal name As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetDataModel
Dim name As String
 
instance.RemoveCustomName(name)
C# 
public void RemoveCustomName( 
   string name
)

Parameters

name
User-defined custom name to remove

Example

Visual BasicCopy Code
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(10, 10)
Dim dlg As DialogResult
dataModel.AddCustomName("TWICESUM", "2*SUM(A1,A2)", 1, 1)
dataModel.SetFormula(1, 1, "TWICESUM")
dataModel.SetValue(0, 0, 10)
dataModel.SetValue(1, 0, 10)
FpSpread1.ActiveSheet.Models.Data = dataModel
dlg = MessageBox.Show("Do you want to remove a custom name??", "RemoveCustomName", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
dataModel.RemoveCustomName("TWICESUM")
dataModel.RecalculateAll()
End If
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
DialogResult dlg;
dataModel.AddCustomName("TWICESUM", "2*SUM(A1,A2)", 1, 1);
dataModel.SetFormula(1, 1, "TWICESUM");
dataModel.SetValue(0, 0, 10);
dataModel.SetValue(1, 0, 10);
fpSpread1.ActiveSheet.Models.Data = dataModel;
dlg = MessageBox.Show("Do you want to remove a custom name??", "RemoveCusotmName", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
dataModel.RemoveCustomName("TWICESUM");
dataModel.RecalculateAll();
}

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.