Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets a value indicating whether the ListObject should attempt to add the item again.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
Syntax
'Declaration
Public Property Retry As Boolean
'Usage
Dim instance As ErrorAddDataBoundRowEventArgs
Dim value As Boolean
value = instance.Retry
instance.Retry = value
public bool Retry { get; set; }
public:
property bool Retry {
bool get ();
void set (bool value);
}
public function get Retry () : boolean
public function set Retry (value : boolean)
Property Value
Type: System.Boolean
true if another attempt should be made; otherwise, false. The default value is false.
Remarks
If the ListObject encounters an error when attempting to add the new row, the ErrorAddDataBoundRow event is raised. The developer can handle this event and attempt to fix any errors that occur.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
ErrorAddDataBoundRowEventArgs Class