EventBindingService.IEventBindingService.ShowCode メソッド

定義

デザイナーのユーザー コードを表示します。

オーバーロード

名前 説明
IEventBindingService.ShowCode()

デザイナーのユーザー コードを表示します。

IEventBindingService.ShowCode(Int32)

デザイナーのユーザー コードを指定した行に表示します。

IEventBindingService.ShowCode(IComponent, EventDescriptor)

指定したイベントのユーザー コードを表示します。

IEventBindingService.ShowCode()

ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs

デザイナーのユーザー コードを表示します。

 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)

ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs

デザイナーのユーザー コードを指定した行に表示します。

 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

キャレットを配置する行番号。

返品

true コードが表示される場合は〘。それ以外の場合は false

実装

適用対象

IEventBindingService.ShowCode(IComponent, EventDescriptor)

ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs
ソース:
EventBindingService.cs

指定したイベントのユーザー コードを表示します。

 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

実装

例外

enullです。

適用対象