Gets or sets a value which determines if the message is a draft.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Draft As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ImapMessage
Dim value As Boolean
instance.Draft = value
value = instance.Draft |
| C# | |
|---|
public bool Draft {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property bool get_Draft();
public: __property void set_Draft(
bool value
); |
| C++/CLI | |
|---|
public:
property bool Draft {
bool get();
void set ( bool value);
} |
Property Value
If the message's Draft flag is set, this property returns true; otherwise false.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also