Gets or sets the format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Gets or sets the format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.")>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.BindableAttribute(Bindable=True, Direction=BindingDirection.OneWay)>
Public Property MonthDayPattern As System.String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As DateTimeFormatInfoWrapper
Dim value As System.String
instance.MonthDayPattern = value
value = instance.MonthDayPattern |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets the format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public System.string MonthDayPattern {get; set;} |
Delphi | |
---|
public read-write property MonthDayPattern: System.String; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Gets or sets the format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.")
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.BindableAttribute(Bindable=, Direction=BindingDirection.OneWay)
public function get,set MonthDayPattern : System.String |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets the format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public: __property System.string* get_MonthDayPattern();
public: __property void set_MonthDayPattern(
System.string* value
); |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets the format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public:
property System.String^ MonthDayPattern {
System.String^ get();
void set ( System.String^ value);
} |
Property Value
The format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also