SetText メソッド (String, String, Boolean)
指定した名前の Annotation を、指定した String 値に設定します。NULL 参照に設定されている場合は、名前付き注釈を削除するために使用することもできます。
名前空間: Microsoft.AnalysisServices
アセンブリ: Microsoft.AnalysisServices (Microsoft.AnalysisServices.dll)
構文
'宣言
Public Sub SetText ( _
name As String, _
text As String, _
removeIfNull As Boolean _
)
'使用
Dim instance As AnnotationCollection
Dim name As String
Dim text As String
Dim removeIfNull As Boolean
instance.SetText(name, text, removeIfNull)
public void SetText(
string name,
string text,
bool removeIfNull
)
public:
void SetText(
String^ name,
String^ text,
bool removeIfNull
)
member SetText :
name:string *
text:string *
removeIfNull:bool -> unit
public function SetText(
name : String,
text : String,
removeIfNull : boolean
)
パラメーター
- name
型: System. . :: . .String
追加する Annotation の名前です。
- text
型: System. . :: . .String
name で識別される Annotation に設定する値です。
- removeIfNull
型: System. . :: . .Boolean
true に設定すると、text が NULL 参照 (Visual Basic では Nothing) に設定されている場合に、name で指定した Annotation をコレクションから削除します。false の場合、削除は行われません。