AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de reportes y controles asociados
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The SelectionOnly property is used to:
  • Know which records in the Table or hierarchical Table control are printed: print all records or only selected records.
  • Change the print mode for Table or TreeView Table control rows: print all records or selected records only.
This property can only be used in the opening code of a "Report on table" or "Report on treeview table" report.
Ejemplo
// -- Opening code of the report
// Print only the rows selected in the Table control
RPT_Report1.SelectionOnly = True
// -- Opening code of the report
// Print all rows of the Table control
RPT_Report1.SelectionOnly = False
Sintaxis

Finding out the print mode of the rows found in a Table or Treeview Table control Ocultar los detalles

<Result> = <Report used>.SelectionOnly
<Result>: Boolean
  • True if the report will print only the rows currently selected in the Table or Hierarchical Table control,
  • False if the report will print all the lines in the control.
<Report used>: Report name
Name of the "Report on table" or "Report on treeview table" report to use.

Changing the print mode of rows in a Table or TreeView Table control Ocultar los detalles

<Report used>.SelectionOnly = <Type of print>
<Report used>: Report name
Name of the "Report on table" or "Report on treeview table" report to use.
<Type of print>: Boolean
  • True to print only the rows selected in the Table or Hierarchical Table field,
  • False to print all the control rows.
Observaciones
The SelectionOnly property applies only to "Report on table" and "Report on TreeView Table" reports and can only be used in the opening code of the report.
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local