FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > ICustomNameSupport Interface : GetCustomNameEnumerator Method |
'Declaration Function GetCustomNameEnumerator() As IEnumerator
'Usage Dim instance As ICustomNameSupport Dim value As IEnumerator value = instance.GetCustomNameEnumerator()
IEnumerator GetCustomNameEnumerator()
System.Collections.IEnumerator se; FarPoint.Web.Spread.Model.ICustomNameSupport cns; cns = FpSpread1.ActiveSheetView.DataModel; cns.AddCustomName("ALPHA", "SUM(A1,A2)", 1, 1); cns.AddCustomName("GAMMA", "A1*A2", 2, 2); FpSpread1.ActiveSheetView.SetFormula(1, 1, "ALPHA"); FpSpread1.ActiveSheetView.SetFormula(2, 2, "GAMMA"); FpSpread1.ActiveSheetView.SetValue(0, 0, 10); FpSpread1.ActiveSheetView.SetValue(1, 0, 10); se = cns.GetCustomNameEnumerator(); Response.Write((new Object[] {se.MoveNext().ToString(), se.Current().ToString()}));
Dim se As System.Collections.IEnumerator Dim cns As FarPoint.Web.Spread.Model.ICustomNameSupport cns = FpSpread1.ActiveSheetView.DataModel cns.AddCustomName("ALPHA", "SUM(A1,A2)", 1, 1) cns.AddCustomName("GAMMA", "A1*A2", 2, 2) FpSpread1.ActiveSheetView.SetFormula(1, 1, "ALPHA") FpSpread1.ActiveSheetView.SetFormula(2, 2, "GAMMA") FpSpread1.ActiveSheetView.SetValue(0, 0, 10) FpSpread1.ActiveSheetView.SetValue(1, 0, 10) se = cns.GetCustomNameEnumerator() Response.Write((New Object() {se.MoveNext().ToString(), se.Current().ToString()}))
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional