DataRegionOrdinals Constructor |
Namespace:
Dundas.BI.Data.DataRetrieval
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public DataRegionOrdinals(
int topLeftColumnOrdinal,
int topLeftRowOrdinal,
int bottomRightColumnOrdinal,
int bottomRightRowOrdinal
)
Public Sub New (
topLeftColumnOrdinal As Integer,
topLeftRowOrdinal As Integer,
bottomRightColumnOrdinal As Integer,
bottomRightRowOrdinal As Integer
)
public:
DataRegionOrdinals(
int topLeftColumnOrdinal,
int topLeftRowOrdinal,
int bottomRightColumnOrdinal,
int bottomRightRowOrdinal
)
new :
topLeftColumnOrdinal : int *
topLeftRowOrdinal : int *
bottomRightColumnOrdinal : int *
bottomRightRowOrdinal : int -> DataRegionOrdinals
Parameters
- topLeftColumnOrdinal
- Type: SystemInt32
The top left column ordinal. - topLeftRowOrdinal
- Type: SystemInt32
The top left row ordinal. - bottomRightColumnOrdinal
- Type: SystemInt32
The bottom right column ordinal. - bottomRightRowOrdinal
- Type: SystemInt32
The bottom right row ordinal.
Exceptions Exception | Condition |
---|
ArgumentException | topLeftColumnOrdinal or topLeftRowOrdinal are negative
or
bottomRightColumnOrdinal is smaller than topLeftColumnOrdinal
or
bottomRightRowOrdinal is smaller than topLeftRowOrdinal. |
See Also