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


name
Name of the custom name to remove

Glossary Item Box

Removes a custom name in the model scope.

Syntax

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

Parameters

name
Name of the custom name to remove

Example

This example uses the RemoveModelScopeCustomName method.
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
dataModel.AddModelScopeCustomName("TWICESUM", new FarPoint.CalcEngine.DoubleExpression(10), "test");
dataModel.SetFormula(1, 1, "TWICESUM");
fpSpread1.ActiveSheet.Models.Data = dataModel;
//dataModel.RemoveModelScopeCustomName("TWICESUM");
VB.NETCopy Code
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(10, 10)
dataModel.AddModelScopeCustomName("TWICESUM", New FarPoint.CalcEngine.DoubleExpression(10), "test")
dataModel.SetFormula(1, 1, "TWICESUM")
FpSpread1.ActiveSheet.Models.Data = dataModel
'dataModel.RemoveModelScopeCustomName("TWICESUM")

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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