Get/set the number of seconds to timeout generating a report. If the report takes longer than this amount of time, it will throw a TimeoutException. A time of 0 means there is no timeout. The default is 0. The count starts when you call processSetup but will only throw the exception in processData and processComplete.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Timeout As Integer |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As Report
Dim value As Integer
instance.Timeout = value
value = instance.Timeout |
| C# | |
|---|
public int Timeout {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property int get_Timeout();
public: __property void set_Timeout(
int value
); |
| C++/CLI | |
|---|
public:
property int Timeout {
int get();
void set ( int value);
} |
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP, Windows Vista, Windows Server 2003 family
See Also