Quintiq file version 2.0 #parent: #root Method ShowRecurrencePattern ( String patternType_i ) id:Method_LibCal_dlgEvent_ShowRecurrencePattern { #keys: '[131094.1.9139306]' Body: [* // Show the accompanying panel. if( patternType_i = LibCal_RecurrencePattern::TYPE_DAILY() ) { pnlDaily.Active( true ); } else if( patternType_i = LibCal_RecurrencePattern::TYPE_WEEKLY() ) { pnlWeekly.Active( true ); } else if( patternType_i = LibCal_RecurrencePattern::TYPE_MONTHLY() ) { pnlMonthly.Active( true ); this.ShowMonthlyPattern(); } else if( patternType_i = LibCal_RecurrencePattern::TYPE_YEARLY() ) { pnlYearly.Active( true ); this.ShowYearlyPattern(); } this.SetEndOfPeriod(); *] }