PowerTools SPREAD for Windows Forms 8.0J
SetCustomNameComment メソッド (SheetView)


コメントを追加するカスタム名の名前。
追加するコメント。
true の場合はモデルスコープに追加します。false の場合は、共有するカスタム名に追加します。
指定したカスタム名にコメントを追加します。
構文
'Declaration
 
Public Function SetCustomNameComment( _
   ByVal name As String, _
   ByVal comment As String, _
   ByVal sheetViewScope As Boolean _
) As Boolean
'使用法
 
Dim instance As SheetView
Dim name As String
Dim comment As String
Dim sheetViewScope As Boolean
Dim value As Boolean
 
value = instance.SetCustomNameComment(name, comment, sheetViewScope)
public bool SetCustomNameComment( 
   string name,
   string comment,
   bool sheetViewScope
)

パラメータ

name
コメントを追加するカスタム名の名前。
comment
追加するコメント。
sheetViewScope
true の場合はモデルスコープに追加します。false の場合は、共有するカスタム名に追加します。

戻り値の型

コメントが設定された場合は true。それ以外の場合は false。
次のサンプルコードは、SetCustomNameCommentメソッドを使用します。
fpSpread1.ActiveSheet.AddCustomName("Alpha", new FarPoint.CalcEngine.DoubleExpression(20), false, "Extra information");
fpSpread1.ActiveSheet.SetFormula(1, 1, "Alpha");
fpSpread1.ActiveSheet.SetCustomNameComment("Alpha", "New information", false);
listBox1.Items.Add(fpSpread1.ActiveSheet.GetCustomName("Alpha", false));
listBox1.Items.Add(fpSpread1.ActiveSheet.GetCustomName("Alpha", 0, 0, false));
listBox1.Items.Add(fpSpread1.ActiveSheet.GetCustomNameComment("Alpha", false));
FpSpread1.ActiveSheet.AddCustomName("Alpha", New FarPoint.CalcEngine.DoubleExpression(20), False, "Extra information")
FpSpread1.ActiveSheet.SetFormula(1, 1, "Alpha"
FpSpread1.ActiveSheet.SetCustomNameComment("Alpha", "New information", False)
ListBox1.Items.Add(FpSpread1.ActiveSheet.GetCustomName("Alpha", False))
ListBox1.Items.Add(FpSpread1.ActiveSheet.GetCustomName("Alpha", 0, 0, False))
ListBox1.Items.Add(FpSpread1.ActiveSheet.GetCustomNameComment("Alpha", False))
参照

SheetView クラス
SheetView メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.