CreateDate.Month Property

 

Gets or sets the month value.

Namespace:   Microsoft.Activities.Expressions
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Syntax

[RequiredArgumentAttribute]
[DependsOnAttribute("Year")]
public InArgument<int> Month {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[RequiredArgumentAttribute]
[DependsOnAttribute("Year")]
property InArgument<int>^ Month {
    [CompilerGeneratedAttribute]
    InArgument<int>^ get();
    [CompilerGeneratedAttribute]
    void set(InArgument<int>^ value);
}
[<RequiredArgumentAttribute>]
[<DependsOnAttribute("Year")>]
member Month : InArgument<int> with get, set
<RequiredArgumentAttribute>
<DependsOnAttribute("Year")>
Public Property Month As InArgument(Of Integer)

Property Value

Type: System.Activities.InArgument<Int32>

Returns the month value.

See Also

CreateDate Class
Microsoft.Activities.Expressions Namespace

Return to top