PBDoc Example using Code Review Template Review Sheet v1.0
Object: uo_visual_example Size: 2887
Comment: An Example visual control showing other contained controls v3.0.0 Last Modified: 03/18/2006 14:06
Location: d:\PB\PBDoc\prod\example\pbdoc_example_ansi.pbl<uo_visual_example.sru>
Author: Review Date: 25/03/2006 14:32:38
Reviewer:   Signed:  
Instance Vars: None Shared Vars: None External: None
Functions: 0 Controls: 3 Events: 3

Control/Event Definition
uo_visual_example::constructor () Comments
/********************************************************************
   uo_visual_example: Visual Composite Control <EXCLUDE>

   <OBJECT>   An example showing how a custom visual control can be
            documented. Other controls are contained within to show
            sub levels of documentation.</OBJECT>

   Date         Ref   Author      Comments
   13/02/2006         Ken Howe      First Version
********************************************************************/
 
cb_audio::getfocus () Comments
call super::getfocus;/********************************************************************
   GetFocus

   <DESC>   When the button gets focus we want to also play an
            audiable alert. However we dont want this as the default
            behaviour for all audio buttons, this will be a special
            case.</DESC>

   <RETURN> A value to say the focus was received.
            <li> 1, focus was received
            <li> -1, focus was not accepted.</RETURN>

   <ACCESS> public
   
   <USAGE>   cb_audio.SetFocus()</USAGE>

********************************************************************/

 
cb_clickme::Clicked () Comments
/********************************************************************
   Clicked

   <DESC>   This exmaple shows a control placed on a user control and
            the documentation generated for the control while it is
            contained within the user control.</DESC>

   <RETURN> details of what the event did or did not do</RETURN>

   <ACCESS> public

   <USAGE>   cb_clickme.Event Clicked()</USAGE>

********************************************************************/

RETURN 1
 

End of Review Document