QTableWidgetSelectionRange Class Reference

QTableWidgetSelectionRange Class Reference

#include <qtablewidget.h>

Class Description

Definition at line 58 of file qtablewidget.h.

Public Member Functions

 QTableWidgetSelectionRange ()
 
 QTableWidgetSelectionRange (int top, int left, int bottom, int right)
 
 QTableWidgetSelectionRange (const QTableWidgetSelectionRange &other)
 
 ~QTableWidgetSelectionRange ()
 
int topRow () const
 
int bottomRow () const
 
int leftColumn () const
 
int rightColumn () const
 
int rowCount () const
 
int columnCount () const
 

Constructor & Destructor Documentation

QTableWidgetSelectionRange ( int  top,
int  left,
int  bottom,
int  right 
)

Member Function Documentation

int topRow ( ) const
inline

Definition at line 66 of file qtablewidget.h.

66 { return top; }
int bottomRow ( ) const
inline

Definition at line 67 of file qtablewidget.h.

67 { return bottom; }
int leftColumn ( ) const
inline

Definition at line 68 of file qtablewidget.h.

68 { return left; }
int rightColumn ( ) const
inline

Definition at line 69 of file qtablewidget.h.

69 { return right; }
int rowCount ( ) const
inline

Definition at line 70 of file qtablewidget.h.

70 { return bottom - top + 1; }
int columnCount ( ) const
inline

Definition at line 71 of file qtablewidget.h.

71 { return right - left + 1; }

The documentation for this class was generated from the following file: