BCExtensionPageControlShown Event |
Occurs when the page is displayed.
Namespace: BlueCieloECM.InnoCielo.Meridian.DesignAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax public event EventHandler<PageShowEventArgs> Shown
Public Event Shown As EventHandler(Of PageShowEventArgs)
public:
event EventHandler<PageShowEventArgs^>^ Shown {
void add (EventHandler<PageShowEventArgs^>^ value);
void remove (EventHandler<PageShowEventArgs^>^ value);
}
member Shown : IEvent<EventHandler<PageShowEventArgs>,
PageShowEventArgs>
Value
Type:
SystemEventHandlerPageShowEventArgsRemarks
Use the Shown event o load controls on the page
with the property values for the selected object.
This is most commonly done in the DataInitialize event handler.
But using the Shown event instead delays processing until it is
actually required by the user.
Depending on the number of custom properties and the type of data,
this can be a useful optimization.
The event is a replacement for the OnShow method of the VB6 Extension Designer object.
See Also