TdxBarDBNavButtonType Enum
In This Article
Enumerates button types within a bar’s data-bound navigator.
#Declaration
Delphi
TdxBarDBNavButtonType = (
dxbnFirst,
dxbnPrior,
dxbnNext,
dxbnLast,
dxbnInsert,
dxbnDelete,
dxbnEdit,
dxbnPost,
dxbnCancel,
dxbnRefresh,
dxbnAppend
);
#Members
Name |
---|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
dxbn
|
#Remarks
This type lists the values that correspond to buttons within the navigator.
Click the corresponding button to:
Value | Description |
---|---|
dxbn |
Move the cursor to the first record in a dataset. |
dxbn |
Move the cursor to the previous record. |
dxbn |
Move the cursor to the next record. |
dxbn |
Move the cursor to the last record in a dataset. |
dxbn |
Insert an empty record to a dataset. |
dxbn |
Delete a record from a dataset. |
dxbn |
Enable a dataset’s edit mode. Note that you cannot modify several records simultaneously. |
dxbn |
Apply pending changes to a record. |
dxbn |
Abort a dataset’s edit mode. |
dxbn |
Update a dataset’s view. |
dxbn |
Add an empty record to the end of a dataset. |
The navigator’s VisibleButtons property references the TdxBarDBNavButtonType type.
See Also