The OnOpening event is called during the document is opening.
Syntax
Browser.OnOpening(
Integer pos,
Integer max)
Integer pos,
Integer max)
Parameters
| pos | Current position. |
|---|---|
| max | Maximum position. |
Return value
The OnOpening event has no return values.
Example
message Application.Browser.OnOpening(Integer pos, Integer max)
{
// Progress bar range value: 0-100
m_progress.SetValue(pos/max*100)
}
{
// Progress bar range value: 0-100
m_progress.SetValue(pos/max*100)
}