 | CDBWRITEiGetChanArraySize Method |
Get the number of columns of data in a channel.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic int iGetChanArraySize(
int chan
)
public int iGetChanArraySize(
int chan
)
Public Function iGetChanArraySize (
chan As Integer
) As Integer
Public Function iGetChanArraySize (
chan As Integer
) As Integer
public:
int iGetChanArraySize(
int chan
)
public:
int iGetChanArraySize(
int chan
)
member iGetChanArraySize :
chan : int -> int
member iGetChanArraySize :
chan : int -> int
Parameters
- chan
- Type: SystemInt32
Index of channel to access.
Return Value
Type:
Int32The number of columns (array size) for a channel
Remarks
Regular channels have one column of data. Array channels have more than one column of data.
This function should be called to determine whether to use GetVV_DBWRITE or GetVA_DBWRITE to access data
for a channel.
See Also