Factory.CreateFormRegionCustomAction Method

Definition

Overloads

CreateFormRegionCustomAction()

Creates an instance of a class that implements the FormRegionCustomAction interface with a default name.

CreateFormRegionCustomAction(String)

Creates an instance of a class that implements the FormRegionCustomAction class by using the specified name.

CreateFormRegionCustomAction()

Creates an instance of a class that implements the FormRegionCustomAction interface with a default name.

public:
 Microsoft::Office::Tools::Outlook::FormRegionCustomAction ^ CreateFormRegionCustomAction();
public Microsoft.Office.Tools.Outlook.FormRegionCustomAction CreateFormRegionCustomAction ();
abstract member CreateFormRegionCustomAction : unit -> Microsoft.Office.Tools.Outlook.FormRegionCustomAction
Public Function CreateFormRegionCustomAction () As FormRegionCustomAction

Returns

A FormRegionCustomAction that represents a custom action.

Applies to

CreateFormRegionCustomAction(String)

Creates an instance of a class that implements the FormRegionCustomAction class by using the specified name.

public:
 Microsoft::Office::Tools::Outlook::FormRegionCustomAction ^ CreateFormRegionCustomAction(System::String ^ name);
public Microsoft.Office.Tools.Outlook.FormRegionCustomAction CreateFormRegionCustomAction (string name);
abstract member CreateFormRegionCustomAction : string -> Microsoft.Office.Tools.Outlook.FormRegionCustomAction
Public Function CreateFormRegionCustomAction (name As String) As FormRegionCustomAction

Parameters

name
String

A string that represents the name of the custom action.

Returns

A FormRegionCustomAction that represents a custom action.

Remarks

This method sets the Name property of the FormRegionCustomAction to name.

Applies to