IDTSComponentMetaData100.FireInformation 方法

定义

public:
 void FireInformation(int InformationCode, System::String ^ SubComponent, System::String ^ Description, System::String ^ HelpFile, int HelpContext, [Runtime::InteropServices::Out] bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(128)]
public void FireInformation(int InformationCode, string SubComponent, string Description, string HelpFile, int HelpContext, out bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(128)>]
abstract member FireInformation : int * string * string * string * int * bool -> unit
Public Sub FireInformation (InformationCode As Integer, SubComponent As String, Description As String, HelpFile As String, HelpContext As Integer, ByRef pbFireAgain As Boolean)

参数

InformationCode
Int32

组件定义的信息代码。

SubComponent
String

引发事件的组件名称。

Description
String

信息事件的描述。

HelpFile
String

提供更多信息的帮助文件。

HelpContext
Int32

信息的上下文ID。

pbFireAgain
Boolean

规定该事件未来是否应再次提出。

属性

注解

OnInformation该事件应仅在组件执行时被触发,因为在组件设计过程中信息并未被可见捕获。

pbFireAgain该参数由运行时设置,表示是否有客户端监听事件。 组件在本地存储该参数的值,并应在再次触发事件前评估其值。 如果 pbFireAgain 参数值为 false,则不应触发该事件。

适用于