ConnectorHitTestInfo コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ConnectorHitTestInfo クラスの新しいインスタンスを初期化します。
public:
ConnectorHitTestInfo(System::Workflow::ComponentModel::Design::CompositeActivityDesigner ^ compositeActivityDesigner, System::Workflow::ComponentModel::Design::HitTestLocations flags, int connector);
public ConnectorHitTestInfo (System.Workflow.ComponentModel.Design.CompositeActivityDesigner compositeActivityDesigner, System.Workflow.ComponentModel.Design.HitTestLocations flags, int connector);
new System.Workflow.ComponentModel.Design.ConnectorHitTestInfo : System.Workflow.ComponentModel.Design.CompositeActivityDesigner * System.Workflow.ComponentModel.Design.HitTestLocations * int -> System.Workflow.ComponentModel.Design.ConnectorHitTestInfo
Public Sub New (compositeActivityDesigner As CompositeActivityDesigner, flags As HitTestLocations, connector As Integer)
パラメーター
- compositeActivityDesigner
- CompositeActivityDesigner
コネクタが含まれる CompositeActivityDesigner。
- flags
- HitTestLocations
ユーザーがクリックしたコネクタ上の場所を定義する HitTestLocations。
- connector
- Int32
クリックされたコネクタのインデックス識別子。
例外
コンストラクター呼び出しの前に、コネクタのインデックスが 0 未満に設定されていました。
例
CompositeActivityDesigner クラスから派生したデザイナーの新しい分岐の追加の例を、次に示します。
CanInsertActivities が true
を返した場合、InsertActivities メソッドを使用して新しい分岐が作成されます。
ConnectorHitTestInfo メソッドのパラメーターとして、InsertActivities オブジェクトが作成されます。 これが完了すると、EnsureVisibleContainedDesigner メソッドが使用され、新しく追加された分岐がワークフロー デザイナーに表示されるようになります。
protected override CompositeActivity OnCreateNewBranch()
{
return new ParallelIfBranch();
}
Protected Overrides Function OnCreateNewBranch() As CompositeActivity
Return New ParallelIfBranch()
End Function
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET