Spread Windows Forms 9.0 Product Documentation
RemoveModelScopeCustomName Method (DefaultSheetDataModel)
Example 


Name of the custom name to remove
Removes a custom name in the model scope.
Syntax
'Declaration
 
Public Sub RemoveModelScopeCustomName( _
   ByVal name As String _
) 
'Usage
 
Dim instance As DefaultSheetDataModel
Dim name As String
 
instance.RemoveModelScopeCustomName(name)
public void RemoveModelScopeCustomName( 
   string name
)

Parameters

name
Name of the custom name to remove
Example
This example uses the RemoveModelScopeCustomName method.
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");
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 Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

DefaultSheetDataModel Class
DefaultSheetDataModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.