Property: Objects for Sheet
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Properties > Property: Objects for Sheet
Property: Objects for Sheet
Specifies the objects in a DIAdem REPORT worksheet.
Set oReportObjects = Object.Objects
Object | Sheet Object with this property |
oReportObjects | ReportObjects Returned object |
The following example displays the number of objects contained in each of the worksheets in DIAdem REPORT:
VBScript | Python |
Dim oMySheet For Each oMySheet in Report.Sheets Call MsgBoxDisp(oMySheet.Objects.Count) Next