FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : RemoveCustomName メソッド |
オーバーロード | 説明 |
---|---|
RemoveCustomName(String,Boolean) | このシートのモデルからカスタム名を削除します。 |
RemoveCustomName(String) | このシートのモデルからカスタム名を削除します。 |
DialogResult dlg; fpSpread1.ActiveSheet.SetValue(0, 0, 20); fpSpread1.ActiveSheet.SetValue(1, 0, 100); fpSpread1.ActiveSheet.AddCustomName("Alpha", "Sum(A1,A2)", 1, 1); fpSpread1.ActiveSheet.SetFormula(1, 1, "Alpha"); dlg = MessageBox.Show("Do you want to remove the custom name?", "RemoveCustomName", MessageBoxButtons.YesNo); if (dlg == DialogResult.Yes) { fpSpread1.ActiveSheet.RemoveCustomName("Alpha"); fpSpread1.ActiveSheet.RecalculateAll(); }
Dim dlg As DialogResult FpSpread1.ActiveSheet.SetValue(0, 0, 20) FpSpread1.ActiveSheet.SetValue(1, 0, 100) FpSpread1.ActiveSheet.AddCustomName("Alpha", "Sum(A1,A2)", 1, 1) FpSpread1.ActiveSheet.SetFormula(1, 1, "Alpha") dlg = MessageBox.Show("Do you want to remove the custom name?", "RemoveCustomName", MessageBoxButtons.YesNo) If dlg = DialogResult.Yes Then FpSpread1.ActiveSheet.RemoveCustomName("Alpha") FpSpread1.ActiveSheet.RecalculateAll() End If