GrapeCity.Win.Calendar 名前空間 > GcCalendar クラス > SaveHolidayToiCalendar メソッド : SaveHolidayToiCalendar(String,String) メソッド |
次の例は、このメソッドを使用してGcCalendarの休日をiCalendarファイルに保存する方法を示します。このサンプルコードを実行するには、GcCalendarインスタンス"gcCalendar1"とSystem.Windows.Forms.Buttonインスタンス"button1"のあるSystem.Windows.Forms.Formにコードを貼り付けます。サンプルで定義されたイベントハンドラがbutton1のSystem.Windows.Forms.Control.Clickイベントに関連付けられていることを確認します。button1を押した後、ディスクDの直下に'Holiday.ics'という名前のiCalendarファイルが生成されます。
private void button1_Click(object sender, EventArgs e) { // Specify the path of iCalendar file to be saved. string path = @"D:\Holiday.ics"; // Specify the category of holidays to be saved. string category = "National Day"; // Save the holidays of gcCalendar1 to an iCalendar file. this.gcCalendar1.SaveHolidayToiCalendar(path, category); }
Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) ' Specify the path of iCalendar file to be saved. Dim path As String = "D:\Holiday.ics" ' Specify the category of holidays to be saved. Dim category As String = "National Day" ' Save the holidays of gcCalendar1 to an iCalendar file. Me.gcCalendar1.SaveHolidayToiCalendar(path, category) End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2