Method: Select for Arrow
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Methods > Method: Select for Arrow
Method: Select for Arrow
Selects an arrow in DIAdem REPORT.
Object.Select()
| Object | Arrow Object with this method |
The following example generates an arrow in the current worksheet, selects this arrow, and then displays whether the arrow is selected:
| VBScript | Python |
Dim oMyArrow Call Report.NewLayout() Set oMyArrow = Report.ActiveSheet.Objects.Add(eReportObjectArrow,"MyArrow") Call oMyArrow.Select() Call MsgBoxDisp(oMyArrow.IsSelected)