| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod Create ( |  |   LibCal_Event owner_i, |  |   Boolean monday_i, |  |   Boolean tuesday_i, |  |   Boolean wednesday_i, |  |   Boolean thursday_i, |  |   Boolean friday_i, |  |   Boolean saturday_i, |  |   Boolean sunday_i |  | ) as LibCal_RecurrencePatternWeekly |  | { |  |   TextBody: |  |   [* |  |     return owner_i.RecurrencePattern( relnew, LibCal_RecurrencePatternWeekly, |  |                                       PatternType := LibCal_RecurrencePattern::TYPE_WEEKLY(), |  |                                       Monday      := monday_i, |  |                                       Tuesday     := tuesday_i, |  |                                       Wednesday   := wednesday_i, |  |                                       Thursday    := thursday_i, |  |                                       Friday      := friday_i, |  |                                       Saturday    := saturday_i, |  |                                       Sunday      := sunday_i ); |  |   *] |  |   InterfaceProperties { Accessibility: 'Module' } |  | } | 
 |