LToolbar::SetRows

Summary

Sets the number of rows of buttons in the toolbar.

Syntax

#include "ltwrappr.h"

L_INT LToolbar::SetRows (nRows)

Parameters

L_INT nRows

Number of rows requested. The minimum number of rows is one, and the maximum number of rows is equal to the number of buttons in the toolbar.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

Buttons are arranged on the rows from left to right.

To determine the current number of rows set, call LToolbar::GetRows.

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example gets the current number of rows in the toolbar. If it is not 2, then it will make 2 rows.

L_INT LToolbar__SetRowsExample(LToolbar* tlb) 
 
{ 
   if ( tlb->IsValid () ) /* check the validity of the toolbar handle */ 
 
   { 
 
      L_INT nRow ; 
 
      /* Get the number of rows in the toolbar */ 
 
      nRow = tlb->GetRows () ; 
 
      if ( nRow != 2 ) 
 
      { 
 
         /* Set the number of rows to 2 */ 
 
         tlb->SetRows (2 ) ; 
 
      } 
 
   } 
 
   else 
 
   { 
 
      return FAILURE ; 
 
   } 
 
   return SUCCESS; 
} 

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Toolbar C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.