GetAll Method (SystemAttributeGroup)
- Last UpdatedMar 17, 2026
- 1 minute read
The GetAll() method retrieves one or more system attribute group records from the System_Attr_Grp table, as specified by the filter parameters. Passing no filter parameters will retrieve all system attribute group records from the table.
'Declaration
Public Shared Function GetAll( _
ByVal groupId As Nullable(Of Integer), _
ByVal groupDescription As String, _
ByVal sequenceNumber As Nullable(Of Integer) _
) As DataSet
'Usage
Dim groupId As Nullable(Of Integer)
Dim groupDescription As String
Dim sequenceNumber As Nullable(Of Integer)
Dim value As DataSet
value = SystemAttributeGroup.GetAll(groupId, groupDescription, sequenceNumber)
public static DataSet GetAll(
Nullable<int> groupId,
string groupDescription,
Nullable<int> sequenceNumber
)
Parameters
- groupId
- Optional filter parameter. Holds the ID of a system attribute group.
- groupDescription
- Optional filter parameter. Holds the description of a system attribute group.
- sequenceNumber
- Optional filter parameter. Holds the sequence number of a system attribute group.
Return Value
Returns a DataSet that contains the records in the System_Attr table that satisfy the specified filters. If no matching records are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
Column Name |
Description |
|---|---|
|
grp_id |
An integer that is the ID of the attribute group. |
|
grp_desc |
A string that is the description of the attribute group. |
|
grp_seq |
An integer that is the sequence number of the attribute group. |