Spread Windows Forms 10.0 Product Documentation
GetCustomName(String) Method
Example 


Custom name to get
Gets a named expression from the model.
Syntax
'Declaration
 
Public Overloads Function GetCustomName( _
   ByVal name As String _
) As Expression
'Usage
 
Dim instance As DefaultSheetDataModel
Dim name As String
Dim value As Expression
 
value = instance.GetCustomName(name)
public Expression GetCustomName( 
   string name
)

Parameters

name
Custom name to get

Return Value

Expression containing the custom name, or null if none exists
Example
This example illustrates the use of this member by returning a custom name, as expression, from the model.
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
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;
listBox1.Items.Add(dataModel.GetCustomName("TWICESUM").ToString());
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(10, 10)
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
ListBox1.Items.Add(dataModel.GetCustomName("TWICESUM").ToString())
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
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.