EventBindingService.ShowCode 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
顯示使用者程式碼。
多載
ShowCode() |
顯示使用者程式碼。 |
ShowCode(Int32) |
顯示指定行號處的使用者程式碼。 |
ShowCode(IComponent, EventDescriptor, String) |
顯示指定方法的使用者程式碼。 |
ShowCode()
ShowCode(Int32)
顯示指定行號處的使用者程式碼。
protected:
abstract bool ShowCode(int lineNumber);
protected abstract bool ShowCode (int lineNumber);
abstract member ShowCode : int -> bool
Protected MustOverride Function ShowCode (lineNumber As Integer) As Boolean
參數
- lineNumber
- Int32
要顯示的行號。
傳回
如果可以顯示程式碼,則為 true
,否則為 false
。
備註
行號是以單一為基礎。
適用於
ShowCode(IComponent, EventDescriptor, String)
顯示指定方法的使用者程式碼。
protected:
abstract bool ShowCode(System::ComponentModel::IComponent ^ component, System::ComponentModel::EventDescriptor ^ e, System::String ^ methodName);
protected abstract bool ShowCode (System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e, string methodName);
abstract member ShowCode : System.ComponentModel.IComponent * System.ComponentModel.EventDescriptor * string -> bool
Protected MustOverride Function ShowCode (component As IComponent, e As EventDescriptor, methodName As String) As Boolean
參數
- component
- IComponent
方法繫結至的元件。
事件處理常式的 EventDescriptor。
- methodName
- String
要顯示程式碼的方法名稱。
傳回
如果可以顯示程式碼,則為 true
,否則為 false
。
備註
方法 ShowCode 會顯示具有指定方法名稱的用戶程式代碼主體。