DragDropHelper.GetCompositeView Method
Definition
Retrieves the composite view information.
Overloads
GetCompositeView(WorkflowViewElement) |
Retrieves the composite view information from the specified workflow view element. |
GetCompositeView(DragEventArgs) |
Obsolete.
Retrieves the composite view information from the specified drag event arguments. |
GetCompositeView(WorkflowViewElement)
Retrieves the composite view information from the specified workflow view element.
public:
static System::Windows::UIElement ^ GetCompositeView(System::Activities::Presentation::WorkflowViewElement ^ workflowViewElement);
public static System.Windows.UIElement GetCompositeView (System.Activities.Presentation.WorkflowViewElement workflowViewElement);
static member GetCompositeView : System.Activities.Presentation.WorkflowViewElement -> System.Windows.UIElement
Public Shared Function GetCompositeView (workflowViewElement As WorkflowViewElement) As UIElement
Parameters
- workflowViewElement
- WorkflowViewElement
The WorkflowViewElement that supplies the composite view data.
Returns
An element that contains user interface data.
Applies to
GetCompositeView(DragEventArgs)
Caution
This method does not support dragging multiple items. Use
Retrieves the composite view information from the specified drag event arguments.
public:
static System::Activities::Presentation::ICompositeView ^ GetCompositeView(System::Windows::DragEventArgs ^ e);
public static System.Activities.Presentation.ICompositeView GetCompositeView (System.Windows.DragEventArgs e);
[System.Obsolete("This method does not support dragging multiple items. Use "public static UIElement GetCompositeView(WorkflowViewElement workflowViewElement)" instead.")]
public static System.Activities.Presentation.ICompositeView GetCompositeView (System.Windows.DragEventArgs e);
static member GetCompositeView : System.Windows.DragEventArgs -> System.Activities.Presentation.ICompositeView
[<System.Obsolete("This method does not support dragging multiple items. Use "public static UIElement GetCompositeView(WorkflowViewElement workflowViewElement)" instead.")>]
static member GetCompositeView : System.Windows.DragEventArgs -> System.Activities.Presentation.ICompositeView
Public Shared Function GetCompositeView (e As DragEventArgs) As ICompositeView
Parameters
An event raised when the user performs a drag operation.
Returns
The composite view information.
- Attributes