共用方式為


IEventBindingService.ShowCode 方法

定義

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

多載

ShowCode()

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

ShowCode(Int32)

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

ShowCode(IComponent, EventDescriptor)

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

ShowCode()

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

public:
 bool ShowCode();
public bool ShowCode ();
abstract member ShowCode : unit -> bool
Public Function ShowCode () As Boolean

傳回

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

備註

這個方法會顯示程式代碼編輯器。

適用於

ShowCode(Int32)

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

public:
 bool ShowCode(int lineNumber);
public bool ShowCode (int lineNumber);
abstract member ShowCode : int -> bool
Public Function ShowCode (lineNumber As Integer) As Boolean

參數

lineNumber
Int32

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

傳回

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

備註

這個方法會顯示程式代碼編輯器,並將游標放在指定的行上。

適用於

ShowCode(IComponent, EventDescriptor)

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

public:
 bool ShowCode(System::ComponentModel::IComponent ^ component, System::ComponentModel::EventDescriptor ^ e);
public bool ShowCode (System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
abstract member ShowCode : System.ComponentModel.IComponent * System.ComponentModel.EventDescriptor -> bool
Public Function ShowCode (component As IComponent, e As EventDescriptor) As Boolean

參數

component
IComponent

事件所連接的元件。

e
EventDescriptor

要顯示的事件。

傳回

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

備註

這個方法會顯示程式代碼編輯器,並將游標放在所指定事件宣告所在的行上。

適用於