Ejemplo n.º 1
0
 /// <summary>
 /// OnCollapse
 /// </summary>
 /// <param name="e"></param>
 /// <author>
 /// Created by Iulian Iuga; 23 February, 2003
 /// </author>
 public virtual void OnCollapse(TreeWebEventArgs e)
 {
     if (Collapse != null)
     {
         Collapse(this, e);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// OnExpand
 /// </summary>
 /// <param name="e"></param>
 /// <author>
 /// Created by Iulian Iuga; 23 February, 2003
 /// </author>
 public virtual void OnExpand(TreeWebEventArgs e)
 {
     if (Expand != null)
     {
         Expand(this, e);
     }
 }
Ejemplo n.º 3
0
		/// <summary>
		/// OnCollapse
		/// </summary>
		/// <param name="e"></param>
		/// <author>
		/// Created by Iulian Iuga; 23 February, 2003
		/// </author>
		public virtual void OnCollapse( TreeWebEventArgs e )
		{
			if( Collapse != null )
				Collapse( this, e );
		}
Ejemplo n.º 4
0
		/// <summary>
		/// OnExpand
		/// </summary>
		/// <param name="e"></param>
		/// <author>
		/// Created by Iulian Iuga; 23 February, 2003
		/// </author>
		public virtual void OnExpand( TreeWebEventArgs e )
		{
			if( Expand != null )
				Expand( this, e );
		}