バージョン

ReminderImage プロパティ

ReminderDialog を描画する際に使用される System.Drawing.Image オブジェクトを設定します。
シンタックス
'宣言
 
Public Property ReminderImage As Image
public Image ReminderImage {get; set;}
使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports System.IO
Imports System.Globalization

    Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click

        '	ReminderImage を感嘆符に設定します
        Me.ultraCalendarInfo1.ReminderImage = SystemIcons.Exclamation.ToBitmap()

    End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using System.IO;
using System.Globalization;

		private void button1_Click(object sender, System.EventArgs e)
		{

			//	ReminderImage を感嘆符に設定します
			this.ultraCalendarInfo1.ReminderImage = SystemIcons.Exclamation.ToBitmap();
		
		}
参照