共用方式為


EventBindingService.IEventBindingService.ShowCode 方法

定義

顯示設計工具的使用者程式碼。

多載

IEventBindingService.ShowCode()

顯示設計工具的使用者程式碼。

IEventBindingService.ShowCode(Int32)

在指定行中顯示設計工具的使用者程式碼。

IEventBindingService.ShowCode(IComponent, EventDescriptor)

顯示指定事件的使用者程式碼。

IEventBindingService.ShowCode()

顯示設計工具的使用者程式碼。

 virtual bool System.ComponentModel.Design.IEventBindingService.ShowCode() = System::ComponentModel::Design::IEventBindingService::ShowCode;
bool IEventBindingService.ShowCode ();
abstract member System.ComponentModel.Design.IEventBindingService.ShowCode : unit -> bool
override this.System.ComponentModel.Design.IEventBindingService.ShowCode : unit -> bool
Function ShowCode () As Boolean Implements IEventBindingService.ShowCode

傳回

如果程式碼已顯示,則為 true,否則為 false

實作

備註

這個成員是明確介面成員實作, 只有在 EventBindingService 執行個體轉換成 IEventBindingService 介面時,才能使用這個成員。

適用於

IEventBindingService.ShowCode(Int32)

在指定行中顯示設計工具的使用者程式碼。

 virtual bool System.ComponentModel.Design.IEventBindingService.ShowCode(int lineNumber) = System::ComponentModel::Design::IEventBindingService::ShowCode;
bool IEventBindingService.ShowCode (int lineNumber);
abstract member System.ComponentModel.Design.IEventBindingService.ShowCode : int -> bool
override this.System.ComponentModel.Design.IEventBindingService.ShowCode : int -> bool
Function ShowCode (lineNumber As Integer) As Boolean Implements IEventBindingService.ShowCode

參數

lineNumber
Int32

要放置插入號 (Caret) 的行數。

傳回

如果程式碼已顯示,則為 true,否則為 false

實作

適用於

IEventBindingService.ShowCode(IComponent, EventDescriptor)

顯示指定事件的使用者程式碼。

 virtual bool System.ComponentModel.Design.IEventBindingService.ShowCode(System::ComponentModel::IComponent ^ component, System::ComponentModel::EventDescriptor ^ e) = System::ComponentModel::Design::IEventBindingService::ShowCode;
bool IEventBindingService.ShowCode (System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
abstract member System.ComponentModel.Design.IEventBindingService.ShowCode : System.ComponentModel.IComponent * System.ComponentModel.EventDescriptor -> bool
override this.System.ComponentModel.Design.IEventBindingService.ShowCode : System.ComponentModel.IComponent * System.ComponentModel.EventDescriptor -> bool
Function ShowCode (component As IComponent, e As EventDescriptor) As Boolean Implements IEventBindingService.ShowCode

參數

component
IComponent

事件所連接的元件。

e
EventDescriptor

要顯示的事件。

傳回

如果程式碼已顯示,則為 true,否則為 false

實作

例外狀況

eventsnull

適用於