Back to X64dbg

GuiReferenceSetProgress

docs/developers/functions/gui/GuiReferenceSetProgress.md

2026.04.201.3 KB
Original Source

GuiReferenceSetProgress

Sets the progress bar in the Reference View instance to a specific percentage value. This can be used to indicate to the user an operation is occurring, e.g. searching/sorting etc.

c++
void GuiReferenceSetProgress(int progress);

Parameters

progress An integer representing the percentage value to set the progress bar to.

Return Value

This function does not return a value.

Example

c++
GuiReferenceSetProgress(0);
// do something
GuiReferenceSetProgress(50);
// do something else
GuiReferenceSetProgress(100);
// tell user operation has ended