| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod CanDelete ( |  |   ScenarioNodes scenarionodes, |  |   output String feedback_o |  | ) remote as Boolean |  | { |  |   Description: 'Check if scenarios can be deleted' |  |   TextBody: |  |   [* |  |     feedback_o := ''; |  |      |  |     return forall( scenarionodes, Elements, node, true, node.CanDelete( feedback_o ) ); |  |   *] |  | } | 
 |