diff --git a/.gitignore b/.gitignore index 18650be..82c41df 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,12 @@ HSI_HexagonMI_EF3/x64/Debug/ HSI_HexagonMI_EF3/obj/ HSI_SEVENOCEAN_EF1_CsTest/bin/ EF3/obj/ +*.v2 +*.vsidx +*.lock +*.suo +*.1 +*.ide +*.ide-shm +*.ide-wal +*.user diff --git a/HexcalMC/Hexcal+直线电机平台控制器做补偿开发流程梳理.docx b/Doc/Hexcal+直线电机平台控制器做补偿开发流程梳理.docx similarity index 100% rename from HexcalMC/Hexcal+直线电机平台控制器做补偿开发流程梳理.docx rename to Doc/Hexcal+直线电机平台控制器做补偿开发流程梳理.docx diff --git a/HSI_HexagonMI_EF3/ACS/ACSCL_x64.LIB b/HSI_HexagonMI_EF3/ACS/ACSCL_x64.LIB new file mode 100644 index 0000000..4260762 Binary files /dev/null and b/HSI_HexagonMI_EF3/ACS/ACSCL_x64.LIB differ diff --git a/HexcalMC/Base/DebugDfn.cs b/HexcalMC/Base/DebugDfn.cs index abe9951..46393d6 100644 --- a/HexcalMC/Base/DebugDfn.cs +++ b/HexcalMC/Base/DebugDfn.cs @@ -15,10 +15,10 @@ namespace HexcalMC.Base public static string StrDebugFile = Application.StartupPath + "\\File\\Debug.txt"; public static string StrDebugSavePath = Application.StartupPath + "\\File\\DebugFiles"; public static string StrDebugFileTemp = Application.StartupPath + "\\File\\DebugTemp.txt"; //临时存储,用于菜单查看 - static string _strStartTime = ""; //程序启动时间 - static string _strEndTime = ""; //程序关闭时间 + public static string _strStartTime = ""; //程序启动时间 + public static string _strEndTime = ""; //程序关闭时间 - public static RichTextBox TextBoxMsg; + public static RichTextBox textBox_Msg; //================================================================= @@ -49,50 +49,45 @@ namespace HexcalMC.Base MyBase.TraceWriteLine(str); } - public static void AddLogText(string str, Color mColor = new Color()) + public static void AddLogText(string str, Color m_Color = new Color()) { MyBase.TraceWriteLine(str); try { - TextBoxMsg.BeginInvoke((EventHandler)delegate + textBox_Msg.BeginInvoke((EventHandler)delegate { - Color setColor = Color.White; - if (mColor == new Color()) + Color SetColor = Color.Black; + if (m_Color == new Color()) { - if (str.ToUpper().Contains("ERROR") || str.ToUpper().Contains("错误") || - str.ToUpper().Contains("出错") || str.ToUpper().Contains("EXCEPTION") || - str.ToUpper().Contains("异常") || str.ToUpper().Contains("失败")) + if (str.ToUpper().Contains("ERROR") || str.ToUpper().Contains("错误") || str.ToUpper().Contains("出错") || str.ToUpper().Contains("EXCEPTION") || str.ToUpper().Contains("异常") || str.ToUpper().Contains("失败")) { - setColor = Color.Red; + SetColor = Color.Red; } else if (str.ToUpper().Contains("WARNING") || str.ToUpper().Contains("警告")) { - setColor = Color.DarkOrange; + SetColor = Color.DarkOrange; } } else { - setColor = mColor; + SetColor = m_Color; } string strText = DateTime.Now.ToString("HH:mm:ss.ff") + "--" + str + Environment.NewLine; - TextBoxMsg.SelectionStart = TextBoxMsg.TextLength; + textBox_Msg.SelectionStart = textBox_Msg.TextLength; if (string.IsNullOrEmpty(str)) - SetText(TextBoxMsg, str, setColor, false, 16); + SetText(textBox_Msg, str, SetColor, false, 16); else - SetText(TextBoxMsg, strText, setColor, false, 16); - if (TextBoxMsg.Lines.Length > 800) + SetText(textBox_Msg, strText, SetColor, false, 16); + if (textBox_Msg.Lines.Length > 800) { - TextBoxMsg.Select(0, TextBoxMsg.TextLength / 2); - TextBoxMsg.Cut(); + textBox_Msg.Select(0, textBox_Msg.TextLength / 2); + textBox_Msg.Cut(); } - - TextBoxMsg.ScrollToCaret(); + textBox_Msg.ScrollToCaret(); }); } - catch - { - } + catch { } } public static void SetText(RichTextBox mRichTextBox, string strText, Color mColor, bool bBold = false, @@ -116,14 +111,72 @@ namespace HexcalMC.Base System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); } - public static void SetErrorColor(Color inColor) + public static void SetErrorColor(Color InColor) { - if (TextBoxMsg != null) + if (textBox_Msg != null) { - TextBoxMsg.BeginInvoke((EventHandler)delegate { TextBoxMsg.BackColor = inColor; }); + textBox_Msg.BeginInvoke((EventHandler)delegate + { + textBox_Msg.BackColor = InColor; + }); } } #endregion } + + public class Errors + { + /// + /// 0:无故障 PLC按位求 1对应101 + /// 1:通讯故障 + /// 2:扫描枪读取故障 + /// 3: 控制柜急停被按下 + /// 4:外部急停被按下 + /// 5:PCL急停,辊道在CMM测量时上料 + /// + public static int iErrors = 0; + /// 101:通讯故障 + /// 102:扫描枪读取故障 + /// 103: 控制柜急停被按下 + /// 104:外部急停被按下 + /// 105:PCL急停,辊道在CMM测量时上料 + public static bool bCommError = false; + public static bool bReaderError = false; + public static bool bEStop_Controller = false; + public static bool bEStop_Out = false; + public static bool bEStop_Plc = false; + + public static bool bTipSwitch = true; + + public static StreamWriter ErrorWrite; + public static StreamWriter OtherWrite; + public static StreamWriter StatusWrite; + + public static void WriteErrorDebug(string strError) + { + try + { + if (Errors.ErrorWrite == null) + Errors.ErrorWrite = new StreamWriter(DebugDfn.StrDebugSavePath + "Error_(" + DateTime.Now.ToString("yyyy-MM-dd") + ").txt", true); + Errors.ErrorWrite.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + " " + strError); + Errors.ErrorWrite.Flush(); + } + finally + { } + } + + public static void WriteOtherDebug(string strMsg) + { + try + { + if (Errors.OtherWrite == null) + Errors.OtherWrite = new StreamWriter(DebugDfn.StrDebugSavePath + "Other_(" + DateTime.Now.ToString("yyyy-MM-dd") + ").txt", true); + Errors.OtherWrite.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + " " + strMsg); + Errors.OtherWrite.Flush(); + } + finally + { } + } + } } diff --git a/HexcalMC/Base/Lamp.Designer.cs b/HexcalMC/Base/Lamp.Designer.cs new file mode 100644 index 0000000..c30cdee --- /dev/null +++ b/HexcalMC/Base/Lamp.Designer.cs @@ -0,0 +1,48 @@ +namespace HexcalMC +{ + partial class Lamp + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Lamp + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); + this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.Name = "Lamp"; + this.Size = new System.Drawing.Size(144, 121); + this.Load += new System.EventHandler(this.Lamp_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} diff --git a/HexcalMC/Base/Lamp.cs b/HexcalMC/Base/Lamp.cs new file mode 100644 index 0000000..d06a06b --- /dev/null +++ b/HexcalMC/Base/Lamp.cs @@ -0,0 +1,183 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using System.Drawing.Drawing2D; + +namespace HexcalMC +{ + public partial class Lamp : UserControl + { + public Lamp() + { + InitializeComponent(); + base.SetStyle(ControlStyles.ResizeRedraw, true); + this.DoubleBuffered = true; + } + + private void Lamp_Load(object sender, EventArgs e) + { + + } + + private static Color[] _colors = new Color[] + { + Color.Green, + Color.Orange, + Color.Red, + Color.White, + Color.Silver, + Color.Transparent, + Color.Yellow, + Color.Blue + }; + + private const int Ok = 0; + private const int Warn = 1; + private const int Error = 2; + private const int Debug = 4; + private const int Undef = -1; + private int _state = -1; + + + private string _dtext = ""; + private bool _shadow = false; + + /// 设置颜色 + public int State + { + get + { + return this._state; + } + set + { + this._state = value; + this.Refresh(); + } + } + + /// 设置文字 + public string LText + { + get + { + return this._dtext; + } + set + { + this._dtext = value; + } + } + + /// 设置阴影 + public bool Shadow + { + get + { + return this._shadow; + } + set + { + this._shadow = value; + } + } + + protected override void OnPaint(PaintEventArgs gr) + { + base.OnPaint(gr); + int num = Math.Min(base.Width, base.Height); + bool flag = num >= 8; + if (flag) + { + this.DrawLamp(gr.Graphics, num); + } + } + + private void DrawLamp(Graphics g, int rad) + { + g.SmoothingMode = SmoothingMode.AntiAlias; + RectangleF rect = new RectangleF(1f, 1f, (float)(rad - 5), (float)(rad - 5)); + float num = rect.Width / 12f; + RectangleF rect2 = new RectangleF(rect.Location, rect.Size); + rect2.Inflate(1f, 1f); + if (_shadow) + { + rect2.X += num; + rect2.Y += num; + g.FillEllipse(Brushes.Gray, rect2); + rect2.X -= num; + rect2.Y -= num; + } + g.FillEllipse(Brushes.Black, rect2); + + if (_state != -1) + { + using (GraphicsPath graphicsPath = new GraphicsPath()) + { + graphicsPath.AddEllipse(rect); + int x = (int)(rect.X + rect.Width / 3f); + int y = (int)(rect.Y + rect.Height / 3f); + Color color = Lamp._colors[_state]; + using (PathGradientBrush pathGradientBrush = new PathGradientBrush(graphicsPath)) + { + pathGradientBrush.CenterColor = Color.Snow; + pathGradientBrush.CenterPoint = new Point(x, y); + pathGradientBrush.SurroundColors = new Color[] + { + color + }; + g.FillPath(pathGradientBrush, graphicsPath); + } + } + } + else + { + using (Brush brush = new SolidBrush(this.BackColor)) + { + g.FillEllipse(brush, rect); + } + } + + if (_dtext.Length > 0) + { + float emSize = rect.Height / 6f; + Font font = new Font("Microsoft Sans Serif", emSize, FontStyle.Bold, GraphicsUnit.Point, 0); + int num2 = (int)font.GetHeight(); + int y2 = (int)rect.Height / 2 - num2 / 2; + int num3 = (int)g.MeasureString(_dtext, font).Width; + int num4 = (int)(rect.Width - (float)num3) / 2; + bool flag3 = num4 < 0; + if (flag3) + { + num4 = 0; + } + g.DrawString(_dtext, font, Brushes.Black, new Point(num4, y2)); + } + } + + } + + public class LampColor + { + public const int Ok = 0; + public const int Warn = 1; + public const int Error = 2; + public const int Debug = 4; + public const int Undef = -1; + + public const int Green = 0; + public const int Orange = 1; + public const int Red = 2; + public const int White = 3; + public const int Silver = 4; + public const int Transparent = 5; + public const int Yellow = 6; + public const int Blue = 7; + } +} diff --git a/HexcalMC/Base/Lamp.resx b/HexcalMC/Base/Lamp.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/HexcalMC/Base/Lamp.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/HexcalMC/Base/UserControl/Lamp.Designer.cs b/HexcalMC/Base/UserControl/Lamp.Designer.cs new file mode 100644 index 0000000..c30cdee --- /dev/null +++ b/HexcalMC/Base/UserControl/Lamp.Designer.cs @@ -0,0 +1,48 @@ +namespace HexcalMC +{ + partial class Lamp + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Lamp + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); + this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.Name = "Lamp"; + this.Size = new System.Drawing.Size(144, 121); + this.Load += new System.EventHandler(this.Lamp_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} diff --git a/HexcalMC/Base/UserControl/Lamp.cs b/HexcalMC/Base/UserControl/Lamp.cs new file mode 100644 index 0000000..8af9cc8 --- /dev/null +++ b/HexcalMC/Base/UserControl/Lamp.cs @@ -0,0 +1,183 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using System.Drawing.Drawing2D; + +namespace HexcalMC +{ + public partial class Lamp : UserControl + { + public Lamp() + { + InitializeComponent(); + base.SetStyle(ControlStyles.ResizeRedraw, true); + this.DoubleBuffered = true; + } + + private void Lamp_Load(object sender, EventArgs e) + { + + } + + private static Color[] COLORS = new Color[] + { + Color.Green, + Color.Orange, + Color.Red, + Color.White, + Color.Silver, + Color.Transparent, + Color.Yellow, + Color.Blue + }; + + private const int OK = 0; + private const int WARN = 1; + private const int ERROR = 2; + private const int DEBUG = 4; + private const int UNDEF = -1; + private int _state = -1; + + + private string Dtext = ""; + private bool _shadow = false; + + /// 设置颜色 + public int State + { + get + { + return this._state; + } + set + { + this._state = value; + this.Refresh(); + } + } + + /// 设置文字 + public string LText + { + get + { + return this.Dtext; + } + set + { + this.Dtext = value; + } + } + + /// 设置阴影 + public bool Shadow + { + get + { + return this._shadow; + } + set + { + this._shadow = value; + } + } + + protected override void OnPaint(PaintEventArgs gr) + { + base.OnPaint(gr); + int num = Math.Min(base.Width, base.Height); + bool flag = num >= 8; + if (flag) + { + this.DrawLamp(gr.Graphics, num); + } + } + + private void DrawLamp(Graphics g, int rad) + { + g.SmoothingMode = SmoothingMode.AntiAlias; + RectangleF rect = new RectangleF(1f, 1f, (float)(rad - 5), (float)(rad - 5)); + float num = rect.Width / 12f; + RectangleF rect2 = new RectangleF(rect.Location, rect.Size); + rect2.Inflate(1f, 1f); + if (_shadow) + { + rect2.X += num; + rect2.Y += num; + g.FillEllipse(Brushes.Gray, rect2); + rect2.X -= num; + rect2.Y -= num; + } + g.FillEllipse(Brushes.Black, rect2); + + if (_state != -1) + { + using (GraphicsPath graphicsPath = new GraphicsPath()) + { + graphicsPath.AddEllipse(rect); + int x = (int)(rect.X + rect.Width / 3f); + int y = (int)(rect.Y + rect.Height / 3f); + Color color = Lamp.COLORS[_state]; + using (PathGradientBrush pathGradientBrush = new PathGradientBrush(graphicsPath)) + { + pathGradientBrush.CenterColor = Color.Snow; + pathGradientBrush.CenterPoint = new Point(x, y); + pathGradientBrush.SurroundColors = new Color[] + { + color + }; + g.FillPath(pathGradientBrush, graphicsPath); + } + } + } + else + { + using (Brush brush = new SolidBrush(this.BackColor)) + { + g.FillEllipse(brush, rect); + } + } + + if (Dtext.Length > 0) + { + float emSize = rect.Height / 6f; + Font font = new Font("Microsoft Sans Serif", emSize, FontStyle.Bold, GraphicsUnit.Point, 0); + int num2 = (int)font.GetHeight(); + int y2 = (int)rect.Height / 2 - num2 / 2; + int num3 = (int)g.MeasureString(Dtext, font).Width; + int num4 = (int)(rect.Width - (float)num3) / 2; + bool flag3 = num4 < 0; + if (flag3) + { + num4 = 0; + } + g.DrawString(Dtext, font, Brushes.Black, new Point(num4, y2)); + } + } + + } + + public class LampColor + { + public const int OK = 0; + public const int WARN = 1; + public const int ERROR = 2; + public const int DEBUG = 4; + public const int UNDEF = -1; + + public const int Green = 0; + public const int Orange = 1; + public const int Red = 2; + public const int White = 3; + public const int Silver = 4; + public const int Transparent = 5; + public const int Yellow = 6; + public const int Blue = 7; + } +} diff --git a/HexcalMC/Base/UserControl/Lamp.resx b/HexcalMC/Base/UserControl/Lamp.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/HexcalMC/Base/UserControl/Lamp.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/HexcalMC/Base/UserControl/ResultPicture.Designer.cs b/HexcalMC/Base/UserControl/ResultPicture.Designer.cs new file mode 100644 index 0000000..297297b --- /dev/null +++ b/HexcalMC/Base/UserControl/ResultPicture.Designer.cs @@ -0,0 +1,68 @@ +namespace BaseFunction +{ + partial class ResultPicture + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ResultPicture)); + this.picBox_Result = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.picBox_Result)).BeginInit(); + this.SuspendLayout(); + // + // picBox_Result + // + this.picBox_Result.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255))))); + this.picBox_Result.Dock = System.Windows.Forms.DockStyle.Fill; + this.picBox_Result.Image = ((System.Drawing.Image)(resources.GetObject("picBox_Result.Image"))); + this.picBox_Result.Location = new System.Drawing.Point(0, 0); + this.picBox_Result.Name = "picBox_Result"; + this.picBox_Result.Size = new System.Drawing.Size(160, 160); + this.picBox_Result.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.picBox_Result.TabIndex = 0; + this.picBox_Result.TabStop = false; + this.picBox_Result.Click += new System.EventHandler(this.picBox_Result_Click); + // + // ResultPicture + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.picBox_Result); + this.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); + this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.Name = "ResultPicture"; + this.Size = new System.Drawing.Size(160, 160); + ((System.ComponentModel.ISupportInitialize)(this.picBox_Result)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox picBox_Result; + + } +} diff --git a/HexcalMC/Base/UserControl/ResultPicture.cs b/HexcalMC/Base/UserControl/ResultPicture.cs new file mode 100644 index 0000000..4d730a2 --- /dev/null +++ b/HexcalMC/Base/UserControl/ResultPicture.cs @@ -0,0 +1,71 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace BaseFunction +{ + public partial class ResultPicture : UserControl + { + public ResultPicture() + { + try + { + InitializeComponent(); + picBox_Result.Image = null; + picBox_Result.BackColor = Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53))))); + } + catch { } + } + + private void picBox_Result_Click(object sender, EventArgs e) + { + + } + + /// 结果显示类型, True=合格,false=超差 + public void SetResultPicture(bool bOK) + { + try + { + picBox_Result.Image = bOK ? ImageDfn.IMG_ResultOK : ImageDfn.IMG_ResultNG; + } + catch { } + } + + /// 结果显示类型, 1=合格,2=超差,3=其他,4=无工件, 9=无图片 + public void SetResultPicture(int ShowType = 1) + { + try + { + switch (ShowType) + { + case 1: picBox_Result.Image = ImageDfn.IMG_ResultOK; break; + case 2: picBox_Result.Image = ImageDfn.IMG_ResultNG; break; + case 3: picBox_Result.Image = ImageDfn.IMG_Other; break; + case 4: picBox_Result.Image = ImageDfn.IMG_Null; break; + case 5: picBox_Result.Image = ImageDfn.IMG_Waiting; break; + case 9: picBox_Result.Image = null; break; + default: break; + } + } + catch { } + } + + public void SetSize(int SizeWidth = 160, int SizeHeight = 160) + { + try + { + this.Width = SizeWidth; + this.Height = SizeHeight; + } + catch { } + } + + } + +} diff --git a/HexcalMC/Base/UserControl/ResultPicture.resx b/HexcalMC/Base/UserControl/ResultPicture.resx new file mode 100644 index 0000000..6c2bfd2 --- /dev/null +++ b/HexcalMC/Base/UserControl/ResultPicture.resx @@ -0,0 +1,1238 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + /9j/4AAQSkZJRgABAgEASABIAAD/7gAOQWRvYmUAZAAAAAAB/9sAQwAGBAQEBQQGBQUGCQYFBgkLCAYG + CAsMCgoLCgoMEAwMDAwMDBAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/9sAQwEHBwcNDA0YEBAY + FA4ODhQUDg4ODhQRDAwMDAwREQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/8AAEQgD + 6APoAwERAAIRAQMRAf/EAB8AAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKC//EALUQAAIBAwMCBAIG + BwMEAgYCcwECAxEEAAUhEjFBUQYTYSJxgRQykaEHFbFCI8FS0eEzFmLwJHKC8SVDNFOSorJjc8I1RCeT + o7M2F1RkdMPS4ggmgwkKGBmElEVGpLRW01UoGvLj88TU5PRldYWVpbXF1eX1ZnaGlqa2xtbm9jdHV2d3 + h5ent8fX5/c4SFhoeIiYqLjI2Oj4KTlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/EAB8BAAICAwEB + AQEBAAAAAAAAAAEAAgMEBQYHCAkKC//EALURAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZx + gZEyobHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp + 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+DlJ + WWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/dAAQAff/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 + FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 + FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 + FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 + FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq//0PVOKuxV2KuxV2KuxV2KuxV2 + KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2 + KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2 + KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2 + KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kv/9H1TirsVdirsVdirsVdirsVdirs + VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs + VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs + VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs + VdirsVdiqyaeCCNpZ5FiiXdpHIVQPcnbElBNJE/n7ygJfTTU4pyDxZ4KyoD7ugZP+GyiWqxxNEtR1EB1 + Tu2ura6hWa2lSaJujoQw+8ZbGQIsNokDuFXJJdirsVdirsVdirsVdirsVdirsVdirsVf/9L1TirsVdir + sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir + sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir + sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir + sVdirsVdirsVdirsVdirD/Of5q+UfKgeK8ufrOogfDp1tR5a9ue/GL/ZtlOXPGHPm0ZdTCHPm8h1L86P + zG8yXTxaDGmk2XSsaiRwPF5pARy/4xoua7LrpdNv906+esyS5ekIVNEubyQXPmC/n1m660uZHeJT7Ixp + mFLLKXMtJJPM8SbKFVQqgKq7Ko2AHsMiqL0/U9Q0+b1bK4eB+/A7H/WX7LfTk4ZJRNg0yjMx5M20b8z2 + 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 + sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir + sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir + sVdirsVdirsVdirsVdirsVdir5i/O78w/wDEeufomwl5aLpblQyn4ZrgfC8m3VU+xH/s2/azVarNxGhy + DptZn45UPpip+XdN/wAOaH9dlHHW9VSkIP2oLY/tezyZgSNlxZz8KF/xz+n+jD+f/nIfA612Kt1xS7FW + 64pbxVWgW2jjmvbxilhaLzuGHVq7LGv+XI3wrjz2b8GLjNn6Y/UwXWNVudV1CW9uKKz0EcS/ZjjXZI1/ + yVGZMY0KcicuI2gj0woT/RrD0I/WkH76QbA/sr/bmJmyWaCEzyhWjirsUrckh2KWsVdirWFWsVaxZOOK + GsKho4pdirRxVo5IK1gV2Kh6Z+Qt2I/M99bE7XFpyA94pF/g5zYdnS9ZHk52hPqI8nuubh2rsVdirsVd + irsVdirsVdir/9P1TirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs + VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs + VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVeYfnl+YR8v6ING + 0+XjrGqIVLKfihtjs8nsz/Yj/wBk37GYmqzcIocy4esz8EaH1SeIeQ/L1veXEmraiv8AuI0yjyA/7tl/ + YiHjU/azUSLqoRG8pfRH6v8AiP8AOTvUb+e/vJbuc/vJD9kdFUbKo9lGQddlynJIyKHqRi1tg4q3il2K + t1xSqW8E1xOkEK8pZCFRfc4soRMiAOZY/wCb9aiuJU0qxflp9kx5SjpPcdHl/wBUfYi/yf8AWy7HGty7 + CVRHCOQ/2UmO5a1pjo9h68vrSD9zGdgf2m8PoyjNkoUOap/3zDQ3ilrFWsKWsKuOKtYq7FWsKtYpaxS4 + 4oawq1il2KtHFVpyQV2BXYqy78p74Wnn7TCTRbgyW7f89Izx/wCGC5laOVZA5OllWQPpPN87p2KuxV2K + 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 + VVrW3nuriK2t1LzTMEjQdycDOEDIgDmUs856tBLNFo1i4fT9NJDyr0nuTtLL/qj+7j/yP9bLscadrICI + EI8o/wCyn/OYycsa0z0Wx9ab15B+6iPwg92/szHz5KFBU/OYatYq7FK09cKt4q0cVdilo4UNYUtYq7FW + sKuxVbil2KtYVaOKXYq7FVpwq1irsVccUrcKuOKvd/yL8xC88vz6NK1Z9MflED1MEpLD/gX5j/gc3Ggy + XHh/mu10OS48P816Zme5rsVdirsVdirsVdir/9L1TirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV + dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV + dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirTu + kaM7sFRQWZiaAAbkknFXyZ+afnebzj5reW2LNploTbaXEP2lr8UlP5pm/wCE4Zp9Rl45eTotVn45X/CE + 7uLRfLHlyLy/HT9KXwW51qQdVB3jgr/k9WzFLiazJ4cPD/jn6sn9X+DH/wAUkVcDqm8VbrirsUuxVuuK + UZe3v6B0E3Snjq2qo0Vj/NFbfZln9mk/u4v9k2ShGy7PS4/Dhxn6p/R/U/imwLL0qkEElxOkMf2mPXwH + c5GUqFqyqCCOCFYoxRUFB7++a+UrNlV5yKtYq7FK3vhQ3ilo4q7FK3JIdilrFXYq1hVrFWsWTsUNYVDR + xS7FWjirRwq1irsVDRxS1hVxxVkf5e+Zf8O+a7O9duNpKfq974elIQCx/wBRuL/7HMjTZeCYPRu0+Tgm + D0fUAIIBBqD0Ob93jsVdirsVdirsVdir/9P1TirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs + VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs + VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdiryT8/8A + z5+i9HXy1YyU1DVEJu2U7x2taEfOY/B/qc8w9XlocI5lwdbm4RwjnJ5X+XOj29ulx5s1GMNZaYeNjE3S + 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 + + + \ No newline at end of file diff --git a/HexcalMC/Form/AboutBox.Designer.cs b/HexcalMC/Form/AboutBox.Designer.cs new file mode 100644 index 0000000..18834f6 --- /dev/null +++ b/HexcalMC/Form/AboutBox.Designer.cs @@ -0,0 +1,222 @@ +namespace HexcalMC.Form +{ + partial class AboutBox + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox)); + this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); + this.logoPictureBox = new System.Windows.Forms.PictureBox(); + this.radLabelProductName = new Telerik.WinControls.UI.RadLabel(); + this.radLabelVersion = new Telerik.WinControls.UI.RadLabel(); + this.radLabelCopyright = new Telerik.WinControls.UI.RadLabel(); + this.radLabelCompanyName = new Telerik.WinControls.UI.RadLabel(); + this.radTextBoxDescription = new Telerik.WinControls.UI.RadTextBox(); + this.okRadButton = new Telerik.WinControls.UI.RadButton(); + this.tableLayoutPanel.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelProductName)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelVersion)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelCopyright)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelCompanyName)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radTextBoxDescription)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.okRadButton)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + this.SuspendLayout(); + // + // tableLayoutPanel + // + this.tableLayoutPanel.BackColor = System.Drawing.Color.Transparent; + this.tableLayoutPanel.ColumnCount = 2; + this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F)); + this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F)); + this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0); + this.tableLayoutPanel.Controls.Add(this.radLabelProductName, 1, 0); + this.tableLayoutPanel.Controls.Add(this.radLabelVersion, 1, 1); + this.tableLayoutPanel.Controls.Add(this.radLabelCopyright, 1, 2); + this.tableLayoutPanel.Controls.Add(this.radLabelCompanyName, 1, 3); + this.tableLayoutPanel.Controls.Add(this.radTextBoxDescription, 1, 4); + this.tableLayoutPanel.Controls.Add(this.okRadButton, 1, 5); + this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; + this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9); + this.tableLayoutPanel.Name = "tableLayoutPanel"; + this.tableLayoutPanel.RowCount = 6; + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); + this.tableLayoutPanel.Size = new System.Drawing.Size(388, 265); + this.tableLayoutPanel.TabIndex = 0; + // + // logoPictureBox + // + this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill; + this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image"))); + this.logoPictureBox.Location = new System.Drawing.Point(3, 3); + this.logoPictureBox.Name = "logoPictureBox"; + this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6); + this.logoPictureBox.Size = new System.Drawing.Size(122, 259); + this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.logoPictureBox.TabIndex = 12; + this.logoPictureBox.TabStop = false; + // + // radLabelProductName + // + this.radLabelProductName.Dock = System.Windows.Forms.DockStyle.Fill; + this.radLabelProductName.Location = new System.Drawing.Point(134, 0); + this.radLabelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); + this.radLabelProductName.MaximumSize = new System.Drawing.Size(0, 17); + this.radLabelProductName.Name = "radLabelProductName"; + // + // + // + this.radLabelProductName.RootElement.MaxSize = new System.Drawing.Size(0, 17); + this.radLabelProductName.Size = new System.Drawing.Size(78, 17); + this.radLabelProductName.TabIndex = 19; + this.radLabelProductName.Text = "Product Name"; + // + // radLabelVersion + // + this.radLabelVersion.Dock = System.Windows.Forms.DockStyle.Fill; + this.radLabelVersion.Location = new System.Drawing.Point(134, 26); + this.radLabelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); + this.radLabelVersion.MaximumSize = new System.Drawing.Size(0, 17); + this.radLabelVersion.Name = "radLabelVersion"; + // + // + // + this.radLabelVersion.RootElement.MaxSize = new System.Drawing.Size(0, 17); + this.radLabelVersion.Size = new System.Drawing.Size(44, 17); + this.radLabelVersion.TabIndex = 0; + this.radLabelVersion.Text = "Version"; + // + // radLabelCopyright + // + this.radLabelCopyright.Dock = System.Windows.Forms.DockStyle.Fill; + this.radLabelCopyright.Location = new System.Drawing.Point(134, 52); + this.radLabelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); + this.radLabelCopyright.MaximumSize = new System.Drawing.Size(0, 17); + this.radLabelCopyright.Name = "radLabelCopyright"; + // + // + // + this.radLabelCopyright.RootElement.MaxSize = new System.Drawing.Size(0, 17); + this.radLabelCopyright.Size = new System.Drawing.Size(56, 17); + this.radLabelCopyright.TabIndex = 21; + this.radLabelCopyright.Text = "Copyright"; + // + // radLabelCompanyName + // + this.radLabelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill; + this.radLabelCompanyName.Location = new System.Drawing.Point(134, 78); + this.radLabelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); + this.radLabelCompanyName.MaximumSize = new System.Drawing.Size(0, 17); + this.radLabelCompanyName.Name = "radLabelCompanyName"; + // + // + // + this.radLabelCompanyName.RootElement.MaxSize = new System.Drawing.Size(0, 17); + this.radLabelCompanyName.Size = new System.Drawing.Size(87, 17); + this.radLabelCompanyName.TabIndex = 22; + this.radLabelCompanyName.Text = "Company Name"; + // + // radTextBoxDescription + // + this.radTextBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill; + this.radTextBoxDescription.Location = new System.Drawing.Point(134, 107); + this.radTextBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3); + this.radTextBoxDescription.Multiline = true; + this.radTextBoxDescription.Name = "radTextBoxDescription"; + this.radTextBoxDescription.ReadOnly = true; + // + // + // + this.radTextBoxDescription.RootElement.StretchVertically = true; + this.radTextBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; + this.radTextBoxDescription.Size = new System.Drawing.Size(251, 126); + this.radTextBoxDescription.TabIndex = 23; + this.radTextBoxDescription.TabStop = false; + this.radTextBoxDescription.Text = "Description"; + // + // okRadButton + // + this.okRadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.okRadButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.okRadButton.Location = new System.Drawing.Point(310, 239); + this.okRadButton.Name = "okRadButton"; + this.okRadButton.Size = new System.Drawing.Size(75, 23); + this.okRadButton.TabIndex = 24; + this.okRadButton.Text = "&OK"; + this.okRadButton.Click += new System.EventHandler(this.okRadButton_Click); + // + // AboutBox + // + this.AcceptButton = this.okRadButton; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(406, 283); + this.Controls.Add(this.tableLayoutPanel); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "AboutBox"; + this.Padding = new System.Windows.Forms.Padding(9); + // + // + // + this.RootElement.ApplyShapeToControl = true; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "关于软件"; + this.tableLayoutPanel.ResumeLayout(false); + this.tableLayoutPanel.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelProductName)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelVersion)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelCopyright)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabelCompanyName)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radTextBoxDescription)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.okRadButton)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel; + private System.Windows.Forms.PictureBox logoPictureBox; + private Telerik.WinControls.UI.RadLabel radLabelProductName; + private Telerik.WinControls.UI.RadLabel radLabelVersion; + private Telerik.WinControls.UI.RadLabel radLabelCopyright; + private Telerik.WinControls.UI.RadLabel radLabelCompanyName; + private Telerik.WinControls.UI.RadTextBox radTextBoxDescription; + private Telerik.WinControls.UI.RadButton okRadButton; + } +} diff --git a/HexcalMC/Form/AboutBox.cs b/HexcalMC/Form/AboutBox.cs new file mode 100644 index 0000000..fce52ca --- /dev/null +++ b/HexcalMC/Form/AboutBox.cs @@ -0,0 +1,123 @@ +using System; +using System.IO; +using System.Reflection; +using Telerik.WinControls.UI; + +namespace HexcalMC.Form +{ + internal partial class AboutBox : RadForm + { + public AboutBox() + { + InitializeComponent(); + + // Initialize the AboutBox to display the product information from the assembly information. + // Change assembly information settings for your application through either: + // - Project->Properties->Application->Assembly Information + // - AssemblyInfo.cs + Text = string.Format("关于 {0}", AssemblyTitle); + radLabelProductName.Text = AssemblyProduct; + radLabelVersion.Text = string.Format("Version {0}", AssemblyVersion); + radLabelCopyright.Text = AssemblyCopyright; + radLabelCompanyName.Text = AssemblyCompany; + radTextBoxDescription.Text = AssemblyDescription; + + //设置显示位置,位于母窗体中央 + // this.StartPosition = FormStartPosition.CenterScreen; + } + + private void okRadButton_Click(object sender, EventArgs e) + { + Close(); + } + + + #region Assembly Attribute Accessors + + public string AssemblyTitle + { + get + { + // Get all Title attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(typeof(AssemblyTitleAttribute), false); + // If there is at least one Title attribute + if (attributes.Length > 0) + { + // Select the first one + AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; + // If it is not an empty string, return it + if (titleAttribute.Title != "") + return titleAttribute.Title; + } + + // If there was no Title attribute, or if the Title attribute was the empty string, return the .exe name + return Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); + } + } + + public string AssemblyVersion => Assembly.GetExecutingAssembly().GetName().Version.ToString(); + + public string AssemblyDescription + { + get + { + // Get all Description attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); + // If there aren't any Description attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Description attribute, return its value + return ((AssemblyDescriptionAttribute)attributes[0]).Description; + } + } + + public string AssemblyProduct + { + get + { + // Get all Product attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(typeof(AssemblyProductAttribute), false); + // If there aren't any Product attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Product attribute, return its value + return ((AssemblyProductAttribute)attributes[0]).Product; + } + } + + public string AssemblyCopyright + { + get + { + // Get all Copyright attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); + // If there aren't any Copyright attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Copyright attribute, return its value + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + } + } + + public string AssemblyCompany + { + get + { + // Get all Company attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); + // If there aren't any Company attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Company attribute, return its value + return ((AssemblyCompanyAttribute)attributes[0]).Company; + } + } + + #endregion + } +} \ No newline at end of file diff --git a/HexcalMC/Form/AboutBox.resx b/HexcalMC/Form/AboutBox.resx new file mode 100644 index 0000000..2153d61 --- /dev/null +++ b/HexcalMC/Form/AboutBox.resx @@ -0,0 +1,603 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + 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 + + + \ No newline at end of file diff --git a/HexcalMC/Hexagon.ico b/HexcalMC/Hexagon.ico new file mode 100644 index 0000000..7acfd2f Binary files /dev/null and b/HexcalMC/Hexagon.ico differ diff --git a/HexcalMC/HexcalMC.csproj b/HexcalMC/HexcalMC.csproj index 86ff110..dc960d8 100644 --- a/HexcalMC/HexcalMC.csproj +++ b/HexcalMC/HexcalMC.csproj @@ -63,8 +63,9 @@ Hexagon.ico - - bin\Debug\ACS.SPiiPlusNET.dll + + False + bin\x64\Debug\ACS.SPiiPlusNET.dll packages\ScottPlot.4.1.67\lib\net462\ScottPlot.dll diff --git a/HexcalMC/MainFrom.Designer.cs b/HexcalMC/MainFrom.Designer.cs index afe440d..9167499 100644 --- a/HexcalMC/MainFrom.Designer.cs +++ b/HexcalMC/MainFrom.Designer.cs @@ -78,13 +78,9 @@ this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.groupBox7 = new System.Windows.Forms.GroupBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); - this.lamp_hexcal = new HexcalMC.Lamp(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.textBox3 = new System.Windows.Forms.TextBox(); this.btn_HexcalStop = new System.Windows.Forms.Button(); this.btn_HexcalStart = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); this.groupBox5 = new System.Windows.Forms.GroupBox(); this.grpSafety = new System.Windows.Forms.GroupBox(); this.lblEMG = new System.Windows.Forms.Label(); @@ -122,7 +118,6 @@ this.btnEnable = new System.Windows.Forms.Button(); this.btnDisable = new System.Windows.Forms.Button(); this.groupBox2 = new System.Windows.Forms.GroupBox(); - this.lamp_acs = new HexcalMC.Lamp(); this.txtPort = new System.Windows.Forms.TextBox(); this.txtIP = new System.Windows.Forms.TextBox(); this.btn_ACSStop = new System.Windows.Forms.Button(); @@ -132,9 +127,12 @@ this.groupBox4 = new System.Windows.Forms.GroupBox(); this.formsPlot1 = new ScottPlot.FormsPlot(); this.groupBox3 = new System.Windows.Forms.GroupBox(); - this.textBox_Msg = new System.Windows.Forms.TextBox(); this.tmrMonitor = new System.Windows.Forms.Timer(this.components); this.timer_RefreshUI = new System.Windows.Forms.Timer(this.components); + this.TextBoxMsg = new System.Windows.Forms.RichTextBox(); + this.lamp_hexcal = new HexcalMC.Lamp(); + this.lamp_acs = new HexcalMC.Lamp(); + this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radRibbonBarBackstageView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit(); @@ -228,7 +226,7 @@ this.rtb_motion.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.rtb_motion.TextOrientation = System.Windows.Forms.Orientation.Horizontal; this.rtb_motion.UseCompatibleTextRendering = false; - this.rtb_motion.Click += new System.EventHandler(this.rtb_motion_Click); + this.rtb_motion.Click += new System.EventHandler(this.Rtb_motion_Click); // // radRibbonBarGroup4 // @@ -344,7 +342,7 @@ this.rtb_about.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.rtb_about.TextOrientation = System.Windows.Forms.Orientation.Horizontal; this.rtb_about.UseCompatibleTextRendering = false; - this.rtb_about.Click += new System.EventHandler(this.rtb_about_Click); + this.rtb_about.Click += new System.EventHandler(this.Rtb_about_Click); // // radButtonElement3 // @@ -377,7 +375,7 @@ // this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren; this.radRibbonBar1.ShowExpandButton = false; - this.radRibbonBar1.Size = new System.Drawing.Size(1192, 176); + this.radRibbonBar1.Size = new System.Drawing.Size(1192, 173); this.radRibbonBar1.StartButtonImage = global::HexcalMC.Properties.Resources.Hexagon; this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] { this.radMenuItem2}); @@ -583,7 +581,7 @@ // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; - this.splitContainer1.Location = new System.Drawing.Point(0, 176); + this.splitContainer1.Location = new System.Drawing.Point(0, 173); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 @@ -597,7 +595,7 @@ // this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control; this.splitContainer1.Panel2.Controls.Add(this.groupBox3); - this.splitContainer1.Size = new System.Drawing.Size(1192, 693); + this.splitContainer1.Size = new System.Drawing.Size(1192, 696); this.splitContainer1.SplitterDistance = 760; this.splitContainer1.TabIndex = 2; // @@ -614,46 +612,15 @@ // groupBox1 // this.groupBox1.Controls.Add(this.lamp_hexcal); - this.groupBox1.Controls.Add(this.textBox2); - this.groupBox1.Controls.Add(this.textBox3); this.groupBox1.Controls.Add(this.btn_HexcalStop); this.groupBox1.Controls.Add(this.btn_HexcalStart); this.groupBox1.Controls.Add(this.label3); - this.groupBox1.Controls.Add(this.label4); this.groupBox1.Location = new System.Drawing.Point(14, 19); this.groupBox1.Name = "groupBox1"; - this.groupBox1.Size = new System.Drawing.Size(211, 114); + this.groupBox1.Size = new System.Drawing.Size(701, 114); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; - this.groupBox1.Text = "Hexcal通讯设置"; - // - // lamp_hexcal - // - this.lamp_hexcal.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); - this.lamp_hexcal.Location = new System.Drawing.Point(57, 49); - this.lamp_hexcal.LText = ""; - this.lamp_hexcal.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); - this.lamp_hexcal.Name = "lamp_hexcal"; - this.lamp_hexcal.Shadow = false; - this.lamp_hexcal.Size = new System.Drawing.Size(24, 24); - this.lamp_hexcal.State = -1; - this.lamp_hexcal.TabIndex = 29; - // - // textBox2 - // - this.textBox2.Location = new System.Drawing.Point(103, 52); - this.textBox2.Name = "textBox2"; - this.textBox2.Size = new System.Drawing.Size(91, 21); - this.textBox2.TabIndex = 27; - this.textBox2.Text = "1234"; - // - // textBox3 - // - this.textBox3.Location = new System.Drawing.Point(103, 29); - this.textBox3.Name = "textBox3"; - this.textBox3.Size = new System.Drawing.Size(91, 21); - this.textBox3.TabIndex = 28; - this.textBox3.Text = "10.0.0.1"; + this.groupBox1.Text = "通讯状态"; // // btn_HexcalStop // @@ -661,7 +628,7 @@ this.btn_HexcalStop.Name = "btn_HexcalStop"; this.btn_HexcalStop.Size = new System.Drawing.Size(81, 23); this.btn_HexcalStop.TabIndex = 26; - this.btn_HexcalStop.Text = "关闭"; + this.btn_HexcalStop.Text = "关闭服务"; this.btn_HexcalStop.UseVisualStyleBackColor = true; // // btn_HexcalStart @@ -670,27 +637,18 @@ this.btn_HexcalStart.Name = "btn_HexcalStart"; this.btn_HexcalStart.Size = new System.Drawing.Size(81, 23); this.btn_HexcalStart.TabIndex = 25; - this.btn_HexcalStart.Text = "启动"; + this.btn_HexcalStart.Text = "开启服务"; this.btn_HexcalStart.UseVisualStyleBackColor = true; - this.btn_HexcalStart.Click += new System.EventHandler(this.btn_HexcalStart_Click); + this.btn_HexcalStart.Click += new System.EventHandler(this.Btn_HexcalStart_Click); // // label3 // this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(18, 56); + this.label3.Location = new System.Drawing.Point(18, 29); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(33, 13); this.label3.TabIndex = 23; - this.label3.Text = "端口"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Location = new System.Drawing.Point(18, 33); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(71, 13); - this.label4.TabIndex = 24; - this.label4.Text = "目标设备 IP"; + this.label3.Text = "状态"; // // groupBox5 // @@ -1041,7 +999,7 @@ this.btnEnable.TabIndex = 9; this.btnEnable.Text = "3轴使能"; this.btnEnable.UseVisualStyleBackColor = true; - this.btnEnable.Click += new System.EventHandler(this.btnEnable_Click); + this.btnEnable.Click += new System.EventHandler(this.BtnEnable_Click); // // btnDisable // @@ -1051,7 +1009,7 @@ this.btnDisable.TabIndex = 8; this.btnDisable.Text = "3轴取消"; this.btnDisable.UseVisualStyleBackColor = true; - this.btnDisable.Click += new System.EventHandler(this.btnDisable_Click); + this.btnDisable.Click += new System.EventHandler(this.BtnDisable_Click); // // groupBox2 // @@ -1069,18 +1027,6 @@ this.groupBox2.TabStop = false; this.groupBox2.Text = "ACS通讯设置"; // - // lamp_acs - // - this.lamp_acs.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); - this.lamp_acs.Location = new System.Drawing.Point(57, 50); - this.lamp_acs.LText = ""; - this.lamp_acs.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); - this.lamp_acs.Name = "lamp_acs"; - this.lamp_acs.Shadow = false; - this.lamp_acs.Size = new System.Drawing.Size(24, 24); - this.lamp_acs.State = -1; - this.lamp_acs.TabIndex = 30; - // // txtPort // this.txtPort.Location = new System.Drawing.Point(103, 52); @@ -1105,7 +1051,7 @@ this.btn_ACSStop.TabIndex = 20; this.btn_ACSStop.Text = "断开"; this.btn_ACSStop.UseVisualStyleBackColor = true; - this.btn_ACSStop.Click += new System.EventHandler(this.btn_ACSStop_Click); + this.btn_ACSStop.Click += new System.EventHandler(this.Btn_ACSStop_Click); // // btn_ACSStart // @@ -1115,7 +1061,7 @@ this.btn_ACSStart.TabIndex = 19; this.btn_ACSStart.Text = "连接"; this.btn_ACSStart.UseVisualStyleBackColor = true; - this.btn_ACSStart.Click += new System.EventHandler(this.btn_ACSStart_Click); + this.btn_ACSStart.Click += new System.EventHandler(this.Btn_ACSStart_Click); // // label2 // @@ -1156,7 +1102,7 @@ // // groupBox3 // - this.groupBox3.Controls.Add(this.textBox_Msg); + this.groupBox3.Controls.Add(this.TextBoxMsg); this.groupBox3.Location = new System.Drawing.Point(13, 6); this.groupBox3.Name = "groupBox3"; this.groupBox3.Padding = new System.Windows.Forms.Padding(5); @@ -1165,25 +1111,55 @@ this.groupBox3.TabStop = false; this.groupBox3.Text = "交互信息"; // - // textBox_Msg - // - this.textBox_Msg.Dock = System.Windows.Forms.DockStyle.Fill; - this.textBox_Msg.Location = new System.Drawing.Point(5, 20); - this.textBox_Msg.Margin = new System.Windows.Forms.Padding(5); - this.textBox_Msg.Multiline = true; - this.textBox_Msg.Name = "textBox_Msg"; - this.textBox_Msg.Size = new System.Drawing.Size(395, 656); - this.textBox_Msg.TabIndex = 0; - // // tmrMonitor // this.tmrMonitor.Interval = 50; - this.tmrMonitor.Tick += new System.EventHandler(this.tmrMonitor_Tick); + this.tmrMonitor.Tick += new System.EventHandler(this.TmrMonitor_Tick); // // timer_RefreshUI // this.timer_RefreshUI.Interval = 1000; - this.timer_RefreshUI.Tick += new System.EventHandler(this.timer_RefreshUI_Tick); + this.timer_RefreshUI.Tick += new System.EventHandler(this.Timer_RefreshUI_Tick); + // + // TextBoxMsg + // + this.TextBoxMsg.Dock = System.Windows.Forms.DockStyle.Fill; + this.TextBoxMsg.ForeColor = System.Drawing.Color.Yellow; + this.TextBoxMsg.Location = new System.Drawing.Point(5, 20); + this.TextBoxMsg.Name = "TextBoxMsg"; + this.TextBoxMsg.Size = new System.Drawing.Size(395, 656); + this.TextBoxMsg.TabIndex = 0; + this.TextBoxMsg.Text = ""; + // + // lamp_hexcal + // + this.lamp_hexcal.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); + this.lamp_hexcal.Location = new System.Drawing.Point(57, 22); + this.lamp_hexcal.LText = ""; + this.lamp_hexcal.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.lamp_hexcal.Name = "lamp_hexcal"; + this.lamp_hexcal.Shadow = false; + this.lamp_hexcal.Size = new System.Drawing.Size(24, 24); + this.lamp_hexcal.State = -1; + this.lamp_hexcal.TabIndex = 29; + // + // lamp_acs + // + this.lamp_acs.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134))); + this.lamp_acs.Location = new System.Drawing.Point(57, 50); + this.lamp_acs.LText = ""; + this.lamp_acs.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.lamp_acs.Name = "lamp_acs"; + this.lamp_acs.Shadow = false; + this.lamp_acs.Size = new System.Drawing.Size(24, 24); + this.lamp_acs.State = -1; + this.lamp_acs.TabIndex = 30; + // + // contextMenuStrip1 + // + this.contextMenuStrip1.BackColor = System.Drawing.SystemColors.Control; + this.contextMenuStrip1.Name = "contextMenuStrip1"; + this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4); // // MainFrom // @@ -1205,6 +1181,7 @@ this.Text = "运动补偿中间件"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainFrom_FormClosed); this.Load += new System.EventHandler(this.MainFrom_Load); + this.Shown += new System.EventHandler(this.MainFrom_Shown); ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radRibbonBarBackstageView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit(); @@ -1225,7 +1202,6 @@ this.groupBox2.PerformLayout(); this.groupBox4.ResumeLayout(false); this.groupBox3.ResumeLayout(false); - this.groupBox3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); @@ -1286,13 +1262,9 @@ private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; private System.Windows.Forms.GroupBox groupBox3; - private System.Windows.Forms.TextBox textBox_Msg; - private System.Windows.Forms.TextBox textBox2; - private System.Windows.Forms.TextBox textBox3; private System.Windows.Forms.Button btn_HexcalStop; private System.Windows.Forms.Button btn_HexcalStart; private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label4; private System.Windows.Forms.GroupBox groupBox4; private ScottPlot.FormsPlot formsPlot1; private System.Windows.Forms.GroupBox groupBox5; @@ -1338,5 +1310,7 @@ private Lamp lamp_acs; private System.Windows.Forms.Timer timer_RefreshUI; private Telerik.WinControls.UI.RadLabelElement rle_timer; + private System.Windows.Forms.RichTextBox TextBoxMsg; + private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; } } diff --git a/HexcalMC/MainFrom.cs b/HexcalMC/MainFrom.cs index 720d277..07a5d98 100644 --- a/HexcalMC/MainFrom.cs +++ b/HexcalMC/MainFrom.cs @@ -1,17 +1,63 @@ -using ACS.SPiiPlusNET; +using System; +using System.Diagnostics; +using System.IO; +using System.Windows.Forms; +using ACS.SPiiPlusNET; using HexcalMC.Base; using HexcalMC.Form; using HexcalMC.Hexcal; using HexcalMC.Properties; -using System; -using System.Diagnostics; -using System.Windows.Forms; using Telerik.WinControls.UI; namespace HexcalMC { public partial class MainFrom : RadRibbonForm { + public MainFrom() + { + InitializeComponent(); + } + + private void MainFrom_Load(object sender, EventArgs e) + { + FormBorderStyle = FormBorderStyle.FixedSingle; // 设置窗体边框样式为固定大小 + MaximizeBox = false; // 禁用窗体的最大化按钮 + DebugDfn.textBox_Msg = TextBoxMsg; + + double[] dataX = { 1, 2, 3, 4, 5 }; + double[] dataY = { 1, 4, 9, 16, 25 }; + + formsPlot1.Plot.AddScatter(dataX, dataY); + formsPlot1.Refresh(); + + //启动界面刷新 + timer_RefreshUI.Start(); + } + + private void MainFrom_Shown(object sender, EventArgs e) + { + //启动服务端,用于接收hexcal传来的指令 + StartServer(); + } + + private void MainFrom_FormClosed(object sender, FormClosedEventArgs e) + { + MyBase.TraceWriteLine("关闭程序"); + DebugDfn._strEndTime = DateTime.Now.ToString("yyyy.MM.dd HH-mm-ss"); + timer_RefreshUI.Stop(); + + string CopyFileName = DebugDfn.StrDebugSavePath + "Debug(" + DebugDfn._strStartTime + " To " + + DebugDfn._strEndTime + ")" + ".txt"; + if (File.Exists(DebugDfn.StrDebugSavePath)) + File.Copy(DebugDfn.StrDebugSavePath, CopyFileName); + if (Errors.ErrorWrite != null) + Errors.ErrorWrite.Close(); + if (Errors.OtherWrite != null) + Errors.OtherWrite.Close(); + if (Errors.StatusWrite != null) + Errors.StatusWrite.Close(); + } + #region hexcal变量区 private TcpIpServer _mTcpIpServer; //创建tcpserver,用于接收hexcal传来的指令,并解析传递平台 @@ -46,28 +92,6 @@ namespace HexcalMC #endregion 运动平台变量区 - public MainFrom() - { - InitializeComponent(); - } - - private void MainFrom_Load(object sender, EventArgs e) - { - FormBorderStyle = FormBorderStyle.FixedSingle; // 设置窗体边框样式为固定大小 - MaximizeBox = false; // 禁用窗体的最大化按钮 - - double[] dataX = { 1, 2, 3, 4, 5 }; - double[] dataY = { 1, 4, 9, 16, 25 }; - - formsPlot1.Plot.AddScatter(dataX, dataY); - formsPlot1.Refresh(); - - //启动界面刷新 - timer_RefreshUI.Start(); - } - - - #region hexcal软件相关 private void StartServer() @@ -212,8 +236,8 @@ namespace HexcalMC SendMsgToHexcal("%"); } else if (string.Equals( - "PRBPIN 0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000", - msg)) + "PRBPIN 0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000", + msg)) { SendMsgToHexcal("%"); } @@ -263,7 +287,7 @@ namespace HexcalMC #region ACS平台相关 - private void btnEnable_Click(object sender, EventArgs e) //使能所有轴 + private void BtnEnable_Click(object sender, EventArgs e) //使能所有轴 { Axis[] axisList = { @@ -272,13 +296,13 @@ namespace HexcalMC _acs.EnableM(axisList); } - private void btnDisable_Click(object sender, EventArgs e) //轴取消 + private void BtnDisable_Click(object sender, EventArgs e) //轴取消 { // Disable all of axes _acs.DisableAll(); } - private void tmrMonitor_Tick(object sender, EventArgs e) //用于刷新状态 + private void TmrMonitor_Tick(object sender, EventArgs e) //用于刷新状态 { int iAxisNo = cboAxisNo.SelectedIndex; if (_mBConnected) @@ -291,7 +315,7 @@ namespace HexcalMC // length is total number of axes) // // * Library function can read only 1 axis information, so if you want to read - // several axes, you have to call the function many times. (This may cause + // several axes, you have to call the function many times. (This may cause // communication delay.) Recommand (if you want to read many axes) : read/write // variable using ReadVariable, ReadVariableScalar, ReadVariableVector, ReadVariableMatrix @@ -323,11 +347,11 @@ namespace HexcalMC // txtRPOS.Text = String.Format("{0:0.0000}", m_lfRPos); //参考位置 rtb_xPos.Text = string.Format("{0:0.0000}", _mLfFPos); //反馈位置 - // txtPE.Text = - // String.Format("{0:0.0000}", - // m_lfPE); //实际速度 - // txtFVEL.Text = - // String.Format("{0:0.0000}", m_lfFVEL);//位置误差 + // txtPE.Text = + // String.Format("{0:0.0000}", + // m_lfPE); //实际速度 + // txtFVEL.Text = + // String.Format("{0:0.0000}", m_lfFVEL);//位置误差 // Read left/right hardware limits state ACSPL+ Variable : FAULT (integer) _mObjReadVar = @@ -352,7 +376,7 @@ namespace HexcalMC } } - private void btn_ACSStart_Click(object sender, EventArgs e) //连接 + private void Btn_ACSStart_Click(object sender, EventArgs e) //连接 { btn_ACSStart.Enabled = false; btn_ACSStop.Enabled = true; @@ -362,7 +386,7 @@ namespace HexcalMC tmrMonitor.Start(); } - private void btn_ACSStop_Click(object sender, EventArgs e) //断开连接 + private void Btn_ACSStop_Click(object sender, EventArgs e) //断开连接 { if (_mBConnected) _acs.CloseComm(); @@ -372,12 +396,7 @@ namespace HexcalMC btn_ACSStop.Enabled = false; } - private void MainFrom_FormClosed(object sender, FormClosedEventArgs e) - { - timer_RefreshUI.Stop(); - } - - private void btn_HexcalStart_Click(object sender, EventArgs e) + private void Btn_HexcalStart_Click(object sender, EventArgs e) { } @@ -398,20 +417,20 @@ namespace HexcalMC #region 菜单栏 - private void rtb_motion_Click(object sender, EventArgs e) //ACS调试页面 + private void Rtb_motion_Click(object sender, EventArgs e) //ACS调试页面 { Motion motion = new Motion(); motion.Show(); } - private void rtb_about_Click(object sender, EventArgs e) //关于界面 + private void Rtb_about_Click(object sender, EventArgs e) //关于界面 { AboutBox mAboutBox = new AboutBox(); mAboutBox.StartPosition = FormStartPosition.CenterScreen; mAboutBox.Show(); } - private void timer_RefreshUI_Tick(object sender, EventArgs e) //UI刷新 + private void Timer_RefreshUI_Tick(object sender, EventArgs e) //UI刷新 { //状态灯刷新 lamp_acs.State = _mBConnected ? LampColor.Green : LampColor.Silver; diff --git a/HexcalMC/MainFrom.resx b/HexcalMC/MainFrom.resx index 6a5904a..c720b6f 100644 --- a/HexcalMC/MainFrom.resx +++ b/HexcalMC/MainFrom.resx @@ -529,6 +529,9 @@ 137, 4 + + 139, 17 + 25 diff --git a/HexcalMC/Program.cs b/HexcalMC/Program.cs index 1c3b960..2ed4016 100644 --- a/HexcalMC/Program.cs +++ b/HexcalMC/Program.cs @@ -1,5 +1,8 @@ -using System; +using HexcalMC.Base; +using System; +using System.Diagnostics; using System.Windows.Forms; +using static Telerik.WinControls.UI.Export.ExportSettings; //////////////////////////////////////////////////////////////////////////////////////////////////// @@ -34,6 +37,14 @@ namespace HexcalMC { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); + + DebugDfn._strStartTime = DateTime.Now.ToString("yyyy-MM-dd HH-mm-ss"); + System.IO.TextWriter log = new System.IO.StreamWriter(DebugDfn.StrDebugFile); + System.Diagnostics.TextWriterTraceListener logger; + logger = new System.Diagnostics.TextWriterTraceListener(log); + Trace.Listeners.Add(logger); + MyBase.TraceWriteLine("--软件Main函数开始"); + Application.Run(new MainFrom()); } } diff --git a/HexcalMC/bin/x64/Debug/ACS.SPiiPlusNET.dll b/HexcalMC/bin/x64/Debug/ACS.SPiiPlusNET.dll new file mode 100644 index 0000000..7b6f6fa Binary files /dev/null and b/HexcalMC/bin/x64/Debug/ACS.SPiiPlusNET.dll differ diff --git a/HexcalMC/bin/x64/Debug/HexcalMC.exe b/HexcalMC/bin/x64/Debug/HexcalMC.exe new file mode 100644 index 0000000..2b73412 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/HexcalMC.exe differ diff --git a/HexcalMC/bin/x64/Debug/HexcalMC.exe.config b/HexcalMC/bin/x64/Debug/HexcalMC.exe.config new file mode 100644 index 0000000..725d418 --- /dev/null +++ b/HexcalMC/bin/x64/Debug/HexcalMC.exe.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/HexcalMC/bin/x64/Debug/HexcalMC.pdb b/HexcalMC/bin/x64/Debug/HexcalMC.pdb new file mode 100644 index 0000000..62432a2 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/HexcalMC.pdb differ diff --git a/HexcalMC/bin/x64/Debug/ScottPlot.WinForms.dll b/HexcalMC/bin/x64/Debug/ScottPlot.WinForms.dll new file mode 100644 index 0000000..24c5a8f Binary files /dev/null and b/HexcalMC/bin/x64/Debug/ScottPlot.WinForms.dll differ diff --git a/HexcalMC/bin/x64/Debug/ScottPlot.dll b/HexcalMC/bin/x64/Debug/ScottPlot.dll new file mode 100644 index 0000000..5a3df6a Binary files /dev/null and b/HexcalMC/bin/x64/Debug/ScottPlot.dll differ diff --git a/HexcalMC/bin/x64/Debug/ScottPlot.xml b/HexcalMC/bin/x64/Debug/ScottPlot.xml new file mode 100644 index 0000000..24e552b --- /dev/null +++ b/HexcalMC/bin/x64/Debug/ScottPlot.xml @@ -0,0 +1,7989 @@ + + + + ScottPlot + + + + + This object describes the 4 edges of a rectangular view in 2D space. + Values may contain NaN to describe undefined or uninitialized edges. + + + + + Return a new set of axis limits panned by the given distance (in axis / coordinate units). + + + + + Return a new set of axis limits panned by the given fraction. + If is 0.1 then the returned limits will be shifted 10% to the right. + If is 0.1 then the returned limits will be shifted 10% upward. + + + + + AxisLimits representing uninitialized or "no data" limits (all limits are NaN) + + + + + AxisLimits with finite vertical limits and undefined (NaN) horizontal limits + + + + + AxisLimits with finite horizontal limits and undefined (NaN) vertical limits + + + + + Return the maximum boundary for both sets of axis limits + + + + + Return the maximum boundary for this set of axis limits and the given coordinates + + + + + Return the maximum boundary for this set of axis limits and the given coordinates + + + + + Returns True if the coordinate is contained inside these axis limits + + + + + The control back end module contains all the logic required to manage a mouse-interactive + plot to display in a user control. However, this module contains no control-specific dependencies. + User controls can instantiate this object, pass mouse and resize event information in, and have + renders triggered using events. + + + + + This event is invoked when an existing Bitmap is redrawn. + e.g., after rendering following a click-drag-pan mouse event. + + + + + This event is invoked after a new Bitmap was created. + e.g., after resizing the control, requiring a new Bitmap of a different size + + + + + This event is invoked when the cursor is supposed to change. + Cursor changes may be required when hovering over draggable plottable objects. + + + + + This event is invoked when the axis limts change. + This is typically the result of a pan or zoom operation. + + + + + This event is invoked when the user right-clicks the control with the mouse. + It is typically used to deploy a context menu. + + + + + This event is invoked when the user left-clicks the control with the mouse. + It is typically used to interact with custom plot types. + + + + + This event is invoked when the user left-clicks a plottable control with the mouse. + + + + + This event is invoked after the mouse moves while dragging a draggable plottable. + + + + + This event is invoked after the mouse moves while dragging a draggable plottable. + + + + + The control configuration object stores advanced customization and behavior settings + for mouse-interactive plots. + + + + + True if the middle mouse button is pressed + + + + + True if the right mouse button is pressed + + + + + True if the left mouse button is pressed + + + + + Current position of the mouse in pixels + + + + + Current position of the mouse in pixels + + + + + Holds the plottable actively being dragged with the mouse. + Contains null if no plottable is being dragged. + + + + + True when a zoom rectangle is being drawn and the mouse button is still down + + + + + The plot underlying this control. + + + + + The settings object underlying the plot. + + + + + The latest render is stored in this bitmap. + New renders may be performed on this existing bitmap. + When a new bitmap is created, this bitmap will be stored in OldBitmaps and eventually disposed. + + + + + Bitmaps that are created are stored here so they can be kept track of and + disposed properly when new bitmaps are created. + + + + + Store last render limits so new renders can know whether the axis limits + have changed and decide whether to invoke the AxesChanged event or not. + + + + + Unique identifier of the plottables list that was last rendered. + This value is used to determine if the plottables list was modified (requiring a re-render). + + + + + This is set to True while the render loop is running. + This prevents multiple renders from occurring at the same time. + + + + + The style of cursor the control should display + + + + + The events processor invokes renders in response to custom events + + + + + The event factor creates event objects to be handled by the event processor + + + + + Number of times the current bitmap has been rendered on. + + + + + Total number of renders performed. + Note that at least one render occurs before the first request to measure the layout and calculate data area. + This means the first render increments this number twice. + + + + + Tracks the total distance the mouse was click-dragged (rectangular pixel units) + + + + + True if the mouse was dragged (with a button down) long enough to quality as a drag instead of a click + + + + + Indicates whether Render() has been explicitly called by the user. + Renders requested by resize events do not count. + + + + + Variable name for the user control tied to this backend. + + + + + Plots whose axes and layout will be updated when this plot changes + + + + + Create a back-end for a user control + + initial bitmap size (pixels) + initial bitmap size (pixels) + variable name of the user control using this backend + + + + The host control may instantiate the back-end and start sending it events + before it has fully connected its event handlers. To prevent processing events before + the host is control is ready, the processor will be stopped until is called by the host control. + + + + + Reset the back-end by creating an entirely new plot of the given dimensions + + + + + Reset the back-end by replacing the existing plot with one that has already been created + + + + + Return a multi-line string describing the default mouse interactions. + This can be useful for displaying a help message in a user control. + + + + + Return the most recently rendered Bitmap. + This method also disposes old Bitmaps if they exist. + + + + + Render onto the existing Bitmap. + Quality describes whether anti-aliasing will be used. + + + + + Add error text on top of the rendered plot + + + + + Request a render using the render queue. + This method does not block the calling thread. + + + + + Check if the number of plottibles has changed and if so request a render. + This is typically called by a continuously running timer in the user control. + + + + + Resize the control (creates a new Bitmap and requests a render) + + new width (pixels) + new height (pixels) + Render using the queue (best for mouse events), otherwise render immediately. + + + + Indicate a mouse button has just been pressed + + + + + Return the mouse position on the plot (in coordinate space) for the latest X and Y coordinates + + + + + Return the mouse position (in pixel space) for the last observed mouse position + + + + + Indicate the mouse has moved to a new position + + + + + Process an event using the render queue (non-blocking) or traditional rendering (blocking) + based on the UseRenderQueue flag in the Configuration module. + + + + + Call this when the mouse moves without any buttons being down. + It will only update the cursor based on what's beneath the cursor. + + + + + Set the cursor based on whether a draggable is engaged or not, + then invoke the CursorChanged event. + + + + + Indicate a mouse button has been released. + This may initiate a render (and/or a delayed render). + + + + + + Indicate the left mouse button has been double-clicked. + The default action of a double-click is to toggle the benchmark. + + + + + Apply a scroll wheel action, perform a low quality render, and later re-render in high quality. + + + + + Add a plot which will have its axes and layout updated when this plot changes + + + + + Control whether panning is enabled + + + + + Control whether zooming is enabled (via left-click-drag, middle-click-drag, and scrollwheel) + + + + + Manual override to set anti-aliasing (high quality) behavior for all renders. + Refer to the QualityConfiguration field for more control over quality in response to specific interactions. + + + + + This module customizes anti-aliasing (high quality) behavior in response to interactive events. + + + + + Control whether left-click-drag panning is enabled + + + + + Control whether right-click-drag zooming is enabled + + + + + Control whether scroll wheel zooming is enabled + + + + + Fractional amount to zoom in or out when the mouse wheel is scrolled. + Value must be between 0 and 1 (default is 0.15). + + + + + Number of milliseconds after low quality scroll wheel zoom to re-render using high quality + + + + + Control whether middle-click-drag zooming to a rectangle is enabled. + + + + + Control whether ALT + left-click-drag rectangle zoom is enabled. + + + + + Control whether middle-click can be used to reset axis limits + + + + + Horizontal margin between the edge of the data and the edge of the plot when middle-click AutoAxis is called + + + + + Vertical margin between the edge of the data and the edge of the plot when middle-click AutoAxis is called + + + + + If enabled, double-clicking the plot will toggle benchmark visibility + + + + + If enabled, the vertical axis limits cannot be modified by mouse actions + + + + + If enabled, the horizontal axis limits cannot be modified by mouse actions + + + + + If enabled the control will automatically re-render as plottables are added and removed + + + + + Controls whether or not a render event will be triggered if a change in the axis limits is detected + + + + + Permitting dropped frames makes interactive mouse manipulation feel faster + + + + + If true, control interactions will be non-blocking and renders will occur after interactions. + If false, control interactions will be blocking while renders are drawn. + + + + + Distance (in pixels) the mouse can travel with a button held-down for it to be treated as a click (not a drag). + A number slightly above zero allows middle-click to call AxisAuto() even if it was draged a few pixels by accident. + + + + + Now that the timer-based auto-render functionality has been removed users must manually call Render() at least once. + This option controls whether a warning message is shown if the user did not call Render() manually. + + + + + Control whether the plot should be stretched when DPI scaling is in use. + Enabling stretching may result in blurry plots. + Disabling stretching may results in plots with text that is too small. + + + + + DPI scaling ratio to use for plot size and mouse tracking. + Will return 1.0 if is enabled. + + + + + This event is invoked whenever the display scale is changed. + + + + + Set the DpiStretchRatio to that of the active display. + Call this if you suspect DPI scaling has changed. + + + + + If true, controls that support the plot object editor will display an option to launch it in the right-click menu + + + + + Default cursor to use (when not hovering or dragging an interactive plottable) + + + + + Notify linked plots when axis, size, or layout of this plot changes. + Temporarially disable this when applying configuration from another linked plot + to prevent an infinite circular update loop. + + + + + If enabled, right-click-drag zooming will zoom in and out relative to the + mouse down cursor location instead of the center of the plot. + + + + + This class detects and stores display scale. + The scale ratio is used to calculate plot size and + translate mouse coordinates to real pixel coordinates. + + + + + Scale ratio in use by the active display. + This ratio is used when scaling is enabled. + + + + + Scale ratio to use if scaling is disabled. + + + + + Control whether the plot bitmap should be stretched if display scaling is active. + When enabled text will be large but may be blurry. + When disabled text will be sharp but may be too small to read on high-resolution displays. + + + + + Current display scale ratio. + + + + + This event is invoked whenever the display scale is changed. + + + + + Update the scale ratio using that of the active display. + Call this method if you expect the display scale has changed. + + + + + This class takes details about interactions and builds them into event objects which can + be passed into the event processor for processing/rendering when the render queue is free. + + + + + This event processor process incoming events and invokes renders as needed. + This class contains logic to optionally display a fast preview render and a delayed high quality render. + + + + + List of events that have not yet been processed + + + + + The event processor loop will hang infinitely until this is set to True + + + + + This timer is used for delayed rendering. + It is restarted whenever an event is processed which requests a delayed render. + + + + + This is true while the processor is processing events and/or waiting for a delayed render. + + + + + Time to wait after a low-quality render to invoke a high quality render + + + + + When a render is required this Action will be invoked. + Its argument indicates whether low quality should be used. + + + + + Create a processor to invoke renders in response to incoming events + + Action to invoke to perform a render. Bool argument is LowQuality. + Milliseconds after low-quality render to re-render using high quality. + + + + Perform a high quality render. + Call this instead of the action itself because this has better-documented arguments. + + + + + Perform a low quality render. + Call this instead of the action itself because this has better-documented arguments. + + + + + Add an event to the queue and process it when it is ready. + After all events are processed a render will be called automatically by the queue processor. + + + + + Perform a low quality preview render if the render type allows it + + + + + Perform a final high quality render if the render type allows it. + + Return False if the final render needs to happen later + + + + Process every event in the queue. + A render will be executed after each event is processed. + A slight delay will be added between queue checks. + + + + + This event describes what happens when the mouse button is lifted after + middle-click-dragging a rectangle to zoom into. The coordinates of that rectangle + are calculated, and the plot's axis limits are adjusted accordingly. + + + + + This event toggles visibility of the benchmark. + This event is typically called after double-clicking the plot. + + + + + This event calls AxisAuto() on all axes. + This is typically called after middle-clicking. + + + + + This event occurs when the user is actively middle-click-dragging to zoom. + A zoom window is drawn on the screen, but axis limits have not yet been changed. + + + + + This event describes represents interactive panning. + It is assume the plot has already been reset to the pre-mouse-interaction state, + and processing of this event pans the plot on the axes according to the distance + the mouse has moved. + This is typically called on MouseMove events when the left button is held down. + + + + + This event describes a zoom operation performed by scrolling the mouse wheel. + + + + + This event is called after the mouse button is lifted (typically following panning and zooming). + It assumes all the axis manipulation (panning/zooming) has already been performed, + and the purpose of this event is only to request an immediate high quality render. + + + + + This event describes represents interactive zooming. + It is assume the plot has already been reset to the pre-mouse-interaction state, + and processing of this event zooms the plot on the axes according to the distance + the mouse has moved. + This is typically called on MouseMove events when the right button is held down. + + + + + This event describes what happens when a draggable plottable (like an axis line) + has been moved from its initial position. This event places the plottable of interest + at the current mouse position. + This is typically called on MouseMove events while left-click-dragging a draggable plottable. + + + + + Interactive ScottPlot controls implement this interface. + + + + + The plot displayed by this control + + + + + Redraw the plot and display it in the control + + + + + Configuration object holding advanced control options + + + + + This class defines the quality to use for renders after different interactive events occur. + Programmatically-triggered events typically use high quality mode (anti-aliasing enabled). + Real-time mouse-interactive events like zooming and panning typically use low quality mode. + It is possible to automatically render using high quality after a period of inactivity. + + + + + Anti-aliasing always off + + + + + Anti-aliasing off while dragging (more responsive) but on otherwise + + + + + Anti-aliasing always on + + + + + Describes an X/Y position in coordinate space + + + + + True as lone as neither coordinate is NaN or Infinity + + + + + Return the distance to another coordinate (in coordinate units) + + + + + Describes the location and size of a rectangle in coordinate space + + + + + Describes a size in coordinate space + + + + + Represents direction and magnitude in coordinate space + + + + + Generates an array of numbers with constant spacing. + + The number of points + The space between points. Default 1. + The first point. Default 0 + An array of numbers with constant spacing. + + + + Generates an array of sine values of an input array. + + The arguments to the sine function. + A number to multiply the output by. Default 1. + An array of sine values + + + + Generates an array of sine values. + + The number of values to generate. + The number of periods. Default 1. + The number to increment the output by. Default 0. + The number to multiply the output by. Default 1. + The fraction of a period to offset by. Default 0. + An array of sine values + + + + Return data for a sine wave that increases frequency toward the end of an array. + This function may be useful for inspecting rendering artifacts when data is displayed at different densities. + + The number of values to generate. + Increasing this value increases maximum frequency. + An array of values + + + + Generates an array of cosine values of an input array. + + The arguments to the cosine function. + A number to multiply the output by. Default 1. + An array of cosine values + + + + Generates an array of cosine values. + + The number of values to generate. + The number of periods. Default 1. + The number to increment the output by. Default 0. + The number to multiply the output by. Default 1. + The fraction of a period to offset by. Default 0. + An array of cosine values + + + + Generates an array of tangent values of an input array. + + The arguments to the tangent function. + A number to multiply the output by. Default 1. + An array of tangent values + + + + Generates an array of random numbers following a uniform distribution on the interval [offset, multiplier]. + + The Random object to use. + The number of random points to generate. + The maximum number above offset that may be generated. + The minimum number that may be generated. + An array of random numbers. + + + + Generates a 2D array of random numbers between 0 and 1 (uniform distribution) + + The Random object to use. + number of rows (dimension 0) + number of columns (dimension 1) + Multiply values by this number after generation + Add to values after multiplication + 2D array filled with random numbers + + + + Generates a 2D array of numbers with constant spacing. + + + + The space between points. + The first point. + + + + + Generates a 2D sine pattern. + + + + Frequency factor in x direction. + Frequency factor in y direction. + Intensity factor. + + + + + Generate a 2D array in a diagonal gradient pattern + + + + + + + + + + Generates an array of random numbers following a uniform distribution on the interval [offset, multiplier]. + + The Random object to use. + The number of random points to generate. + The maximum number above offset that may be generated. + The minimum number that may be generated. + An array of random numbers. + + + + Generates a single value from a normal distribution. + + The Random object to use. + The mean of the distribution. + The standard deviation of the distribution. + The maximum distance from the mean to generate, given as a multiple of the standard deviation. + A single value from a normal distribution. + + + + Generates an array of values from a normal distribution. + + The number to seed the random number generator with. + The number of points to generate. + The mean of the distribution. + The standard deviation of the distribution. + The maximum distance from the mean to generate, given as a multiple of the standard deviation. + An array of values from a normal distribution. + + + + Generates an array of values from a normal distribution. + + The Random object to use. + The number of points to generate. + The mean of the distribution. + The standard deviation of the distribution. + The maximum distance from the mean to generate, given as a multiple of the standard deviation. + An array of values from a normal distribution. + + + + Generates an array of data with normally distributed residuals about a line. + + The Random object to use. + The number of points to generate. Default 100. + The slope of the line. Default 1. + The y-intercept of the line. Default 0. + The standard deviation of the residuals. Default 0.1 + An array of approximately linear data. + + + + Generates an array of data with uniformally distributed residuals about a sinusoidal curve. + + The Random object to use. + The number of points to generate. + The number of periods. Default 1. + Twice the maximum residual, in units of mult. Default 0.5 + The number to multiply the residuals by. Default 1. + An array of approximately sinusoidal data. + + + + Generates a random color. + + The Random object to use. + The min of each component. Default 0. + The max of each component. Default 255. + A random color. + + + + Return the cumulative sum of a random set of numbers using a fixed seed + + The number of points to generate. + The max difference between points in the walk. Default 1. + The first point in the walk. Default 0. + The cumulative sum of a random set of numbers. + + + + Return the cumulative sum of a random set of numbers. + + The random object to use. + The number of points to generate. + The max difference between points in the walk. Default 1. + The first point in the walk. Default 0. + The cumulative sum of a random set of numbers. + + + + Generate unevenly-spaced X/Y points. + X values walk upward (by values from 0 to 1) + Y values walk randomly (by values from -1 to 1) + + + + + Return OHLC array with random prices X positions as DateTime.ToOATime() values using the given time delta + + The random object to use. + The number of prices to generate. + The difference in time between prices. + The max difference between base prices around which that day's prices independently vary. Default 10. + The initial base price. Default 123.45 + OHLC array with random prices + + + + Return OHLC array with random prices X positions as sequential numbers (0, 1, 2, etc.) + + The random object to use. + The number of prices to generate. + The max difference between base prices around which that day's prices independently vary. Default 10. + The initial base price. Default 123.45 + OHLC array with random prices + + + + Return OHLC array with random prices X positions as sequential numbers (0, 1, 2, etc.) + + The random object to use. + The number of prices to generate. + The max difference between base prices around which that day's prices independently vary. Default 10. + The initial base price. Default 123.45 + The minutes between prices. Cumulative with deltaDays. Default 0. + The days between prices. Cumulative with deltaMinutes. Default 1. + Whether to use TimeSpan or integer x axis. + OHLC array with random prices + + + + Generates a random span. + + The random object to use. + The minimum of the span. Default 0. + Tge naximum of the span. Default 100. + The minimum length of the span. Default 10. + A random span. + + + + Generates a range of values starting at 0 and separated by 1. + + The end of the range. + A range of values. + + + + Generates a range of values separated by 1. + + The start of the range. + The end of the range. + A range of values. + + + + Generates a range of values. + + The start of the range. + The end of the range. + The space between values. + Indicates whether to include the stop point in the range. Default false. + A range of values. + + + + Generates an array of zeros + + The number of zeroes to generate + An array of zeros + + + + Generates an array of ones + + The number of ones to generate + An array of ones + + + + Generates a Bitmap from data on the range [0, 255] + + The data to use. + The colormap to use. + A Bitmap + + + + Generates a sample Bitmap. + + A sample Bitmap + + + + Returns a sample 2D array of grayscale values as a nullable array with values scaled from 0 to 1. + + + + + Returns an image of the Mona Lisa as a 2D array (65 x 100) of grayscale values (0-255) + + + + + Recording of a neuronal action potential (100 ms, 20 kHz sample rate, mV units) + + Recording of a neuronal action potential + + + + Return a copy of the input array with large spans of NaN. + The higher the stability, the larger the spans are. + + + + + Return a new array of given length, filled with . + + + + + Return a new array of given length, filled with . + + + + + Generate clusters of random coordinates designed to appear like flow cytometry data + + + + + Name of this colormap + + + + + Create new instances of every colormap and return them as an array. + + + + + + Return the names of all available colormaps. + + + + + + Create a new colormap by its name. + + colormap name + if false the default colormap (Viridis) will be returned + + + + + Convert intensities to colors using the given colormap and return the results as integer RGBA values. + + + + + Convert intensities to colors using the given colormap and return the results as integer RGBA values. + RGBA alpha value will be set according to the given array of opacities (values from 0 to 1). + + + + + Return an array of RGBA integer values for a single color where the alpha + channel is defined by an array of values from 0 to 1. + + + + + Return an array of RGBA integer values set according to a colormap + where intensities are clamped to a lower limit. + + + + + Convert intensities to colors using the given colormap and return the results as integer RGBA values. + RGBA alpha value will be set according to the given array of opacities (values from 0 to 1). + + + + + Convert intensities to colors using the given colormap and return the results as integer RGBA values. + RGBA alpha value will be set according to the given opacity (value from 0 to 1). + + + + + Return an array of RGBA integer values for a single color where the alpha + channel is defined by an array of values from 0 to 1. + + + + + Given an array of intensities (ranging from 0 to 1) return an array of + colors according to the given colormap. + + + + + Return a bitmap showing the gradient of colors in a colormap. + Defining min/max will create an image containing only part of the colormap. + + + + + Return the display scale ratio being used. + A scaling ratio of 1.0 means scaling is not active. + + + + + Create a Bitmap and Graphics and use it to measure a string. + Only use this function if an existing Graphics does not exist. + + + + + Return the size (in pixels) of the given string. + + + + + Return the size (in pixels) of the given string. + If is provided it will be used instead of . + + + + + Return the size (in pixels) of the given string. + + + + + Return the X and Y distance (pixels) necessary to translate the canvas for the given text/font/alignment + + + + + Controls whether ClearType (instead of the default AntiAlias) hinting will be used. + ClearType typically appears superior except when rendered above a transparent background. + + + + + Return the size (in pixels) of the given string. + If is provided it will be used instead of . + + + + + Draw a string at a point on the graphics. + Alignment describes where the point is relative to the text. + + + + + Add extra clipping beyond the data area based on an array of user-defined coordinates + + + + + Shade the region abvove or below the curve (to infinity) by drawing a polygon to the edge of the visible plot area. + + + + + Return the position of a small rectangle placed inside a larger rectangle according to the given alignment and margin. + + + + + For some reason this overload is not present in System.Drawing.Common + + + + + This class is used to retrieve OS-agnostic fonts using those known to be installed on the system. + + + + + Returns a font name guaranteed to be installed on the system + + + + + Returns a font name guaranteed to be installed on the system + + + + + Returns a font family guaranteed to be installed on the system + + + + + Returns a font family guaranteed to be installed on the system + + + + + Return Xs and Ys for 2 polygons representing the input data above and below the given baseline + + + + + Vertical (upper/middle/lower) and Horizontal (left/center/right) alignment + + + + + X/Y coordinates define the base of the arrow + + + + + X/Y coordinates define the center of the arrow + + + + + X/Y coordinates define the tip of the arrow + + + + + Defines if/how axis scales (units per pixel) are matched between horizontal and vertical axes. + + + + + Horizontal and vertical axes can be scaled independently. + Squares and circles may stretch to rectangles and ovals. + + + + + Axis scales are locked so geometry of squares and circles is preserved. + After axes are set, the vertical scale (units per pixel) is applied to the horizontal axis. + + + + + Axis scales are locked so geometry of squares and circles is preserved. + After axes are set, the horizontal scale (units per pixel) is applied to the vertical axis. + + + + + Axis scales are locked so geometry of squares and circles is preserved. + After axes are set, the largest scale (most units per pixel) is applied to both axes. + Apply the most zoomed-out scale to both axes. + + + + + Apply the scale of the larger axis to both axes. + + + + + Apply the scale of the smaller axis to both axes. + + + + + Defines how an image will be placed in Radar and CoxComb charts + + + + + Images will be aligned at the arms of the chart + + + + + Images will be aligned halfway in the space between arms of the chart + + + + + Successive gauges start outward from the center but start at the same angle + + + + + Successive gauges start outward from the center and start at sequential angles + + + + + Gauges are all the same distance from the center but start at sequential angles + + + + + Describes how a render should be performed with respect to quality. + High quality enables anti-aliasing but is slower. + Some options describe multiple renders, with or without a delay between them. + + + + + Only render using low quality (anti-aliasing off) + + + + + Only render using high quality (anti-aliasing on) + + + + + Perform a high quality render after a delay. + This is the best render type to use when resizing windows. + + + + + Render low quality and display it, then if no new render requests + have been received immediately render a high quality version and display it. + This is the best render option to use when requesting renders programmatically + + + + + Render low quality and display it, wait a small period of time for new render requests to arrive, + and if no new requests have been received render a high quality version and display it. + This is the best render option to use for mouse interaction. + + + + + Process mouse events only (pan, zoom, etc) and do not render graphics on a Bitmap, + then if no new requests have been received render using the last-used render type. + + + + + This class contains methods which generate sample data for testing and demonstration purposes + + + + + Return an array of evenly-spaced numbers + + + + + Return an array of sine waves between -1 and 1. + Values are multiplied by then shifted by . + Phase shifts the sine wave horizontally between 0 and 2 Pi. + + + + + Return an array of cosine waves between -1 and 1. + Values are multiplied by then shifted by . + Phase shifts the sine wave horizontally between 0 and 2 Pi. + + + + + Generates a 2D array of numbers with constant spacing. + + + + The space between points. + The first point. + + + + + Generates a 2D sine pattern. + + + + Frequency factor in x direction. + Frequency factor in y direction. + Intensity factor. + + + + Generate a 2D array in a diagonal gradient pattern + + + + + + + + + + Return a series of values starting with and + each randomly deviating from the previous by at most . + Random values are deterministic based on the value of . + + + + + Return an array of random values + from to + according to the random seed defined by + + + + + Contains methods for generating DateTime sequences + + + + + Date of the first ScottPlot commit + + + + + Evenly-spaced DateTimes + + + + + All colors in this palette + + + + + Display name + + + + + Additional information such as the source of this palette + + + + + This class consumes a and has + helper methods for displaying it in different ways. + + + + + Launch a file using the system default file handler + + + + + Save the plot as an image file and open it with the default file launcher + + + + + Save the plot as an image embedded in a HTML file and launch it with the default web browser + + + + + Create a new Marker (IMarker class) from an old marker (MarkerStyle enum) + + + + + This class contains type-specific methods to convert between generic values and doubles + optimized for performance using platform-specific features. + See discussion in https://github.com/ScottPlot/ScottPlot/pull/1927 + + + + + Returns the double value of a + using a conversion technique optimized for the platform. + + + + + Returns the double value of the at position in + using a conversion technique optimized for the platform. + + + + + Returns the double value of the at position in + using a conversion technique optimized for the platform. + + + + + Creates a for a given double + using a conversion technique optimized for the platform. + + + + + Fields and methods for accessing color palettes + + + + + Create a new color palette from an array of HTML colors + + + + + Create a new color palette from an array of colors + + + + + Return an array containing every available palette + + + + + Describes an X/Y position in pixel space + + + + + True as lone as neither coordinate is NaN or Infinity + + + + + Return the distance to another pixel (in pixel units) + + + + + Shift the pixel location by the given deltas + + + + + Return a new pixel translated by the given deltas + + + + + PlotDimensions supplies figure dimensions and pixel/coordinate lookup methods for a single 2D plane + + + + + Text placed at a location relative to the data area that does not move when the axis limits change + + + + + Horizontal location (in pixel units) relative to the data area + + + + + Vertical position (in pixel units) relative to the data area + + + + + Defines which edge of the plot area the annotation will be placed along. + Distance from this edge is defined by and + + + + + Distance (in pixels) from the edge of the plot area to place the annotation + + + + + Distance (in pixels) from the edge of the plot area to place the annotation + + + + + Text displayed in the annotation + + + + + Distance (pixels) the shadow will be to the right of the box + + + + + Distance (pixels) the shadow will be below the box + + + + + Font for the annotation text + + + + + If true, the rectangle behind the text will be filled with + + + + + Color of the rectangle drawn beneath the annotation if is true + + + + + If true, a rectangular shadow will be drawn behind the background rectangle filled with + + + + + Color of the rectangle drawn beneath the annotation if is true. + Semitransparent colors are recommended for shadows. + + + + + If true, the rectangle around the text will be drawn according to and + + + + + Thickness (in pixels) of the rectangular outline to draw around the text using + + + + + Color of the rectangular outline drawn around the text + + + + + An arrow with X/Y coordinates for the base and the tip + + + + + Location of the arrow base in coordinate space + + + + + Location of the arrow base in coordinate space + + + + + Color of the arrow and arrowhead + + + + + Color of the arrow and arrowhead + + + + + Thickness of the arrow line + + + + + Style of the arrow line + + + + + Label to appear in the legend + + + + + Width of the arrowhead (pixels) + + + + + Height of the arrowhead (pixels) + + + + + The arrow will be lengthened to ensure it is at least this size on the screen + + + + + Marker to be drawn at the base (if MarkerSize > 0) + + + + + Size of marker (in pixels) to draw at the base + + + + + Location of the line (Y position if horizontal line, X position if vertical line) + + + + + If True, the position will be labeled on the axis using the PositionFormatter + + + + + Font to use for position labels (labels drawn over the axis) + + + + + Color to use behind the position labels + + + + + If true the position label will be drawn on the right or top of the data area. + + + + + If provided, the position label will be rendered on this axis + + + + + This method generates the position label text for numeric (non-DateTime) axes. + For DateTime axes assign your own format string that uses DateTime.FromOADate(position). + + + + + Position of the axis line in DateTime (OADate) units. + + + + + Indicates whether the line is horizontal (position in Y units) or vertical (position in X units) + + + + + If true, AxisAuto() will ignore the position of this line when determining axis limits + + + + + Text that appears in the legend + + + + + Indicates whether this line is draggable in user controls. + + + + + Cursor to display while hovering over this line if dragging is enabled. + + + + + If dragging is enabled the line cannot be dragged more negative than this position + + + + + If dragging is enabled the line cannot be dragged more positive than this position + + + + + This event is invoked after the line is dragged + + + + + The lower bound of the axis line. + + + + + The upper bound of the axis line. + + + + + This function applies snapping logic while dragging + + + + + Move the line to a new coordinate in plot space. + + new X position + new Y position + This argument is ignored + + + + Return True if the line is within a certain number of pixels (snap) to the mouse + + mouse position (coordinate space) + mouse position (coordinate space) + snap distance (pixels) + snap distance (pixels) + + + + + This plot type is essentially the same as an Axis line, but it contains an array of positions. + All lines are styled the same, but they can be positioned (and dragged) independently. + + + + + Location of the line (Y position if horizontal line, X position if vertical line) + + + + + Add this value to each datapoint value before plotting (axis units) + + + + + If True, the position will be labeled on the axis using the PositionFormatter + + + + + Font to use for position labels (labels drawn over the axis) + + + + + Color to use behind the position labels + + + + + If true the position label will be drawn on the right or top of the data area. + + + + + This method generates the position label text for numeric (non-DateTime) axes. + For DateTime axes assign your own format string that uses DateTime.FromOADate(position). + + + + + Indicates whether the line is horizontal (position in Y units) or vertical (position in X units) + + + + + If true, AxisAuto() will ignore the position of this line when determining axis limits + + + + + Text that appears in the legend + + + + + Indicates whether this line is draggable in user controls. + + + + + Cursor to display while hovering over this line if dragging is enabled. + + + + + If dragging is enabled the line cannot be dragged more negative than this position + + + + + If dragging is enabled the line cannot be dragged more positive than this position + + + + + This event is invoked after the line is dragged + + + + + The lower bound of the axis line. + + + + + The upper bound of the axis line. + + + + + This function applies snapping logic while dragging + + + + + Move the reference line to a new coordinate in plot space. + + new X position + new Y position + This argument is ignored + + + + Return True if the reference line is within a certain number of pixels (snap) to the mouse + + mouse position (coordinate space) + mouse position (coordinate space) + snap distance (pixels) + snap distance (pixels) + + + + + Vertical line at an X position + + + + + X position to render the line + + + + + Horizontal line at an Y position + + + + + Y position to render the line + + + + + Fractional amount to expand the axis vertically if data runs outside the current view + + + + + Show the entire range of data, changing the axis limits only + when the data extends otuside the current view. + + + + + Defines the amount of whitespace added to the right of the data when data runs outside the current view. + 1.0 for a view that tightly fits the data and is always changing. + 2.0 for a view that doubles the horizontal span when new data runs outside the current view. + + + + + An axis manager contains logic to suggest axis limits given the current view and size of the data. + + + + + Return recommended axis limits given the current view and size of the data + + + + + Slide the view to the right to keep the newest data points in view + + + + + Amount of horizontal area to display (in axis units) + + + + + Defines the amount of whitespace added to the right of the data when data runs outside the current view. + 0 for a view that slides every time new data is added + 1 for a view that only slides forward when new data runs off the screen + + + + + Defines the amount of whitespace added to the top or bottom of the data when data runs outside the current view. + 0 sets axis limits to tightly fit the data height + 1 sets axis limits to double the vertical span in the direction of the vertical overflow + + + + + If true, AxisAuto() will ignore the position of this span when determining axis limits + + + + + This event is invoked after the line is dragged + + + + + This event is invoked after the Edge1 is dragged + + + + + This event is invoked after the Edge2 is dragged + + + + + This event is invoked after the min edge is dragged + + + + + This event is invoked after the max edge is dragged + + + + + This function applies snapping logic while dragging + + + + + Return True if either span edge is within a certain number of pixels (snap) to the mouse + + mouse position (coordinate space) + mouse position (coordinate space) + snap distance (pixels) + snap distance (pixels) + + + + + Move the span to a new coordinate in plot space. + + new X position + new Y position + if True, both edges will be moved to maintain the size of the span + + + + This class represents a single Bar shown as part of a collection of Bars on a plot + + + + + Horizontal position of the center of the bar + (or vertical position if it's a horizontal bar) + + + + + Vertical position of the top of the bar + (or right edge if it's a horizontal bar) + + + + + Vertical position of the bottom of the bar + (or left edge if it's a horizontal bar) + + + + + Text to display above the bar + + + + + Styling of the text displayed above the bar + + + + + Horizontal width of the bar in axis units + (or vertical height if it's a horizontal bar) + + + + + Color filling the rectangular area of the bar + + + + + Color of the line outlining the rectangular area of the bar + + + + + Width of the line outlining the rectangular area of the bar + + + + + Indicates whether bars extend upward (vertical, default) or two the right (horizontal) + + + + + Bar plots display a series of bars. + Positions are defined by Xs. + Heights are defined by Ys (relative to BaseValue and YOffsets). + + + + + Orientation of the bars. + Default behavior is vertical so values are on the Y axis and positions are on the X axis. + + + + + The position of each bar defines where the left edge of the bar should be. + To center the bar at each position, adjust this value to be negative one-half of the BarWidth. + + + + + Size of each bar (along the axis defined by Orientation) relative to ValueBase + + + + + Location of the left edge of each bar. + To center bars on these positions, adjust PositionOffset to be negative one-half of the BarWidth. + + + + + This array defines the base of each bar. + Unless the user specifically defines it, this will be an array of zeros. + + + + + If populated, this array describes the height of errorbars for each bar + + + + + If true, errorbars will be drawn according to the values in the YErrors array + + + + + Function to generate the strings placed above each bar based on its value + + + + + Bars are drawn from this level and extend according to the sizes defined in Values[] + + + + + Width of bars defined in axis units. + If bars are evenly spaced, consider setting this to a fraction of the distance between the first two Positions. + + + + + Width of the errorbar caps defined in axis units. + + + + + Thickness of the errorbar lines (pixel units) + + + + + Outline each bar with this color. + Set this to transparent to disable outlines. + + + + + Color of errorbar lines. + + + + + Font settings for labels drawn above the bars + + + + + Replace the arrays used to define positions and values. + New error arrays will be created and filled with zeros. + + + + + This plot type displays a collection of Bar objects, + allowing each Bar to be positioned and styled individually. + + + + + Return the bar located under the given coordinate (or null if no bar is there) + + + + + Number of items in each histogram bin. + Add samples by calling . + It is not recommended to edit this externally, but it is possible. + + + + + Location of the lower left of the heatmap + + + + + Size of each cell of the heatmap (in coordinate units) + + + + + Number of rows in the binned histogram + + + + + Number of columns in the binned histogram + + + + + Size of the scaled histogram (coordinate units) + + + + + Region occupied by the scaled histogram (coordinate units) + + + + + Colormap used to color the histogram according to its count density + + + + + If set, this colorbar's tick labels will be updated on every render. + + + + + If enabled, bins with no counts will be transparent. + + + + + Return the value of the cell with the largest count + + + + + Horizontal location (in pixel units) relative to the data area + + + + + Vertical position (in pixel units) relative to the data area + + + + + Horizontal location (in pixel units) relative to the data area + + + + + Vertical position (in pixel units) relative to the data area + + + + + Size of the small lines (in pixels) placed the edges of the bracket and between the center of the bracket and the label + + + + + Text displayed in the annotation + + + + + Color of the bracket lines and text + + + + + Thickness (in pixels) of the lines + + + + + Controls whether the tip of the bracket is counter-clockwise from the line formed by the bracket base. + + + + + Display circles of user-defined sizes and colors at specific X/Y positions + + + + + Indicates whether the size of each bubble is in pixel units + or in axis units. If using axis units, users may want to enable + the axis scale lock feature to enforce bubble circularity. + + + + + Clear all bubbles + + + + + Add a single bubble + + horizontal position (in coordinate space) + horizontal vertical (in coordinate space) + size of the bubble (sized according to ) + color of the bubble center + size of the outline (in pixels) + color of the bubble outline + + + + Add many bubbles with the same size and style + + + + + Return the X/Y coordinates of the point nearest the X position + + X position in plot space + + + + + Return the X/Y coordinates of the point nearest the Y position + + Y position in plot space + + + + + Return the position and index of the data point nearest the given coordinate + + location in coordinate space + location in coordinate space + Ratio of pixels per unit (X/Y) when rendered + + + + Cleveland Dot plots display a series of paired p[oints. + Positions are defined by Xs. + Heights are defined by Ys1 and Ys2 (internally done with Ys and YOffsets). + + + + + Color for the line + + + + + Color for markers placed at + + + + + Color for markers placed at + + + + + Size of the markers at the ends of each line + + + + + Width of the stem (in pixels) + + + + + Text to display in the legend associated with the series 1 data + + + + + Color for one of the markers + + + + + Marker to use for the series 1 data + + + + + Text to display in the legend associated with the series 2 data + + + + + Color for one of the markers + + + + + Marker to use for the series 2 data + + + + + Allows customizing the first point (set by ys1) + + The color of the dot, null for no change. + The shape of the dot, null for no change. + The label of the dot in the legend, null for no change + + + + Allows customizing the second point (set by ys2) + + The color of the dot, null for no change. + The shape of the dot, null for no change. + The label of the dot in the legend, null for no change + + + + A colorbar translates numeric intensity values to colors. + The Colorbar plot type displays a Colorbar along an edge of the plot. + + + + + Width of the colored rectangle (pixels) + + + + + Optional text to display rotated outside the colormap + + + + + Distance (pixels) to offset the axis label from the edge of the colormap. + This edge is typically large enough to accommodate tick labels. + + + + + Size (in pizels) of the colorbar, ticks, and label at the time of the last render + + + + + If populated, this object holds the plottable containing the heatmap and value data this colorbar represents + + + + + Configure ticks that are automatically generated in the absense of manually-added ticks + + + Minimum number of vertical pixels between tick positions + Optional custom string formatter to translate tick positions to labels + + + + Clear the list of manually-defined ticks. + To enable automatic tick placement call + + + + + Add a tick to the list of manually-defined ticks (disabling automatic tick placement) + + from 0 (darkest) to 1 (brightest) + string displayed beside the tick + + + + Manually define ticks (disabling automatic tick placement) + + from 0 (darkest) to 1 (brightest) + strings displayed beside the ticks + + + + Manually define ticks as a fraction from 0 to 1 (disabling automatic tick placement) + + from 0 (darkest) to 1 (brightest) + strings displayed beside the ticks + + + + Manually define ticks by value within a range (disabling automatic tick placement) + + position for each tick + label for each tick + colorbar range minimum + colorbar range maximum + + + + Re-Render the colorbar using a new colormap + + + + + Return a Bitmap of just the color portion of the colorbar. + The width is defined by the Width field + The height will be 256 + + + + + + Return a Bitmap of just the color portion of the colorbar + + width of the Bitmap + height of the Bitmap + if true, colormap will be vertically oriented (tall and skinny) + + + + + Adjust the layout of the given plot based on size information from the previous render + + + + + Return a list of ticks evenly spaced between the min and max values. + + height of the vertical colorbar + minimum pixel distance between adjacent ticks + + + + + returns the width of the Ticks+string labels part + + + + + + + + + + A Pie chart where the angle of slices is constant but the radii are not. + + + + + The data to be plotted + + + + + The colors of each slice + + + + + Contains options for hatched (patterned) fills for each slice + + + + + The color of the slice outline. + + + + + The width of the slice outline. + + + + + The color to draw the axis in + + + + + Controls rendering style of the concentric circles (ticks) of the web + + + + + If true, each value will be written in text on the plot. + + + + + Labels for each category. + Length must be equal to the number of columns (categories) in the original data. + + + + + Icons for each category. + Length must be equal to the number of columns (categories) in the original data. + + + + + The Crosshair plot type draws a vertical and horizontal line to label a point + on the plot and displays the coordinates of that point in labels that overlap + the axis tick labels. + + This plot type is typically used in combination with + MouseMove events to track the location of the mouse and/or with plot types that + have GetPointNearest() methods. + + + + + X position (axis units) of the vertical line + + + + + X position (axis units) of the horizontal line + + + + + Sets style for horizontal and vertical lines + + + + + Sets the line width for vertical and horizontal lines + + + + + Set color for horizontal and vertical lines and their position label backgrounds + + + + + If true, AxisAuto() will ignore the position of this line when determining axis limits + + + + + This plot type stores infinitely growing X/Y pairs and displays them as a scatter plot. + + + + + Number of data points currently being tracked. + + + + + Number of data points displayed the last time this plottable was rendered. + This can be compared with to determine if a new render is required. + + + + + If true, the will be used to update axis limits on every render. + + + + + Holds logic used to update axis limits on every render if is true. + + + + + Used to obtain the current axis limits so can adjust them if needed. + + + + + Add a point to the logger + + + + + Add a point to the logger + + + + + Add a collection of points to the logger + + + + + Clear all logged data points + + + + + Automatically expand the axis as needed to ensure the full dataset is visible before each render. + + + + + Automatically adjust the axis limits to track the newest data as it comes in. + The axis limits will appear to "jump" when new data runs off the screen. + + + + + Automatically adjust the axis limits to track the newest data as it comes in. + The axis limits will appear to "slide" continuously as new data is added. + + + + + Use a custom axis manager to update axis limits before each render. + + + + + Fixed-length array used as a circular buffer to shift data in at the position defined by . + Values in this array should not be modified externally if is enabled. + + + + + Index in where the next point will be added + + + + + The fied number of visible data points to display + + + + + The total number of data points added (even though only the latest are visible) + + + + + Total of data points added the last time this plottable was rendered. + This can be compared with to determine if a new render is required. + + + + + If enabled, axis limits will be adjusted automatically if new data runs off the screen. + + + + + Contains logic for automatically adjusting axis limits if new data runs off the screen. + Only used if is true. + + + + + Used to obtain the current axis limits so can adjust them if needed. + + + + + Logic for displaying the fixed-length Y values in + + + + + Minimum value of all known data (not just the data in view) + + + + + Maximum value of all known data (not just the data in view) + + + + + Shift in a new Y value + + + + + Shift in a collection of new Y values + + + + + Clear the buffer by setting all Y points to the given value + + + + + Display the data using a view where new data overlapps old data from left to right. + + + + + Display the data using a view where new data overlapps old data from right to left. + + + + + Display the data using a view that continuously shifts data to the left, placing the newest data on the right. + + + + + Display the data using a view that continuously shifts data to the right, placing the newest data on the left. + + + + + Display the data using a custom rendering function + + + + + Contains logic for rendering fixed-length data in a streaming data logger. + + + + + This plot type displays a marker at a point that can be dragged with the mouse. + + + + + Indicates whether this marker is draggable in user controls. + + + + + Cursor to display while hovering over this marker if dragging is enabled. + + + + + If dragging is enabled the marker cannot be dragged more negative than this position + + + + + If dragging is enabled the marker cannot be dragged more positive than this position + + + + + If dragging is enabled the marker cannot be dragged more negative than this position + + + + + If dragging is enabled the marker cannot be dragged more positive than this position + + + + + This function applies snapping logic while dragging + + + + + This event is invoked after the marker is dragged + + + + + Move the marker to a new coordinate in plot space. + + new X position + new Y position + This argument is ignored + + + + Return True if the marker is within a certain number of pixels (snap) to the mouse + + mouse position (coordinate space) + mouse position (coordinate space) + snap distance (pixels) + snap distance (pixels) + + + + + Horizontal center of the circle (axis units) + + + + + Vertical center of the circle (axis units) + + + + + Horizontal radius (axis units) + + + + + Vertical radius (axis units) + + + + + Rotation of the ellipse (degrees) + + + + + Outline color + + + + + Outline thickness (pixel units) + + + + + Outline line style + + + + + Fill color + + + + + Fill pattern + + + + + Alternate color for fill pattern + + + + + Text to appear in the legend + + + + + Create an ellipse centered at (x, y) with the given horizontal and vertical radius + + + + + Finance plots display open/high/low/close (OHLC) data + + + + + Returns the last element of OHLCs so users can modify FinancePlots in real time. + + + + + Display prices as filled candlesticks (otherwise display as OHLC lines) + + + + + If True, OHLC timestamps are ignored and candles are placed at consecutive integers and all given a width of 1 + + + + + Color of the candle if it closes at or above its open value + + + + + Color of the candle if it closes below its open value + + + + + This field controls the color of the wick and rectangular candle border. + If null, the wick is the same color as the candle and no border is applied. + + + + + Create an empty finance plot. + Call Add() and AddRange() to add data. + + + + + Create a finance plot from existing OHLC data. + + + + + + Add a single candle representing a defined time span + + + + + + + + + + + Add a single OHLC to the plot + + + + + + Add multiple OHLCs to the plot + + + + + + Clear all OHLCs + + + + + Return the simple moving average (SMA) of the OHLC closing prices. + The returned ys are SMA where each point is the average of N points. + The returned xs are times in OATime units. + The returned xs and ys arrays will be the length of the OHLC data minus N. + + each returned value represents the average of N points + times and averages of the OHLC closing prices + + + + Return Bollinger bands (mean +/- 2*SD) for the OHLC closing prices. + The returned xs are times in OATime units. + The returned xs and ys arrays will be the length of the OHLC data minus N (points). + + each returned value represents the average of N points + standard deviation coefficient + times, averages, and both Bollinger bands for the OHLC closing prices + + + + A function plot displays a curve using a function (Y as a function of X) + + + + + The function to translate an X to a Y (or null if undefined) + + + + + A heatmap displays a 2D array of intensities as small rectangles on the plot + colored according to their intensity value according to a colormap. + + + + + Minimum heatmap value + + + + + Maximum heatmap value + + + + + Number of columns in the heatmap data + + + + + Number of rows in the heatmap data + + + + + Pre-rendered heatmap image + + + + + Horizontal location of the lower-left cell + + + + + Vertical location of the lower-left cell + + + + + Width of each cell composing the heatmap + + + + + Height of each cell composing the heatmap + + + + + Position of the left edge of the heatmap + + + + + Position of the right edge of the heatmap + + + + + Indicates whether the heatmap's size or location has been modified by the user + + + + + Text to appear in the legend + + + + + Colormap used to translate heatmap values to colors + + + + + If defined, colors will be "clipped" to this value such that lower values (lower colors) will not be shown + + + + + If defined, colors will be "clipped" to this value such that greater values (higher colors) will not be shown + + + + + Heatmap values below this number (if defined) will be made transparent + + + + + Value of the the lower edge of the colormap + + + + + Value of the the upper edge of the colormap + + + + + Indicates whether values extend beyond the lower edge of the colormap + + + + + Indicates whether values extend beyond the upper edge of the colormap + + + + + If true, heatmap squares will be smoothed using high quality bicubic interpolation. + If false, heatmap squares will look like sharp rectangles (nearest neighbor interpolation). + + + + + Controls which interpolation mode is used when zooming into the heatmap. + + + + + By default the first row of the 2D array represents the top of the heatmap. + If this is true, the first row of the 2D array represents the bottom of the heatmap. + + + + + By default the first column of the 2D array represents the left side of the heatmap. + If this is true, the first column of the 2D array represents the right side of the heatmap. + + + + + Amount of rotation (degrees) clockwise around the point described by + + + + + Indicates which corner will be the axis of Rotation. + + + + + Heatmap transparency from 0 (transparent) to 1 (opaque). + + + + + This method analyzes the intensities and colormap to create a bitmap + with a single pixel for every intensity value. The bitmap is stored + and displayed (without anti-alias interpolation) when Render() is called. + + 2D array of data for the heatmap (null values are not shown) + update the Colormap to use this colormap + minimum intensity (according to the colormap) + maximum intensity (according to the colormap) + If defined, this mask indicates the opacity of each cell in the heatmap from 0 (transparent) to 1 (opaque). + If defined, this array must have the same dimensions as the heatmap array. Null values are not shown. + + + + This method analyzes the intensities and colormap to create a bitmap + with a single pixel for every intensity value. The bitmap is stored + and displayed (without anti-alias interpolation) when Render() is called. + + 2D array of data for the heatmap (all values are shown) + update the Colormap to use this colormap + minimum intensity (according to the colormap) + maximum intensity (according to the colormap) + If defined, this mask indicates the opacity of each cell in the heatmap from 0 (transparent) to 1 (opaque). + If defined, this array must have the same dimensions as the heatmap array. + + + + Update the heatmap where every cell is given the same color, but with various opacities. + + Single color used for all cells + Opacities (ranging 0-1) for all cells + + + + Update the heatmap where every cell is given the same color, but with various opacities. + + Single color used for all cells + Opacities (ranging 0-1) for all cells + + + + This should be the only method which creates or modifies + + + + + + Return the position in the 2D array corresponding to the given coordinate. + Returns null if the coordinate is not over the heatmap. + + + + + Returns a copy of the heatmap image as a . + Dimensions of the image will be equal to those of the source data used to create it. + + + + + Horizontal line at a Y position + + + + + Y position to render the line + + + + + Shaded horizontal region between two X values + + + + + Render the object this number of pixels right of its coordinate location + + + + + Render the object this number of pixels above its coordinate location + + + + + Indicates a plottable has data distributed along both axes + and can return the X/Y location of the point nearest a given X/Y location. + + + + + Indicates a plottable has data distributed along the horizontal axis + and can return the X/Y location of the point nearest a given X value. + + + + + Indicates a plottable has data distributed along the vertical axis + and can return the X/Y location of the point nearest a given Y value. + + + + + Indicates a plottable has data distributed along both axes + and can return the X/Y location of the point nearest a given X/Y location. + + + + + Scale lines and markers by this fraction (1.0 for no size change) + + + + + Describes a Plottable that can report whether or not it is beneath the mouse cursor + + + + + Cursor to display when the Plottable is under the mouse + + + + + Returns true if the Plottable is at the given coordinate + + + + + Controls whether logic inside will run (or always return false). + + + + + Display a Bitmap at X/Y coordinates in unit space + + + + + Position of the primary corner (based on Alignment) + + + + + Position of the primary corner (based on Alignment) + + + + + If defined, the image will be stretched to be this wide in axis units. + If null, the image will use screen/pixel units. + + + + + If defined, the image will be stretched to be this height in axis units. + If null, the image will use screen/pixel units. + + + + + Multiply the size of the image (in pixel units) by this scale factor. + The primary corner (based on Alignment) will remain anchored. + + + + + Rotate the image clockwise around its primary corner (defined by Alignment) by this number of degrees + + + + + Image to display + + + + + Indicates which corner of the Bitmap is described by X and Y. + This corner will be the axis of Rotation, and the center of Scale. + + + + + Control whether the image is rendered using anti-aliasing + + + + + Color of the border (if is greater than 0) + + + + + Line width of the border (in pixels) + + + + + Every plottable object must implement this interface. + Additional features are provided by adjacent interfaces. + + + + + Controls whether the plot will be rendered and contribute to automatic axis limit detection + + + + + Index of the horizontal axis this plottable will use for coordinate/pixel conversions. + 0 is the bottom axis, 1 is the top axis, and higher numbers are additional custom axes. + + + + + Index of the vertical axis this plottable will use for coordinate/pixel conversions. + 0 is the left axis, 1 is the right axis, and higher numbers are additional custom axes. + + + + + This is called when it is time to draw the plottable on the canvas. + + Spatial information about the plot and all axes to assist with coordinate/pixel conversions. + The image on which this plottable will be drawn. + If true, disable anti-aliased lines and text to achieve faster rendering. + + + + Returns the limits of the data contained in a plottable. + If an axis has no data its min and max may be Double.NaN. + + + + + + Returns items to show in the legend. Most plottables return a single item. in this array will appear in the legend. + Plottables which never appear in the legend should return an empty array (not null). + + + + + Throw InvalidOperationException if ciritical variables are null or have incorrect sizes. + Deep validation is slower but also checks every value for NaN and Infinity. + + + + + This interface is for plottable objects that could be styled using the plot's style. + Typically this is for things like frames, tick marks, and text labels. + + + + + This class describes a single item that appears in the figure legend. + + + + + Lollipop plots display a series of "Lollipops" in place of bars. + Positions are defined by Xs. + Heights are defined by Ys (relative to BaseValue and YOffsets). + + + + + Name for this series of values that will appear in the legend + + + + + Color of all lollipop components (the stick and the circle) + + + + + Size of the circle at the end of each lollipop + + + + + Width of the lollipop stick (in pixels) + + + + + Create a lollipop plot from arrays of positions and sizes + + position of each lollipop + height of each lollipop + + + + Horizontal position in coordinate space + + + + + Vertical position in coordinate space + + + + + Marker to draw at this point + + + + + Size of the marker in pixel units + + + + + Thickness of the marker lines in pixel units + + + + + Color of the marker to display at this point + + + + + Text to appear in the legend (if populated) + + + + + Text to appear on the graph at the point + + + + + Font settings for rendering . + Alignment and orientation relative to the marker can be configured here. + + + + + A pie plot displays a collection of values as a circle. + Pie plots with a hollow center are donut plots. + + + + + Labels to display on top of each slice or in the legend. + + + + + If populated, this array of strings will be used for the legend. + + + + + Defines how large the pie is relative to the pixel size of the smallest axis + + + + + Distance from the center of the pie to display labels. + Set this value greater to to place labels outside the pie. + + + + + Colors for each slice around the pie + + + + + Colors to fill the text placed at each slice + + + + + Required by System.Drawing but does not influence output image + + + + + Fill style for each slice + + + + + If enabled, slices will be offset from the center and have gaps between them + + + + + Display the value of slices using text aligned to each slice + + + + + Display the percentage of slices using text aligned to each slice + + + + + If enabled, will be displayed above each slice. + + + + + Size of the hollow region in the center of a donut plot. + Set to zero for a traditional pie plot. + + + + + If populated, this text will be displayed in the center of the pie. + This option is useful for donut plots with a hollow center. + + + + + Font to use for the label displayed at the center of donut charts + when is populated + + + + + Font to use for text displayed over each slice. + + + + + A polygon is a collection of X/Y points that are all connected to form a closed shape. + Polygons can be optionally filled with a color or a gradient. + + + + + Polygons are multiple Polygon objects. + This plot type is faster alternative for rendering a large number of polygons + compared to adding a bunch of individual Polygon objects to the plot. + + + + + Population plots are designed to show collections of data. + A Population is a 1D array of values, and statistics are calculated automatically. + Populations can be displayed as bar plots, box plots, or scatter plots. + Public methods, fields, and properties allow extensive customization. + This plottable supports higher-order grouping (groups of groups). + + + + + A radar chart is a graphical method of displaying multivariate data in the form of + a two-dimensional chart of three or more quantitative variables represented on axes + starting from the same point. + + Data is managed using 2D arrays where groups (colored shapes) are rows and categories (arms of the web) are columns. + + + + + Values for every group (rows) and category (columns) normalized from 0 to 1. + + + + + Single value to normalize all values against for all groups/categories. + + + + + Individual values (one per category) to use for normalization. + Length must be equal to the number of columns (categories) in the original data. + + + + + Labels for each category. + Length must be equal to the number of columns (categories) in the original data. + + + If showing icons, labels will be ignored. + + + + + Icons for each category. + Length must be equal to the number of columns (categories) in the original data. + + + If showing icons, labels will be ignored. + + + + + Labels for each group. + Length must be equal to the number of rows (groups) in the original data. + + + + + Colors (typically semi-transparent) to shade the inner area of each group. + Length must be equal to the number of rows (groups) in the original data. + + + + + Colors to outline the shape for each group. + Length must be equal to the number of rows (groups) in the original data. + + + + + Color of the axis lines and concentric circles representing ticks + + + + + Contains options for hatched (patterned) fills for each slice + + + + + Controls if values along each category axis are scaled independently or uniformly across all axes. + + + + + Font used for labeling values on the plot + + + + + If true, each value will be written in text on the plot. + + + + + If true, each category name will be written in text at every corner of the radar + + + + + Controls rendering style of the concentric circles (ticks) of the web + + + + + Determines the width of each spoke and the axis lines. + + + + + Determines the width of the line at the edge of each area polygon. + + + + + If enabled, the plot will fill using a curve instead of polygon. + + + + + Replace the data values with new ones. + + 2D array of groups (rows) of values for each category (columns) + Controls if values along each category axis are scaled independently or uniformly across all axes + If provided, these values will be used to normalize each category (columns) + + + + Normalize a 2D array by dividing all values by the maximum value. + + maximum value in the array before normalization + + + + Normalize each row of a 2D array independently by dividing all values by the maximum value. + + maximum value in each row of the array before normalization + + + + This class represents a single radial gauge. + It has level and styling options and can be rendered onto an existing bitmap using any radius. + + + + + Location of the base of the gauge (degrees) + + + + + Current level of this gauge (degrees) + + + + + Maximum angular size of the gauge (swept degrees) + + + + + Angle where the background starts (degrees) + + + + + If true angles end clockwise relative to their base + + + + + Used internally to get the angle swept by the gauge background. It's equal to 360 degrees if CircularBackground is set to true. Also, returns a positive value is the gauge is drawn clockwise and a negative one otherwise + + + + + If true the background will always be drawn as a complete circle regardless of MaximumSizeAngle + + + + + Font used to render values at the tip of the gauge + + + + + Size of the font relative to the line thickness + + + + + Text to display on top of the label + + + + + Location of the label text along the length of the gauge. + Low values place the label near the base and high values place the label at its tip. + + + + + Size of the gauge (pixels) + + + + + Color of the gauge foreground + + + + + Color of the gauge background + + + + + Style of the base of the gauge + + + + + Style of the tip of the gauge + + + + + Defines the location of each gauge relative to the start angle and distance from the center + + + + + Indicates whether or not labels will be rendered as text + + + + + Render the gauge onto an existing Bitmap + + active graphics object + plot dimensions (used to determine pixel scaling) + pixel location on the bitmap to center the gauge on + distance from the center (pixel units) to render the gauge + + + + Return an array indicating the size of each character in a string. + Specifiy the maximum expected size to avoid issues associated with text wrapping. + + + + + Reduces an angle into the range [0°-360°]. + Angles greater than 360 will roll-over (370º becomes 10º). + Angles less than 0 will roll-under (-10º becomes 350º). + + Angle value + Angle whithin [0°-360°] + + + + A radial gauge chart is a graphical method of displaying scalar data in the form of + a chart made of circular gauges so that each scalar is represented by each gauge. + + + + + This array holds the original levels passed-in by the user. + These levels are used to calculate radial gauge positions on every render. + + + + + Number of gauges. + + + + + Maximum size (degrees) for the gauge. + 180 is a semicircle and 360 is a full circle. + + + + + Controls whether the backgrounds of the gauges are full circles or stop at the maximum angle. + + + + + Labels that appear in the legend for each gauge. + Number of labels must equal number of gauges. + May be null if gauges are not to appear in the legend. + + + + + Colors for each gauge. + Number of colors must equal number of gauges. + + + + + Describes how transparent the unfilled background of each gauge is (0 to 1). + The larger the number the darker the background becomes. + + + + + Indicates whether gauges fill clockwise as levels increase. + If false, gauges will fill counter-clockwise (anti-clockwise). + + + + + Determines whether the gauges are drawn stacked (dafault value), sequentially, or as a single gauge (ressembling a pie plot). + + + + + Controls whether gauges will be dwan inside-out (true) or outside-in (false) + + + + + Defines where the gauge label is written on the gage as a fraction of its length. + Low values place the label near the base and high values place the label at its tip. + + + + + Angle (degrees) at which the gauges start. + 270° for North (default value), 0° for East, 90° for South, 180° for West, etc. + Expected values in the range [0°-360°], otherwise unexpected side-effects might happen. + + + + + The empty space between gauges as a fraction of the gauge width. + + + + + Size of the gague label text as a fraction of the gauge width. + + + + + Describes labels drawn on each gauge. + + + + + Controls if value labels are shown inside the gauges. + + + + + String formatter to use for converting gauge levels to text + + + + + Style of the tip of the gauge + + + + + Style of the base of the gauge + + + + + Replace gauge levels with new ones. + + + + + Calculate the rotational angles for each gauge from the original data values + + + + + Location of the reference line (Y position if horizontal line, X position if vertical line) + + + + + Total number of plotted lines + + + + + Offset about Position (in Y position if horizontal line, in X position if vertical line), this offset should be negative + + + + + Shift between lines (in Y if horizontal line, in X if vertical line) + + + + + If RelativePosition is true, then the Shift is interpreted as a ratio of Position, otherwise it is an absolute shift along the axis + + + + + If True, the position will be labeled on the axis using the PositionFormatter + + + + + If True, the first line (positioned at the specified X or Y) will be thicker + + + + + Font to use for position labels (labels drawn over the axis) + + + + + Color to use behind the position labels + + + + + If true the position label will be drawn on the right or top of the data area. + + + + + This method generates the position label text for numeric (non-DateTime) axes. + For DateTime axes assign your own format string that uses DateTime.FromOADate(position). + + + + + Position of the axis line in DateTime (OADate) units. + + + + + Indicates whether the line is horizontal (position in Y units) or vertical (position in X units) + + + + + If true, AxisAuto() will ignore the position of this line when determining axis limits + + + + + Text that appears in the legend + + + + + Indicates whether this line is draggable in user controls. + + + + + Cursor to display while hovering over this line if dragging is enabled. + + + + + If dragging is enabled the line cannot be dragged more negative than this position + + + + + If dragging is enabled the line cannot be dragged more positive than this position + + + + + This event is invoked after the line is dragged + + + + + The lower bound of the axis line. + + + + + The upper bound of the axis line. + + + + + This function applies snapping logic while dragging + + + + + Move the reference line to a new coordinate in plot space. + + new X position + new Y position + This argument is ignored + + + + Return True if the reference line is within a certain number of pixels (snap) to the mouse + + mouse position (coordinate space) + mouse position (coordinate space) + snap distance (pixels) + snap distance (pixels) + + + + + Repeating Vertical lines with refernce at an X position + + + + + X position to render the line + + + + + Repeating horizontHorizontal line at an Y position + + + + + Y position to render the line + + + + + An L-shaped scalebar rendered in the corner of the data area + + + + + Width of the scalebar in cooridinate units + + + + + Height of the scalebar in cooridinate units + + + + + Distance in pixels from the edge of the data area + + + + + The scatter plot renders X/Y pairs as points and/or connected lines. + Scatter plots can be extremely slow for large datasets, so use Signal plots in these situations. + + + + + Throw a if or contains + + + + + Ignore points where X or Y is , drawing a line between adjacent non-NaN points. + + + + + Treat points where X or Y is as missing data and render the scatter plot as a + broken line with gaps indicating NaN points. + + + + + Add this value to each X value before plotting (axis units) + + + + + Add this value to each Y value before plotting (axis units) + + + + + If enabled, scatter plot points will be connected by square corners rather than straight diagnal lines + + + + + Describes orientation of steps if is enabled. + If true, lines will extend to the right before ascending or descending to the level of the following point. + + + + + If enabled, points will be connected by smooth lines instead of straight diagnal lines. + adjusts the smoothnes of the lines. + + + + + Tension to use for smoothing when is enabled + + + + + Defines behavior when or contains + + + + + Replace the Xs array with a new one + + + + + Replace the Ys array with a new one + + + + + Replace Xs and Ys arrays with new ones + + + + + Convert scatter plot points (connected by diagnal lines) to step plot points (connected by right angles) + by inserting an extra point between each of the original data points to result in L-shaped steps. + + Array of corner positions + Indicates that a line will extend to the right before rising or falling. + + + + Return the X/Y coordinates of the point nearest the X position + + X position in plot space + + + + + Return the X/Y coordinates of the point nearest the Y position + + Y position in plot space + + + + + Return the position and index of the data point nearest the given coordinate + + location in coordinate space + location in coordinate space + Ratio of pixels per unit (X/Y) when rendered + + + + Return the vertical limits of the data between horizontal positions (inclusive) + + + + + The scatter plot renders X/Y pairs as points and/or connected lines. + Scatter plots can be extremely slow for large datasets, so use Signal plots in these situations. + + + + + Indicates whether scatter points are draggable in user controls. + + + + + Indicates whether scatter points are horizontally draggable in user controls. + + + + + Indicates whether scatter points are vertically draggable in user controls. + + + + + Cursor to display while hovering over the scatter points if dragging is enabled. + + + + + If dragging is enabled the points cannot be dragged more negative than this position + + + + + If dragging is enabled the points cannot be dragged more positive than this position + + + + + If dragging is enabled the points cannot be dragged more negative than this position + + + + + If dragging is enabled the points cannot be dragged more positive than this position + + + + + This event is invoked after the plot is dragged + + + + + This function applies snapping logic while dragging + + + + + Move a scatter point to a new coordinate in plot space. + + new X position + new Y position + This argument is ignored + + + + Return True if a scatter point is within a certain number of pixels (snap) to the mouse + + mouse position (coordinate space) + mouse position (coordinate space) + snap distance (pixels) + snap distance (pixels) + + + + + A collection of X/Y coordinates that can be displayed as markers and/or connected lines. + Unlike the regular ScatterPlot, this plot type has Add() methods to easily add data. + + + + + Defines behavior when or contains + + + + + If enabled, scatter plot points will be connected by square corners rather than straight diagnal lines + + + + + Describes orientation of steps if is enabled. + If true, lines will extend to the right before ascending or descending to the level of the following point. + + + + + If enabled, points will be connected by smooth lines instead of straight diagnal lines. + adjusts the smoothnes of the lines. + + + + + Tension to use for smoothing when is enabled + + + + + Clear the list of points + + + + + Add a single point to the list + + + + + Add multiple points to the list + + + + + Returns a copy of all the X positions currently in use + + + + + Returns a copy of all the Y positions currently in use + + + + + Return a new array containing pixel locations for each point of the scatter plot + + + + + Index of the data point most recently under the mouse. + Value is -1 is the mouse is not over a data point. + + + + + Assign custom the logic here to control where individual points can be moved. + This logic occurs after snapping. + + + + + A signal plot displays evenly-spaced data. + Instead of X/Y pairs, signal plots take Y values and a sample rate. + Optional X and Y offsets can further customize the data. + + + + + Describes orientation of steps if is enabled. + If true, lines will extend to the right before ascending or descending to the level of the following point. + + + + + If enabled, parallel processing will be used to calculate pixel positions for high density datasets. + + + + + If fill above and/or below is enabled, this defines the baseline level. + + + + + If fill is enabled, a baseline will be drawn using this color. + + + + + If fill is enabled, a baseline will be drawn using this width. + + + + + If fill is enabled, this color will be used to fill the area below the curve above BaselineY. + + + + + If fill is enabled, this color will be used to fill the area above the curve below BaselineY. + + + + + When markers are visible on the line (low density mode) this is True + + + + + This expression adds two parameters of the generic type used by this signal plot. + + + + + Add two Y values (of the generic type used by this signal plot) and return the result as a double + + + + + Add two Y values (of the generic type used by this signal plot) and return the result as a the same type + + + + + Replace a single Y value + + array index to replace + new value + + + + Replace a range of Y values + + index to begin replacing + last index to replace + source for new data + source data offset + + + + Replace all Y values from the given index through the end of the array + + first index to begin replacing + new values + + + + Replace all Y values with new ones + + new Y values + + + + Render when the data is zoomed out so much that it just looks like a vertical line. + + + + + Render when the data is zoomed in such that there is more than 1 column per data point. + Rendering is accomplished by drawing a straight line from point to point. + + + + + Render the data when there is more than one data point per pixel column. + Each pixel column therefore represents multiple data points. + Rendering is optimized by determining the min/max for each pixel column, then a single line is drawn connecting those values. + + + + + Shade the region abvove or below the curve (to infinity) by drawing a polygon to the edge of the visible plot area. + + + + + Shade the region abvove and below the curve (to the baseline level) by drawing two polygons + + + + + Render similar to high density mode except use multiple colors to represent density distributions. + + + + + Return the index for the data point corresponding to the given X coordinate + + + + + Return the X coordinate of the data point at the given index + + + + + Return the X/Y coordinates of the point nearest the X position + + X position in plot space + + + + + Configure the signal plot to only show the curve with no filled area above or below it + + + + + Show a solid color beneath the curve + + + + + Show a two-color gradient beneath the curve + + + + + Show a solid color above the curve + + + + + Show a two-color gradient above the curve + + + + + Fill the area between the curve and the value + + + + + Fill the area between the curve and the edge of the display area using two gradients + + Color above the line next to the curve + Color above the line next to the upper edge of the plot area + Color below the line next to the curve + Color below the line next to the lower edge of the plot area + Apply this opacity to all colors + + + + Return the vertical limits of the data between horizontal positions (inclusive) + + + + + This plot type is a potentially faster version of the SignalPlot. + It pre-calculates min/max values for various segments of data, greatly speeding-up rendering + for extremely large datasets (10s of millions of points). + Note that these pre-calculations require more memory and an up-front calculation delay. + If the underlying data is updated, you must call Update() methods to recalculate the min/max values. + + + + + + A signal plot displays evenly-spaced data. + Instead of X/Y pairs, signal plots take Y values and a sample rate. + Optional X and Y offsets can further customize the data. + + + + + A variation of the SignalPlot optimized for unevenly-spaced ascending X values. + + + + + A variation of the SignalPlotConst optimized for unevenly-spaced ascending X values. + + + + + + + A variation of the SignalPlotConst optimized for unevenly-spaced ascending X values. + + + + + + + Indicates whether Xs have been validated to ensure all values are ascending. + Validation occurs before the first render (not at assignment) to allow the user time to set min/max render indexes. + + + + + TODO: document this + + + + + + + + + + Return the X/Y coordinates of the point nearest the X position + + X position in plot space + + + + + Return the vertical range of values between the given horizontal positions + + + + + Display a text label at an X/Y position in coordinate space + + + + + Indicates whether this marker is draggable in user controls. + + + + + Cursor to display while hovering over this marker if dragging is enabled. + + + + + If dragging is enabled the marker cannot be dragged more negative than this position + + + + + If dragging is enabled the marker cannot be dragged more positive than this position + + + + + If dragging is enabled the marker cannot be dragged more negative than this position + + + + + If dragging is enabled the marker cannot be dragged more positive than this position + + + + + This event is invoked after the marker is dragged + + + + + Move the marker to a new coordinate in plot space. + + new X position + new Y position + This argument is ignored + + + + Return True if the marker is within a certain number of pixels (snap) to the mouse + + mouse position (coordinate space) + mouse position (coordinate space) + snap distance (pixels) + snap distance (pixels) + + + + + A tooltip displays a text bubble pointing to a specific location in X/Y space. + The position of the bubble moves according to the axis limits to best display the text in the data area. + + + + + Tooltip position in coordinate space + + + + + Tooltip position in coordinate space + + + + + Cursor to display when the tooltip is beneath the mouse + + + + + Bounding box of the tooltip the last time is was rendered (in coordinate units) + + + + + The VectorField displays arrows representing a 2D array of 2D vectors + + + + + Describes which part of the vector line will be placed at the data coordinates. + + + + + If enabled arrowheads will be drawn as lines scaled to each vector's magnitude. + + + + + When using scaled arrowheads this defines the width of the arrow relative to the vector line's length. + + + + + When using scaled arrowheads this defines length of the arrowhead relative to the vector line's length. + + + + + Marker drawn at each coordinate + + + + + Size of markers to be drawn at each coordinate + + + + + The VectorField displays arrows representing a 2D array of 2D vectors + + + + + Tuples define location and direction of vectors to display as arrows. + Users may manipulate this List to add/remove their own vectors. + + + + + Advanced configuration options that control how vectors are drawn as arrows + + + + + Color to draw the arrows (if is null) + + + + + If defined, this colormap is used to color each arrow based on its magnitude + + + + + If is defined, each arrow's magnitude + is run through this function to get the fraction (from 0 to 1) + along the colormap to sample from. + + + + + Vertical line at an X position + + + + + X position to render the line + + + + + Shade the region between two Y values + + + + + Represents a series of data values with a common name. Values from several DataSets can be grouped (by value index). + + + + + This class holds open/high/low/close (OHLC) price data over a time range. + + + + + OHLC price over a specific period of time + + opening price + maximum price + minimum price + closing price + open time + width of the OHLC + + + + OHLC price over a specific period of time using the OADate format + + opening price + maximum price + minimum price + closing price + start time (days since 1900) + width of the OHLC (days) + + + + Display text in the data area at a pixel location (not a X/Y coordinates) + + + + + Display text in the data area at a pixel location (not a X/Y coordinates) + + + + + Display an arrow pointing to a spot in coordinate space + + + + + Add a bracket to highlight a range between two points in coordinate space with an optional label. + + + + + Add a bracket to highlight a range between two points in coordinate space with an optional label. + + + + + Add a Cleveland Dot plot for the given values. Cleveland Dots will be placed at X positions 0, 1, 2, etc. + + + + + Add a Cleveland Dot plot for the given values using defined dot positions. + + + + + Add a data logging scatter plot designed for growing collections of X/Y points. + + + + + Add a data streamer to display a fixed number of evenly-spaced Y values + + + + + Add a data streamer to display a fixed number of evenly-spaced Y values + + + + + Add a Lollipop plot for the given values. Lollipops will be placed at X positions 0, 1, 2, etc. + + + + + Add a lollipop plot for the given values using defined lollipop positions + + + + + Add a bar plot for the given values. Bars will be placed at X positions 0, 1, 2, etc. + + + + + Add a bar plot for the given values using defined bar positions + + + + + Add a bar plot (values +/- errors) using defined positions + + + + + Create a series of bar plots and customize the ticks and legend + + + + + Create an empty BarSeries, add it to the plot, and return it. Use its Add() method to add bars. + + + + + Create a BarSeries filled with the given bars, add it to the plot, and return it. + + + + + Create a BarSeries filled with the given bars, add it to the plot, and return it. + + + + + Add a binned histogram that displays counts of each cell as a heatmap + + + + + Add an empty bubble plot. Call it's Add() method to add bubbles with custom position and styling. + + + + + Add a bubble plot with multiple bubbles at the given positions all styled the same. + Call the Add() method to add bubbles manually, allowing further customization of size and style. + + + + + Add a circle to the plot + + + + + Add candlesticks to the chart from OHLC (open, high, low, close) data + + + + + Add a colorbar to display a colormap beside the data area + + Colormap to display in this colorbar + The size of the right axis will be set to this number of pixels to make room for the colorbar + If false the colorbar will be displayed on the left edge of the plot. + the colorbar that was just created + + + + Add a colorbar initialized with settings from a heatmap + + A heatmap-containing plottable to connect with this colorbar + The size of the right axis will be set to this number of pixels to make room for the colorbar + the colorbar that was just created + + + + Add a crosshair to the plot + + position of vertical line (axis units) + position of horizontal line (axis units) + the crosshair that was just created + + + + Add an ellipse to the plot + + + + + Create a polygon to fill the area between Y values and a baseline. + + + + + Create a polygon to fill the area between two Y curves that share the same X positions. + + + + + Create a polygon to fill the area between Y values of two curves. + + + + + Create a polygon to fill the area above and below a Y curve + + + + + Create a polygon to fill the area between Y values and a baseline + that uses two different colors for area above and area below the baseline. + + + + + Add a line plot that uses a function (rather than X/Y points) to place the curve + + + + + Add a heatmap to the plot automatically-sized so each cell is 1x1. + + 2D array of intensities. + WARNING: Rendering artifacts may appear for arrays larger than Bitmap can support (~10M total values). + + If true, will be called to ensure heatmap cells will be square. + + Returns the heatmap that was added to the plot. + Act on its public fields and methods to customize it or update its data. + + + + + Add a heatmap to the plot automatically-sized so each cell is 1x1. + + 2D array of intensities. + WARNING: Rendering artifacts may appear for arrays larger than Bitmap can support (~10M total values). + + If true, will be called to ensure heatmap cells will be square. + + Returns the heatmap that was added to the plot. + Act on its public fields and methods to customize it or update its data. + + + + + Add a single-color heatmap where opacity is defined by a 2D array. + + Single color used for all cells + Opacities (ranging 0-1) for all cells + If true, will be called to ensure heatmap cells will be square + + + + + Add a single-color heatmap where opacity is defined by a 2D array. + + Single color used for all cells + Opacities (ranging 0-1) for all cells + If true, will be called to ensure heatmap cells will be square + + + + + Add heatmap to the plot stretched to fit the given dimensions. + Unlike the regular heatmap which gives each cell a size of 1x1 and starts at the axis origin, + this heatmap stretches the array so that it covers the defined X and Y spans. + + 2D array of intensities. + WARNING: Rendering artifacts may appear for arrays larger than Bitmap can support (~10M total values). + position of the left edge of the far left column + position of the left edge of the far right column + position of the upper edge of the bottom row + position of the upper edge of the top row + + + Returns the heatmap that was added to the plot. + Act on its public fields and methods to customize it or update its data. + + + + + Add heatmap to the plot stretched to fit the given dimensions. + Unlike the regular heatmap which gives each cell a size of 1x1 and starts at the axis origin, + this heatmap stretches the array so that it covers the defined X and Y spans. + + 2D array of intensities. + WARNING: Rendering artifacts may appear for arrays larger than Bitmap can support (~10M total values). + position of the left edge of the far left column + position of the left edge of the far right column + position of the upper edge of the bottom row + position of the upper edge of the top row + + + Returns the heatmap that was added to the plot. + Act on its public fields and methods to customize it or update its data. + + + + + Add a horizontal axis line at a specific Y position + + + + + Add a horizontal span (shades the region between two X positions) + + + + + Display an image at a specific coordinate. + The defines which part of the image is placed at that coordinate. + By default the image is shown at its original size (in pixel units), but this can be modified with . + + Image to display + horizontal position of the image anchor (axis units) + vertical position of the image anchor (axis units) + rotation in degrees + scale (1.0 = original scale, 2.0 = double size) + definces which part of the image is placed at the given X and Y coordinates + + + + + Add a line (a scatter plot with two points) to the plot + + + + + Add a line (a scatter plot with two points) to the plot + + + + + Add a marker at a specific X/Y position. + + + + + Add a draggable marker at a specific X/Y position. + + + + + Add OHLC (open, high, low, close) data to the plot + + + + + Add a pie chart to the plot + + + + + Add a point (a scatter plot with a single marker) + + + + color of the marker + size of the marker + maker shape + text to appear in the legend + + The scatter plot that was created and added to the plot. + Interact with its public fields and methods to customize style and update data. + + + + + Add a polygon to the plot + + + + + Add many polygons using an optimized rendering method + + + + + Add a population to the plot + + + + + Add multiple populations to the plot as a single series + + + + + Add multiple populations to the plot as a single series + + + + + Add a radar plot (a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point) + + 2D array containing categories (columns) and groups (rows) + if true, axis (category) values are scaled independently + if provided, each category (column) is normalized to these values + also make the plot frameless and disable its grid + the radar plot that was just created and added to the plot + + + + Add a radial gauge plot (a chart where data is represented by concentric circular gauges) + + Array of gauge values + Also make the plot frameless and disable its grid + The radial gaugle plot that was just created and added to the plot + + + + A Pie chart where the angle of slices is constant but the radii are not. + + The data to plot + Whether to make the plot frameless and disable the grid + + + + Add error bars to the plot with custom dimensions in all 4 directions. + + Horizontal center of the errorbar + Vertical center of each errorbar + Magnitude of positive vertical error + Magnitude of positive horizontal error + Magnitude of negative vertical error + Magnitude of negative horizontal error + Color (null for next color in palette) + Size (in pixels) to draw a marker at the center of each errorbar + + + + Add error bars to the plot which have symmetrical positive/negative errors + + Horizontal center of the errorbar + Vertical center of each errorbar + Magnitude of vertical error + Magnitude of horizontal error + Color (null for next color in palette) + Size (in pixels) to draw a marker at the center of each errorbar + + + + Add an L-shaped scalebar to the corner of the plot + + + + + Add a scatter plot from X/Y pairs. + Lines and markers are shown by default. + Scatter plots are slower than Signal plots. + + + + + Add a scatter plot from X/Y pairs connected by lines (no markers). + Scatter plots are slower than Signal plots. + + + + + Add a scatter plot from X/Y pairs using markers at points (no lines). + Scatter plots are slower than Signal plots. + + + + + Add a step plot is a type of line plot where points are connected with right angles instead of straight lines. + + + + + Scatter plot with Add() and Clear() methods for updating data + + + + + Generic ScatterPlotList using generic types (as long as they can be converted to double) + + + + + Signal plots have evenly-spaced X points and render very fast. + + + + + Signal plots have evenly-spaced X points and render very fast. + + + + + SignalConts plots have evenly-spaced X points and render faster than Signal plots + but data in source arrays cannot be changed after it is loaded. + Methods can be used to update all or portions of the data. + + + + + Speed-optimized plot for Ys with unevenly-spaced ascending Xs + + + + + Speed-optimized plot for Ys with unevenly-spaced ascending Xs. + Faster than SignalXY but values cannot be modified after loading. + + + + + Display text at specific X/Y coordinates + + + + + Display text at specific X/Y coordinates + + + + + Display a text bubble that points to an X/Y location on the plot + + + + + Add a 2D vector field to the plot + + + + + Add a 2D vector field to the plot + + + + + Add a vertical axis line at a specific X position + + + + + Add a horizontal span (shades the region between two X positions) + + + + + Axis on the bottom edge of the plot + + + + + Axis on the top edge of the plot + + + + + Axis on the left edge of the plot + + + + + Axis on the right edge of the plot + + + + + Set the label for the horizontal axis below the plot (XAxis) + + new text + + + + Set the label for the vertical axis to the right of the plot (YAxis2) + + new text + + + + Set the label for the horizontal axis above the plot (XAxis2) + + + + + Configure color and visibility of the frame that outlines the data area. + Note that the axis lines of all 4 primary axes touch each other, + giving the appearance of a rectangle framing the data area. + This method allows the user to customize these lines as a group or individually. + + visibility of the frames for the 4 primary axes + color for the 4 primary axis lines + visibility of the left axis (YAxis) line + visibility of the right axis (YAxis2) line + visibility of the bottom axis (XAxis) line + visibility of the top axis (XAxis2) line + + + + Give the plot a frameless appearance by hiding all axes. + Axes are hidden by making them invisible and setting their size to zero. + This causes the data area to go right up to the edge of the plot. + + + + + Control visibility of axes. + + + + + Customize basic options for the primary X and Y axes. + Call XAxis.Grid() and YAxis.Grid() to further customize grid settings. + + sets visibility of X and Y grid lines + sets color of of X and Y grid lines + defines the style for X and Y grid lines + defines whether the grid is drawn on top of plottables + + + + Set padding around the data area by defining the minimum size and padding for all axes + + YAxis size (in pixels) that defines the area to the left of the plot + YAxis2 size (in pixels) that defines the area to the right of the plot + XAxis size (in pixels) that defines the area to the bottom of the plot + XAxis2 size (in pixels) that defines the area to the top of the plot + Customize the default padding between axes and the edge of the plot + + + + Adjust this axis layout based on the layout of a source plot + + plot to use for layout reference + if true, horizontal layout will be matched + if true, vertical layout will be matched + + + + Get the axis limits for the given plot and apply them to this plot + + + + + Define the shape of the data area as padding (in pixels) on all 4 sides. + Once defined, the layout will not be adjusted as axis labels or ticks change. + Pass null into this function to disable the manual data area. + + + + + Manually define X axis tick labels using consecutive integer positions (0, 1, 2, etc.) + + new tick labels for the X axis + + + + Manually define X axis tick positions and labels + + positions on the X axis + new tick labels for the X axis + + + + Manually define Y axis tick labels using consecutive integer positions (0, 1, 2, etc.) + + new tick labels for the Y axis + + + + Manually define Y axis tick positions and labels + + positions on the Y axis + new tick labels for the Y axis + + + + Set the culture to use for number-to-string converstion for tick labels of all axes. + + standard culture + + + + Set the culture to use for number-to-string converstion for tick labels of all axes. + This overload allows you to manually define every format string, + allowing extensive customization of number and date formatting. + + + Separates the decimal digits + Separates large numbers ito groups of digits for readability + Number of digits after the numberDecimalSeparator + Appearance of negative numbers + Sizes of decimal groups which are separated by the numberGroupSeparator + + + + Create and return an additional axis + + Edge of the plot the new axis will belong to + Only plottables with the same axis index will use this axis. Creates an auto-generated index if null. + defualt label to use for the axis + defualt color to use for the axis + The axis that was just created and added to the plot. You can further customize it by interacting with it. + + + + Remove the a specific axis from the plot + + + + + Returns axes matching the given axisIndex and isVertical. + + The axis index to match, or null to allow any index + True to match only Y axes, false to match only X axes, or null to match either + The axes matching the given properties + + + + Return the coordinate (in coordinate space) for the given pixel + + horizontal pixel location + vertical pixel location + index of the horizontal axis to use + index of the vertical axis to use + point in coordinate space + + + + Return the X position (in coordinate space) for the given pixel column + + horizontal pixel location + index of the horizontal axis to use + horizontal position in coordinate space + + + + Return the Y position (in coordinate space) for the given pixel row + + vertical pixel location + index of the vertical axis to use + vertical position in coordinate space + + + + Return the pixel for the given point in coordinate space + + horizontal coordinate + vertical coordinate + index of the horizontal axis to use + index of the vertical axis to use + pixel location + + + + Return the horizontal pixel location given position in coordinate space + + horizontal coordinate + index of the horizontal axis to use + horizontal pixel position + + + + Return the vertical pixel location given position in coordinate space + + vertical coordinate + index of the vertical axis to use + vertical pixel position + + + + Return the limits of the data contained by this plot (regardless of the axis limits). + WARNING: This method iterates all data points in the plot and may be slow for large datasets. + + + + + Returns the current limits for a given pair of axes. + + which axis index to reference + which axis index to reference + current limits + + + + Set limits for the a given pair of axes + + lower limit of the horizontal axis + upper limit of the horizontal axis + lower limit of the vertical axis + upper limit of the vertical axis + index of the axis the horizontal limits apply to + index of the axis the vertical limits apply to + + + + Set limits for the primary X axis + + lower limit of the horizontal axis + upper limit of the horizontal axis + index of the axis the horizontal limits apply to + + + + Set limits for the primary Y axis + + lower limit of the vertical axis + upper limit of the vertical axis + index of the axis the vertical limits apply to + + + + Set limits for a pair of axes + + new limits + index of the axis the horizontal limits apply to + index of the axis the vertical limits apply to + + + + Set maximum outer limits beyond which the plot cannot be zoomed-out or panned. + + + + + Set maximum outer limits beyond which the plot cannot be zoomed-out or panned. + + + + + Set minimum innter limits which will always be visible on the plot. + + + + + Auto-scale the axis limits to fit the data. This function is an alias for AxisAuto(). + + horizontal margin in the range [0, 1] + vertical margin in the range [0, 1] + Current default margins for automatic axis scaling + + + + Auto-scale the axis limits to fit the data. This function is an alias for AxisAuto(). + This overload is for multi-axis plots (plots with multiple X and Y axes) and will only adjust the specified axes. + + horizontal margin in the range [0, 1] + vertical margin in the range [0, 1] + Only adjust the specified axis (for plots with multiple X axes) + Only adjust the specified axis (for plots with multiple Y axes) + Current default margins for automatic axis scaling + + + + Automatically set axis limits to fit the data. + + Extra space (fraction) to add to the left and right of the limits of the data (typically 0.05) + Extra space (fraction) to add above and below the limits of the data (typically 0.1) + + + + Automatically set axis limits to fit the data. + This overload is designed for multi-axis plots (with multiple X axes or multiple Y axes). + + Extra space (fraction) to add to the left and right of the limits of the data (typically 0.05) + Extra space (fraction) to add above and below the limits of the data (typically 0.1) + Only adjust the specified axis (for plots with multiple X axes) + Only adjust the specified axis (for plots with multiple Y axes) + + + + Automatically adjust axis limits to fit the data + + amount of space to the left and right of the data (typically 0.05) + Only adjust the specified axis (for plots with multiple X axes) + + + + Automatically adjust axis limits to fit the data (with a little extra margin) + + amount of space above and below the data (as a fraction of its height) + Only adjust the specified axis (for plots with multiple Y axes) + + + + Adjust axis limits to achieve a certain pixel scale (units per pixel) + + zoom so 1 pixel equals this many horizontal units in coordinate space + zoom so 1 pixel equals this many vertical units in coordinate space + + + + Lock X and Y axis scales (units per pixel) together to protect symmetry of circles and squares + + if true, scales are locked such that zooming one zooms the other + defines behavior for how to adjust axis limits to achieve equal scales + + + + Zoom in or out. The amount of zoom is defined as a fraction of the current axis span. + + horizontal zoom (>1 means zoom in) + vertical zoom (>1 means zoom in) + if defined, zoom will be centered at this point + if defined, zoom will be centered at this point + index of the axis to zoom + index of the axis to zoom + + + + Pan the primary X and Y axis without affecting zoom + + horizontal distance to pan (in coordinate units) + vertical distance to pan (in coordinate units) + index of the axis to act on + index of the axis to act on + + + + Pan the primary X and Y axes to center the view on the given coordinate + + new horizontal center (coordinate units) + new vertical center (in coordinate units) + index of the axis to act on + index of the axis to act on + + + + The settings object stores all state (configuration and data) for a plot + + + + + Plot image width (pixels) + + + + + Plot image height (pixels) + + + + + Platform-specific methods for launching this plot + + + + + A ScottPlot stores data in plottable objects and draws it on a bitmap when Render() is called + + default width (pixels) to use when rendering + default height (pixels) to use when rendering + + + + Brief description of this plot + + plot description + + + + ScottPlot version in the format "1.2.3" + + + + + Add a plottable to the plot + + a plottable the user created + + + + Clear all plottables + + + + + Remove all plottables of the given type + + all plottables of this type will be removed + + + + Remove a specific plottable + + The plottable to remove + + + + Remove the plottable at the specified index of the list + + The zero-based index of the element to remove + + + + Move a plottable in the list. Plottables near the end are rendered last (on top). + + + + + Move a plottable to the front so it is rendered first and appears beneath all others. + + + + + Move a plottable to the end so it is rendered last and appears above all others. + + + + + Return a copy of the list of plottables + + list of plottables + + + + Return the draggable plottable under the mouse cursor (or null if there isn't one) + + + + + Return the highest hittable plottable at the given point (or null if no hit) + + + + + Throw an exception if any plottable contains an invalid state. + + Check every individual value for validity. This is more thorough, but slower. + + + + The Settings module stores manages plot state and advanced configuration. + Its class structure changes frequently, and users are highly advised not to interact with it directly. + This method returns the settings module for advanced users and developers to interact with. + + Show a warning message indicating this method is only intended for developers + Settings used by the plot + + + + Update the default size for new renders + + width (pixels) for future renders + height (pixels) for future renders + + + + Return a new color from the Pallette based on the number of plottables already in the plot. + Use this to ensure every plottable gets a unique color. + + value from 0 (transparent) to 1 (opaque) + new color + + + + The palette defines default colors to use for new plottables. + + + + + Set the colors and fonts of many plot components at once using a predefined theme + + + + + Set the color of specific plot components + + Color for area beneath the axis ticks and labels and around the data area + Color for area inside the data frame but beneath the grid and plottables + Color for grid lines + Color for axis tick marks and frame lines + Color for axis labels and tick labels + Color for the top axis label (XAxis2's title) + Bitmap to display behind the data area + Bitmap to display behind the entire figure + + + + Reset axis padding to the default values for all axes + + + + + If enabled, the benchmark displays render information in the corner of the plot. + + True/false defines whether benchmark is enabled. Null will not change the benchmark. + true if the benchmark is enabled + + + + Return an array of times for the last several renders. + The last element of the array is the most recently rendered frame time. + + + + + Configure legend visibility and location. + Optionally you can further customize the legend by interacting with the object it returns. + + whether or not the legend is visible (or null for no change) + position of the legend relative to the data area + The legend itself. Use public fields to further customize its appearance and behavior. + + + + Return a new Plot with all the same Plottables (and some of the styles) of this one. + + A new plot similar to this one. + + + + The GUID helps identify individual plots + + + + + Every plot has a globally unique ID (GUID) that can help differentiate it from other plots + + A string representing the GUID + + + + Returns true if the given plot is the exact same plot as this one + + the plot to compare this one to + true if the two plots have the same GUID + + + + Returns an integer unique to this instance (based on the GUID) + + An integer representing the GUID + + + + Create a series of bar plots given a 2D dataset + + + + + Render the plot onto an existing bitmap + + an existing bitmap to render onto + + scale the size of the output image by this fraction (without resizing the plot) + the same bitmap that was passed in (but was rendered onto) + + + + This object is locked by the render loop. + Locking this externally will prevent renders until it is released. + + + + + Wait for the current render to finish, then prevent future renders until RenderUnlock() is called. + Locking rendering is required if you intend to modify plottables while rendering is occurring in another thread. + + + + + Release the render lock, allowing renders to proceed. + + + + + Render the plot onto a new Bitmap (using the size given when the plot was created or resized) + + if true, anti-aliasing will be disabled for this render + the Bitmap that was created + + + + Render the plot onto a new Bitmap of the given dimensions + + resize the plot to this width (pixels) before rendering + resize the plot to this height (pixels) before rendering + if true, anti-aliasing will be disabled for this render + scale the size of the output image by this fraction (without resizing the plot) + the Bitmap that was created + + + + Create a new Bitmap, render the plot onto it, and return it + + + + + Render the plot and return the bytes for a PNG file. + This method is useful for rendering in stateless cloud environments that do not use a traditional filesystem. + + + + + + Render the plot and return the image as a Bas64-encoded PNG + + + + + Render the plot and return an HTML img element containing a Base64-encoded PNG + + + + + Return a new Bitmap containing only the legend + + new bitmap containing the legend + + + + Save the plot as an image + + file path for the images (existing files will be overwritten) + resize the plot to this width (pixels) before rendering + resize the plot to this height (pixels) before rendering + if true, anti-aliasing will be disabled for this render. Default false + scale the size of the output image by this fraction (without resizing the plot) + Full path for the image that was saved + + + + Use a random seed so each generator returns different data. + + + + + Use a fixed seed so each generator returns the same data. + + + + + Return a uniformly random number between 0 (inclusive) and the given maximum (exclusive) + + + + + Return a random number guaranteed not to be zero + + + + + Return a uniformly random number between the given values + + + + + Return a random integer up to the maximum integer size + + + + + Return a random integer between zero (inclusive) and the given value (exclusive) + + + + + Return a number normally distributed around the given + according to the standard deviation. + + + + + Uniformly distributed random numbers + + + + + Return a collection of numbers normally distributed around the given + according to the standard deviation. + + + + + Sine wave with random frequency, amplitude, and phase + + + + + A sequence of numbers that starts at + and "walks" randomly from one point to the next, scaled by . + + + + + Return a collection OHLCs representing random price action + + + + + Describes which part of the vector line will be placed at the data coordinates. + + + + + If enabled arrowheads will be drawn as lines scaled to each vector's magnitude. + + + + + When using scaled arrowheads this defines the width of the arrow relative to the vector line's length. + + + + + When using scaled arrowheads this defines length of the arrowhead relative to the vector line's length. + + + + + Length of the scaled arrowhead + + + + + Width of the scaled arrowhead + + + + + Size of the arrowhead if custom/scaled arrowheads are not in use + + + + + Size of the arrowhead if custom/scaled arrowheads are not in use + + + + + Marker drawn at each coordinate + + + + + Size of markers to be drawn at each coordinate + + + + + Thickness of the arrow lines + + + + + Render an evenly-spaced 2D vector field. + + + + + Render a single arrow placed anywhere in coordinace space + + + + + An Axis stores dimensions (axis limits and pixel/unit conversion methods) and can render + itself including axis label, tick marks, tick labels, and grid lines + + + + + Axis dimensions and methods for pixel/unit conversions + + + + + Plottables with this axis index will use pixel/unit conversions from this axis + + + + + Customization options for the text label displayed on an axis + + + + + Customization options for axis tick marks + + + + + Customization options for the line between an axis and the data area + + + + + Return configuration objects to allow deep customization of axis settings. + WARNING: This API may not be stable across future versions. + + + + + Reset axis padding to the default values + + + + + Define the minimum and maximum limits for the pixel size of this axis + + + + + Size this axis to an exact number of pixels + + + + + Limit the zoom so the span of this axis is never smaller than the given value + + + + + Limit the zoom so the span of this axis is never greater than the given value + + + + + Disallow panning or zooming beyond the given limits + + + + + Disallow panning outside or zooming in beyond the given limits + + + + + Define how many pixels away from the data area this axis will be. + TightenLayout() populates this value (based on other PixelSize values) to stack axes beside each other. + + + + + Returns the number of pixels occupied by this axis + + + + + Use the latest configuration (size, font settings, axis limits) to determine tick mark positions + + + + + Render all components of this axis onto the given Bitmap + + + + + DateTime format assumes axis represents DateTime.ToOATime() units and displays tick labels accordingly. + + + + + Configure the label of this axis + + + + + Display a custom image as the axis label instead of text + + The image to display where the label should go + pixels of padding between the inner image edge and the data area + pixels of padding between the outer image edge and the figure edge + + + + Set color of every component of this axis (label, line, tick marks, and tick labels) + + + + + Use a custom function to generate tick label strings + + + + + Manually define the string format to use for translating tick positions to tick labels + + + + + Manually define the string format to use for translating exponential part of a number to corner label + + String.Format(format,exponent) + + + + Customize string settings for the tick labels + + + + + Define a manual spacing between major ticks (and major grid lines) + + + + + Define a manual spacing between major ticks (and major grid lines) for axes configured to display using DateTime format + + + + + Manually define major tick (and grid) positions and labels + + + + + Reset previously defined manual tick positions and revert to default automatic tick placement. + + + + + Reset previously defined manual tick positions and revert to default automatic tick placement. + The provided tick positions and labels will be displayed in addition to the automatic ticks. + + + + + Ruler mode draws long tick marks and offsets tick labels for a ruler appearance + + + + + Enable this to snap major ticks (and grid lines) to the nearest pixel to avoid anti-aliasing artifacts + + + + + + Apply the same color to major and minor tick marks + + + + + Set colors for major and minor tick marks + + + + + Control whether tick marks point outward or inward + + + + + Set the culture to use for unit-to-string tick mark conversion + + + + + Manually define culture to use for unit-to-string tick mark conversion + + + + + Customize styling of the tick labels + + + + + Customize styling of the label (without changing its content) + + + + + Set visibility of all ticks + + + + + Set visibility of individual tick components + + + + + This value defines the packing density of tick labels. + A density of 1.0 means labels fit tightly based on measured maximum label size. + Higher densities place more ticks but tick labels may oberlap. + + + + + Define the smallest distance between major ticks, grid lines, and tick labels in coordinate units. + This only works for numeric tick systems (DateTime ticks are not supported). + + + + + Sets whether minor ticks are evenly spaced or log-distributed between major tick positions + + if true, minor tick marks will be logarithmically distributed + if true, log-scaled ticks will only show as even powers of ten + This many minor ticks will be placed between each major tick + + + + Configure the line drawn along the edge of the axis + + + + + Set the minimum size and padding of the axis + + + + + Configure visibility and styling of the major grid + + + + + Configure visibility and styling of the minor grid + + + + + Hide this axis by forcing its size to always be zero. + + + + + Set visibility for major tick grid lines + + + + + Set pixel size based on the latest axis label, tick marks, and tick label + + + + + Lock min/max limits so it cannot be changed (until it's unlocked) + + + + + Return the ticks displayed in the previous render + + + + + This class stores MUTABLE axis limits and pixel size information for a SINGLE AXIS. + Unlike PlotDimensions(immutable objects created just before rendering), + values in this class are intended for long term storage. + + + + + Size of the entire figure (in pixels) if it were to be exported as an image + + + + + Side of just the data area (in pixels). + The data area is the inner rectangle that displays plots. + + + + + Offset of the data area (in pixels) relative to the left or top edge of the figure. + + + + + Indicates whether pixel values ascend in the same direciton as axis unit values. + Horizontal axes are not inverted (both ascend from left to right). + Vertical axes are inverted (units ascend from bottom to top but pixel positions ascend from top to bottom). + + + + + Lower edge of the data area (axis units). + + + + + Upper edge of the data area (axis units). + + + + + Limit beyond which the plot cannot be zoomed in + + + + + Limit beyond which the plot cannot be zoomed in + + + + + Limit which will always be visible on the data area + + + + + Limit which will always be visible on the data area + + + + + Size of the view boundaries. + This should always be greater or equal to the Span. + + + + + Limit zooming so the span is never smaller than this value + + + + + Limit zooming so the span is never greater than this value + + + + + False until axes are intentionally set. + Unset axes default to NaN min/max limits. + + + + + True if min or max is NaN. + + + + + Size of the data area (axis units) + + + + + Center of the data area (axis units) + + + + + Number of pixels for each axis unit + + + + + Size of 1 screen pixel in axis units + + + + + Limit remember/recall is used while mouse dragging + + + + + Limit remember/recall is used while mouse dragging + + + + + If true, min/max cannot bet set. + + + + + Limit remember/recall is used while mouse dragging + + + + + Limit remember/recall is used while mouse dragging + + + + + Return limits that contain no NaNs. + NaNs will be replaced with +/- 10. + + + + + + Reset the axis as if it were never set. + + + + + Resize/reposition this axis according to the given pixel units + + + + + Set data size and offset based on desired padding between the edge of the figure and data area + + + + + Set boundaries beyond which this axis cannot be panned or zoomed + + + + + Set boundaries beyond which this axis cannot be panned or zoomed + + + + + Modify axis limits such that none extend beyond the boundaries. + + + + + If the zoom is further in than the allowed span, + zoom out but keep the center position + + + + + If the zoom is further in than the allowed span, + zoom out but keep the center position + + + + + Set axis limits + + + + + Shift min and max by the given number of units + + + + + Shift min and max by the given number of pixels + + + + + Zoom by simultaneously adjusting Min and Max + + 1 for no change, 2 zooms in, .5 zooms out. + If given, zoom toward/from this alternative center point. + + + + Get the pixel location on the figure for a given position in axis units + + + + + Get the axis unit position for the given pixel location on the figure + + + + + Sets a flag indicating whether axis limits are mutable. + + + + + Controls whether this axis occupies space and is displayed + + + + + Edge of the data area this axis represents + + + + + Axis title + + + + + Font options for the axis title + + + + + Set this field to display a bitmap instead of a text axis label + + + + + Padding (in pixels) between the image and the edge of the data area + + + + + Padding (in pixels) between the image and the edge of the figure + + + + + Total amount (in pixels) to pad the image when measuring axis size + + + + + Amount of padding (in pixels) to surround the contents of this axis + + + + + Distance to offset this axis to account for multiple axes + + + + + Exact size (in pixels) of the contents of this this axis + + + + + Return the size of the contents of this axis. + Returned dimensions are screen-accurate (even if this axis is rotated). + + + + + + Return the point and rotation representing the center of the base of this axis + + + + + If true, grid lines will be drawn with anti-aliasing off to give the appearance of "snapping" + to the nearest pixel and to avoid blurriness associated with drawing single-pixel anti-aliased lines. + + + + + A "renderable" is any object which can be drawn on the figure. + + + + + List of items appearing in the legend during the last render + + + + + Number of items appearing in the legend during the last render + + + + + Returns true if the legend contained items during the last render + + + + + Creates and returns a Bitmap containing all legend items displayed at the last render. + This will be 1px transparent Bitmap if no render was performed previously or if there are no legend items. + + + + + Returns an array of legend items displayed in the last render + + + + + Returns an array of render times (in milliseconds) of the last several renders. + The most recent renders are at the end of the array. + + + + + This module holds state for figure dimensions, axis limits, plot contents, and styling options. + A plot can be duplicated by copying the full state of this settings module. + + + + + This List contains all plottables managed by this Plot. + Render order is from lowest (first) to highest (last). + + + + + Unique value that changes any time the list of plottables is modified. + + + + + Return the next color from PlottablePalette based on the current number of plottables + + + + + List of all axes used in this plot. + Axes can be added, but existing ones should not be removed. + + + + + Get an array containing just horizontal axes + + + + + Get an array containing just vertical axes + + + + + Return the first horizontal axis with the given axis index + + + + + Return the first vertical axis with the given axis index + + + + + Indicates whether unset axes are present. + If true, the user may want to call AxisAuto() or SetAxisLimits(). + + + + + Controls relationship between X and Y axis scales. + See documentation for enumeration members. + + + + + Primary vertical axis (on the left of the plot) + + + + + Secondary vertical axis (on the right of the plot) + + + + + Primary horizontal axis (on the bottom of the plot) + + + + + Secondary horizontal axis (on the top of the plot) + + + + + Width of the figure (in pixels) + + + + + Height of the figure (in pixels) + + + + + Default padding to use when AxisAuto() or Margins() is called without a specified margin + + + + + Default padding to use when AxisAuto() or Margins() is called without a specified margin + + + + + Controls whether OferflowException is ignored in the Render() method. + This exception is commonly thrown by System.Drawing when drawing to extremely large pixel locations. + + + + + Determines whether the grid lines should be drawn above the plottables. + + + + + If defined, the data area will use this rectangle and not be adjusted + depending on axis labels or ticks. + + + + + Return figure dimensions for the specified X and Y axes + + + + + Set the default size for rendering images + + + + + Reset axis limits to their defauts + + + + + Define axis limits for a particuar axis + + + + + Define axis limits for a particuar axis + + + + + Return X and Y axis limits + + + + + Pan all axes by the given pixel distance + + + + + Zoom all axes by the given pixel distance + + + + + Zoom all axes by the given pixel distance + + + + + Zoom all axes by the given fraction + + + + + Automatically adjust X and Y axis limits of all axes to fit the data + + + + + Automatically adjust axis limits for all axes which have not yet been set + + + + + If a scale lock mode is in use, modify the axis limits accordingly + + + + + Automatically adjust X axis limits to fit the data + + + + + Automatically adjust Y axis limits to fit the data + + + + + Store axis limits (useful for storing state upon a MouseDown event) + + + + + Recall axis limits (useful for recalling state from a previous MouseDown event) + + + + + Remember mouse position (do this before calling MousePan or MouseZoom) + + + + + Pan all axes based on the mouse position now vs that last given to MouseDown() + + + + + Zoom all axes based on the mouse position now vs that last given to MouseDown() + Relative to the center of the plot + + + + + Zoom all axes based on the mouse position now vs that last given to MouseDown() + Relative to the location of the mouse when it was first pressed + + + + + Ensure all axes have the same size and offset as the primary X and Y axis + + + + + Automatically adjust the layout for every axis + + + + + Platform-independent representation of a color. + Projects should use extension methods to supply platforms-specific operations. + + + + + Create a snap object from a custom function + + + + + Snaps to the nearest integer position + + + + + Snaps to the nearest position in a user-provided array + + + + + Returns the position of the item in the array closest to the given position + + + + + Returns the index of the item in the array closest to the given position + + + + + Always returns the original value (snapping disabled) + + + + + Customizable 2D snap system from independent 1D snap objects. + + + + + Returns the given position snapped to the nearest integer positions + + + + + Snaps to the nearest position in a user-provided array + + + + + Returns the position of the item in the array closest to the given position + + + + + Returns the index of the item in the array closest to the given position + + + + + Always returns the original value (snapping disabled) + + + + + The ticks for each spoke. + + + + + The number of spokes to draw. + + + + + Labels for each category. + Length must be equal to the number of columns (categories) in the original data. + + + + + Icons for each category. + Length must be equal to the number of columns (categories) in the original data. + + + + + Controls rendering style of the concentric circles (ticks) of the web + + + + + Indicates the type of axis chart to render + + + + + Color of the axis lines and concentric circles representing ticks + + + + + If true, each value will be written in text on the plot. + + + + + If true, category labels will be written in text on the plot (provided they exist) + + + + + Determines whether each spoke should be labeled, or just the first + + + + + The drawing surface to use. + + + + + Font used for labeling values on the plot + + + + + Determines the width of each spoke and the axis lines. + + + + + Return the minimum, and maximum, and sum of a given array. + + + + + Return the standard deviation of the given values. + + + + + Return the standard deviation of the given values. + This overload is faster because the mean of the values is provided. + + + + + Return the standard error of the given values + + + + + Return the mean of the given values + + + + + Return the Nth smallest value in the given array. + + + + + Return the value of the Nth quantile. + + + + + Return the value of the Nth quartile + + + quartile 1, 2, or 3 + + + + Return the percentile of the given array + + + number from 0 to 100 + + + + + Return the percentile of the given array + + + number from 0 to 100 + + + + Return the median of the given array. + If the length of the array is even, this value is the mean of the upper and lower medians. + + + + + Return the kth smallest value from a range of the given array. + WARNING: values will be mutated. + + + inclusive lower bound + inclusive upper bound + number starting at 0 + + + + + Return a random integer from within the given range + + inclusive lower bound + exclusive upper bound + + + + + Partition the array between the defined bounds according to elements above and below a randomly chosen pivot value + + + + + index of the pivot used + + + + Given a dataset of values return the probability density function. + The returned function is a Gaussian curve from 0 to 1 (not normalized) + + original dataset + Function to return Y for a given X + + + + Given a dataset of values return the probability density function at specific X positions. + Returned values will be normalized such that their integral is 1. + + original dataset + Positions (Xs) for which probabilities (Ys) will be returned + if True, output will be multiplied by 100 + Densities (Ys) for each of the given Xs + + + + Return the cumulative sum of the given data + + + + + + + Compute the histogram of a dataset. + + Input data + Lower edge of the first bin (inclusive). If NaN, minimum of input values will be used. + High edge of the largest bin (inclusive). If NaN, maximum of input values will be used. + Width of each bin. + If False, the result will contain the number of samples in each bin. If True, the result is the value of the probability density function at the bin (the sum of all values will be 1 if the bin size is 1). + + + + Compute the histogram of a dataset, also returns the minOutliers and maxOutliers counts. These outlier counts are also included in the first and last histogram bin counts respectively. + + Input data + Lower edge of the first bin (inclusive). If NaN, minimum of input values will be used. + High edge of the largest bin (inclusive). If NaN, maximum of input values will be used. + Width of each bin. + If False, the result will contain the number of samples in each bin. If True, the result is the value of the probability density function at the bin (the sum of all values will be 1 if the bin size is 1). + + + + Compute the histogram of a dataset. + + Input data + Number of equal-width bins + If False, the result will contain the number of samples in each bin. If True, the result is the value of the probability density function at the bin (the sum of all values will be 1 if the bin size is 1). + Lower edge of the first bin (inclusive). If NaN, minimum of input values will be used. + High edge of the largest bin (inclusive). If NaN, maximum of input values will be used. + + + + Compute the histogram of a dataset, also returns the minOutliers and maxOutliers counts. These outlier counts are also included in the first and last histogram bin counts respectively. + + Input data + Number of equal-width bins + If False, the result will contain the number of samples in each bin. If True, the result is the value of the probability density function at the bin (the sum of all values will be 1 if the bin size is 1). + Lower edge of the first bin (inclusive). If NaN, minimum of input values will be used. + High edge of the largest bin (inclusive). If NaN, maximum of input values will be used. + + + + Simple moving average + + number of values to use for each calculation + number of values to use for each calculation + only return data where values are present for the whole period + + + + Simple moving standard deviation + + + number of values to use for each calculation + + + + Return the simple moving average (SMA) of the OHLC closing prices. + The returned data will be shorter than the input data by N points. + + price data to analyze + each returned price represents the average of N prices + + + + Return the SMA and upper/lower Bollinger bands for the given price data. + The returned data will NOT be shorter than the input data. It will contain NaN values at the front. + + price data to use for analysis + each returned price represents the average of N prices + number of standard deviations from the mean to use for the Bollinger bands + + + + Return the SMA and upper/lower Bollinger bands for the closing price of the given OHLCs. + The returned data will be shorter than the input data by N values. + + price data to use for analysis + each returned price represents the average of N prices + number of standard deviations from the mean to use for the Bollinger bands + + + + Number of values counted for each bin. + + + + + Number of bins. + + + + + Running total of all values counted. + + + + + Total number of values accumulated. + + + + + Lower edge for each bin. + + + + + Center of each bin. + + + + + Default behavior is that outlier values are not counted. + If this is enabled, min/max outliers will be counted in the first/last bin. + + + + + Lower edge of the first bin + + + + + Upper edge of the last bin + + + + + The calculated bin size. + + + + + Number of values that were smaller than the lower edge of the first bin. + + + + + Number of values that were greater than the upper edge of the last bin. + + + + + Create a histogram which will count values supplied by and + + minimum value to be counted + maximum value to be counted + number of bins between and + if false, outliers will not be counted + if true, one more bin will be added so values equal to can be counted too + + If and are the same value, the and + properties will be - 0.5 and + 0.5, respectively. This is to handle an edge + case where all values of an array are exactly the same, producing an identical min and max. + + + + + Create a histogram with bins that can count data from to (inclusive) + + + + + Create a histogram with bins that can count data from to (inclusive) + + + + + Return counts normalized so the sum of all counts equals 1 + + + + + Return a function describing the probability function (a Gaussian curve fitted to the histogram probabilities). + + + + + Return counts normalized so the maximum value equals the given value + + + + + Return the cumulative histogram counts. + Each value is the number of counts in that bin and all bins below it. + + + + + Return the cumulative probability histogram. + Each value is the fraction of counts in that bin and all bins below it. + + + + + Add a single value to the histogram + + + + + Add multiple values to the histogram + + + + + Reset the histogram, setting all counts and values to zero + + + + + Generate a smooth (interpolated) curve that follows the path of the given X/Y points + + + + + The End Slope Spline is a Natural Spline whose first and last point slopes can be defined + + + + + Natural Spline data interpolator + + + + + The Periodic Spline is a Natural Spline whose first and last point slopes are equal + + + + + This module holds an array of values and provides popultation statistics (mean, median, standard deviation, etc) + + + + + Generate random values with a normal distribution + + + + + Calculate population stats from the given array of values + + + + + A population series is a collection of similar PopulationStats objects. + + + + + Return an array containing every available style + + + + + A theme describes a collection of colors and fonts that can be used to style a plot + + + + + Return an array of minor tick marks for the given range + + Locations of visible major ticks. Must be evenly spaced. + Do not include minor ticks less than this value. + Do not include minor ticks greater than this value. + Array of minor tick positions (empty at positions occupied by major ticks) + + + + Return log-distributed points between the min/max values + + number of divisions + lowest value + highest value + if true, returned values will contain the min/max values themselves + + + + This class contains logic to generate ticks given plot size and axis dimensions + and many configuration settings to customize this behavior. + + + + + Automatically calculated ticks + + + + + When populated, manual ticks are the ONLY ticks shown + + + + + When populated, additionalTicks are shown in addition to automatic ticks + + + + + Controls how to translate exponential part of a number to strings + + + + + Label to show in the corner when using multiplier or offset notation + + + + + Measured size of the largest tick label + + + + + Measured size of the largest tick label + + + + + Controls how to translate positions to strings + + + + + If True, these ticks are placed along a vertical (Y) axis. + This is used to determine whether tick density should be based on tick label width or height. + + + + + If True, the sign of numeric tick labels will be inverted. + This is used to give the appearance of descending ticks. + + + + + Logic for generator minor tick positions + + + + + Format string for generating tick labels from numeric tick positions + + + + + Format string for generating tick labels from DateTime tick positions + + + + + If defined, this function will be used to generate tick labels from positions + + + + + Culture to use for generating tick labels + + + + + Optimally packed tick labels have a density 1.0 and lower densities space ticks farther apart. + + + + + Defines the minimum distance (in coordinate units) for major ticks. + + + + + If True, non-integer tick positions will not be used. + This may be desired for log10-scaled axes so tick marks are even powers of 10. + + + + + If minor tick distribution is log-scaled, place this many minor ticks + + + + + Determine tick density using a fixed formula to estimate label size instead of MeasureString(). + This is less accurate, but is consistent across operating systems, and is independent of font. + + + + + Only show a single tick if the axis has a very small pixel size + + + + + Recalculate ticks based on the given plot information. + Access ticks later by calling + + + + + Return the size of the largest expected tick label + + + + + Return a round number that would make a good spacing between major ticks. + + + + + Apply various scaling, inversion, and notation operations and return the labels to show on the plot + + + + + Create a tick label for the given number according to + + + + + return a copy of the given array padded with the given value at both sidees + + + + + Throw an exception if the value is NaN or infinity + + + + + Throw an exception if the array is null or contains NaN or infinity + + + + + Throw an exception if the array is null or contains NaN or infinity + + + + + Throw an exception if an element is less than the previous element + + + + + Throw an exception if an element is less than the previous element + + + + + Throw an exception if an element is less than the previous element + + + + + Throw an exception if the array does not contain at least one element + + + + + Throw an exception if the array does not contain at least one element + + + + + Throw an exception if the array does not contain at least one element + + + + + Throw an exception if the array does not contain at least one element + + + + + Throw an exception if non-null arrays have different lengths + + + + + Throw an exception if non-null arrays have different lengths + + + + + Returns true if all non-null arguments have equal length + + + + + Throws an exception if the string is null, empty, or only contains whitespace + + + + + Placeholder for functions which need to call a validation function + + + + + ScottPlot version number in the format "1.2.3" + + + + + Full ScottPlot version in the format "ScottPlot 1.2.3" + + + + diff --git a/HexcalMC/bin/x64/Debug/System.Drawing.Common.dll b/HexcalMC/bin/x64/Debug/System.Drawing.Common.dll new file mode 100644 index 0000000..649e45b Binary files /dev/null and b/HexcalMC/bin/x64/Debug/System.Drawing.Common.dll differ diff --git a/HexcalMC/bin/x64/Debug/System.Numerics.Vectors.dll b/HexcalMC/bin/x64/Debug/System.Numerics.Vectors.dll new file mode 100644 index 0000000..0865972 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/System.Numerics.Vectors.dll differ diff --git a/HexcalMC/bin/x64/Debug/System.Numerics.Vectors.xml b/HexcalMC/bin/x64/Debug/System.Numerics.Vectors.xml new file mode 100644 index 0000000..da34d39 --- /dev/null +++ b/HexcalMC/bin/x64/Debug/System.Numerics.Vectors.xml @@ -0,0 +1,2621 @@ + + + System.Numerics.Vectors + + + + Represents a 3x2 matrix. + + + Creates a 3x2 matrix from the specified components. + The value to assign to the first element in the first row. + The value to assign to the second element in the first row. + The value to assign to the first element in the second row. + The value to assign to the second element in the second row. + The value to assign to the first element in the third row. + The value to assign to the second element in the third row. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values of value1 and value2. + + + Creates a rotation matrix using the given rotation in radians. + The amount of rotation, in radians. + The rotation matrix. + + + Creates a rotation matrix using the specified rotation in radians and a center point. + The amount of rotation, in radians. + The center point. + The rotation matrix. + + + Creates a scaling matrix from the specified X and Y components. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The scaling matrix. + + + Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center. + The uniform scale to use. + The center offset. + The scaling matrix. + + + Creates a scaling matrix that is offset by a given center point. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The center point. + The scaling matrix. + + + Creates a scaling matrix that scales uniformly with the given scale. + The uniform scale to use. + The scaling matrix. + + + Creates a scaling matrix from the specified vector scale. + The scale to use. + The scaling matrix. + + + Creates a scaling matrix from the specified vector scale with an offset from the specified center point. + The scale to use. + The center offset. + The scaling matrix. + + + Creates a skew matrix from the specified angles in radians. + The X angle, in radians. + The Y angle, in radians. + The skew matrix. + + + Creates a skew matrix from the specified angles in radians and a center point. + The X angle, in radians. + The Y angle, in radians. + The center point. + The skew matrix. + + + Creates a translation matrix from the specified 2-dimensional vector. + The translation position. + The translation matrix. + + + Creates a translation matrix from the specified X and Y components. + The X position. + The Y position. + The translation matrix. + + + Returns a value that indicates whether this instance and another 3x2 matrix are equal. + The other matrix. + true if the two matrices are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Calculates the determinant for this matrix. + The determinant. + + + Returns the hash code for this instance. + The hash code. + + + Gets the multiplicative identity matrix. + The multiplicative identify matrix. + + + Inverts the specified matrix. The return value indicates whether the operation succeeded. + The matrix to invert. + When this method returns, contains the inverted matrix if the operation succeeded. + true if matrix was converted successfully; otherwise, false. + + + Indicates whether the current matrix is the identity matrix. + true if the current matrix is the identity matrix; otherwise, false. + + + Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix. + The first matrix. + The second matrix. + The relative weighting of matrix2. + The interpolated matrix. + + + The first element of the first row. + + + + The second element of the first row. + + + + The first element of the second row. + + + + The second element of the second row. + + + + The first element of the third row. + + + + The second element of the third row. + + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values. + + + Returns a value that indicates whether the specified matrices are equal. + The first matrix to compare. + The second matrix to compare. + true if value1 and value2 are equal; otherwise, false. + + + Returns a value that indicates whether the specified matrices are not equal. + The first matrix to compare. + The second matrix to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Returns a string that represents this matrix. + The string representation of this matrix. + + + Gets or sets the translation component of this matrix. + The translation component of the current instance. + + + Represents a 4x4 matrix. + + + Creates a object from a specified object. + A 3x2 matrix. + + + Creates a 4x4 matrix from the specified components. + The value to assign to the first element in the first row. + The value to assign to the second element in the first row. + The value to assign to the third element in the first row. + The value to assign to the fourth element in the first row. + The value to assign to the first element in the second row. + The value to assign to the second element in the second row. + The value to assign to the third element in the second row. + The value to assign to the third element in the second row. + The value to assign to the first element in the third row. + The value to assign to the second element in the third row. + The value to assign to the third element in the third row. + The value to assign to the fourth element in the third row. + The value to assign to the first element in the fourth row. + The value to assign to the second element in the fourth row. + The value to assign to the third element in the fourth row. + The value to assign to the fourth element in the fourth row. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values of value1 and value2. + + + Creates a spherical billboard that rotates around a specified object position. + The position of the object that the billboard will rotate around. + The position of the camera. + The up vector of the camera. + The forward vector of the camera. + The created billboard. + + + Creates a cylindrical billboard that rotates around a specified axis. + The position of the object that the billboard will rotate around. + The position of the camera. + The axis to rotate the billboard around. + The forward vector of the camera. + The forward vector of the object. + The billboard matrix. + + + Creates a matrix that rotates around an arbitrary vector. + The axis to rotate around. + The angle to rotate around axis, in radians. + The rotation matrix. + + + Creates a rotation matrix from the specified Quaternion rotation value. + The source Quaternion. + The rotation matrix. + + + Creates a rotation matrix from the specified yaw, pitch, and roll. + The angle of rotation, in radians, around the Y axis. + The angle of rotation, in radians, around the X axis. + The angle of rotation, in radians, around the Z axis. + The rotation matrix. + + + Creates a view matrix. + The position of the camera. + The target towards which the camera is pointing. + The direction that is &quot;up&quot; from the camera&#39;s point of view. + The view matrix. + + + Creates an orthographic perspective matrix from the given view volume dimensions. + The width of the view volume. + The height of the view volume. + The minimum Z-value of the view volume. + The maximum Z-value of the view volume. + The orthographic projection matrix. + + + Creates a customized orthographic projection matrix. + The minimum X-value of the view volume. + The maximum X-value of the view volume. + The minimum Y-value of the view volume. + The maximum Y-value of the view volume. + The minimum Z-value of the view volume. + The maximum Z-value of the view volume. + The orthographic projection matrix. + + + Creates a perspective projection matrix from the given view volume dimensions. + The width of the view volume at the near view plane. + The height of the view volume at the near view plane. + The distance to the near view plane. + The distance to the far view plane. + The perspective projection matrix. + nearPlaneDistance is less than or equal to zero. + -or- + farPlaneDistance is less than or equal to zero. + -or- + nearPlaneDistance is greater than or equal to farPlaneDistance. + + + Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances. + The field of view in the y direction, in radians. + The aspect ratio, defined as view space width divided by height. + The distance to the near view plane. + The distance to the far view plane. + The perspective projection matrix. + fieldOfView is less than or equal to zero. + -or- + fieldOfView is greater than or equal to . + nearPlaneDistance is less than or equal to zero. + -or- + farPlaneDistance is less than or equal to zero. + -or- + nearPlaneDistance is greater than or equal to farPlaneDistance. + + + Creates a customized perspective projection matrix. + The minimum x-value of the view volume at the near view plane. + The maximum x-value of the view volume at the near view plane. + The minimum y-value of the view volume at the near view plane. + The maximum y-value of the view volume at the near view plane. + The distance to the near view plane. + The distance to the far view plane. + The perspective projection matrix. + nearPlaneDistance is less than or equal to zero. + -or- + farPlaneDistance is less than or equal to zero. + -or- + nearPlaneDistance is greater than or equal to farPlaneDistance. + + + Creates a matrix that reflects the coordinate system about a specified plane. + The plane about which to create a reflection. + A new matrix expressing the reflection. + + + Creates a matrix for rotating points around the X axis. + The amount, in radians, by which to rotate around the X axis. + The rotation matrix. + + + Creates a matrix for rotating points around the X axis from a center point. + The amount, in radians, by which to rotate around the X axis. + The center point. + The rotation matrix. + + + The amount, in radians, by which to rotate around the Y axis from a center point. + The amount, in radians, by which to rotate around the Y-axis. + The center point. + The rotation matrix. + + + Creates a matrix for rotating points around the Y axis. + The amount, in radians, by which to rotate around the Y-axis. + The rotation matrix. + + + Creates a matrix for rotating points around the Z axis. + The amount, in radians, by which to rotate around the Z-axis. + The rotation matrix. + + + Creates a matrix for rotating points around the Z axis from a center point. + The amount, in radians, by which to rotate around the Z-axis. + The center point. + The rotation matrix. + + + Creates a scaling matrix from the specified vector scale. + The scale to use. + The scaling matrix. + + + Creates a uniform scaling matrix that scale equally on each axis. + The uniform scaling factor. + The scaling matrix. + + + Creates a scaling matrix with a center point. + The vector that contains the amount to scale on each axis. + The center point. + The scaling matrix. + + + Creates a uniform scaling matrix that scales equally on each axis with a center point. + The uniform scaling factor. + The center point. + The scaling matrix. + + + Creates a scaling matrix from the specified X, Y, and Z components. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The value to scale by on the Z axis. + The scaling matrix. + + + Creates a scaling matrix that is offset by a given center point. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The value to scale by on the Z axis. + The center point. + The scaling matrix. + + + Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source. + The direction from which the light that will cast the shadow is coming. + The plane onto which the new matrix should flatten geometry so as to cast a shadow. + A new matrix that can be used to flatten geometry onto the specified plane from the specified direction. + + + Creates a translation matrix from the specified 3-dimensional vector. + The amount to translate in each axis. + The translation matrix. + + + Creates a translation matrix from the specified X, Y, and Z components. + The amount to translate on the X axis. + The amount to translate on the Y axis. + The amount to translate on the Z axis. + The translation matrix. + + + Creates a world matrix with the specified parameters. + The position of the object. + The forward direction of the object. + The upward direction of the object. Its value is usually [0, 1, 0]. + The world matrix. + + + Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded. + The source matrix. + When this method returns, contains the scaling component of the transformation matrix if the operation succeeded. + When this method returns, contains the rotation component of the transformation matrix if the operation succeeded. + When the method returns, contains the translation component of the transformation matrix if the operation succeeded. + true if matrix was decomposed successfully; otherwise, false. + + + Returns a value that indicates whether this instance and another 4x4 matrix are equal. + The other matrix. + true if the two matrices are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Calculates the determinant of the current 4x4 matrix. + The determinant. + + + Returns the hash code for this instance. + The hash code. + + + Gets the multiplicative identity matrix. + Gets the multiplicative identity matrix. + + + Inverts the specified matrix. The return value indicates whether the operation succeeded. + The matrix to invert. + When this method returns, contains the inverted matrix if the operation succeeded. + true if matrix was converted successfully; otherwise, false. + + + Indicates whether the current matrix is the identity matrix. + true if the current matrix is the identity matrix; otherwise, false. + + + Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix. + The first matrix. + The second matrix. + The relative weighting of matrix2. + The interpolated matrix. + + + The first element of the first row. + + + + The second element of the first row. + + + + The third element of the first row. + + + + The fourth element of the first row. + + + + The first element of the second row. + + + + The second element of the second row. + + + + The third element of the second row. + + + + The fourth element of the second row. + + + + The first element of the third row. + + + + The second element of the third row. + + + + The third element of the third row. + + + + The fourth element of the third row. + + + + The first element of the fourth row. + + + + The second element of the fourth row. + + + + The third element of the fourth row. + + + + The fourth element of the fourth row. + + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values. + + + Returns a value that indicates whether the specified matrices are equal. + The first matrix to compare. + The second matrix to care + true if value1 and value2 are equal; otherwise, false. + + + Returns a value that indicates whether the specified matrices are not equal. + The first matrix to compare. + The second matrix to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Returns a string that represents this matrix. + The string representation of this matrix. + + + Transforms the specified matrix by applying the specified Quaternion rotation. + The matrix to transform. + The rotation t apply. + The transformed matrix. + + + Gets or sets the translation component of this matrix. + The translation component of the current instance. + + + Transposes the rows and columns of a matrix. + The matrix to transpose. + The transposed matrix. + + + Represents a three-dimensional plane. + + + Creates a object from a specified four-dimensional vector. + A vector whose first three elements describe the normal vector, and whose defines the distance along that normal from the origin. + + + Creates a object from a specified normal and the distance along the normal from the origin. + The plane&#39;s normal vector. + The plane&#39;s distance from the origin along its normal vector. + + + Creates a object from the X, Y, and Z components of its normal, and its distance from the origin on that normal. + The X component of the normal. + The Y component of the normal. + The Z component of the normal. + The distance of the plane along its normal from the origin. + + + Creates a object that contains three specified points. + The first point defining the plane. + The second point defining the plane. + The third point defining the plane. + The plane containing the three points. + + + The distance of the plane along its normal from the origin. + + + + Calculates the dot product of a plane and a 4-dimensional vector. + The plane. + The four-dimensional vector. + The dot product. + + + Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance () value of the plane. + The plane. + The 3-dimensional vector. + The dot product. + + + Returns the dot product of a specified three-dimensional vector and the vector of this plane. + The plane. + The three-dimensional vector. + The dot product. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns a value that indicates whether this instance and another plane object are equal. + The other plane. + true if the two planes are equal; otherwise, false. + + + Returns the hash code for this instance. + The hash code. + + + The normal vector of the plane. + + + + Creates a new object whose normal vector is the source plane&#39;s normal vector normalized. + The source plane. + The normalized plane. + + + Returns a value that indicates whether two planes are equal. + The first plane to compare. + The second plane to compare. + true if value1 and value2 are equal; otherwise, false. + + + Returns a value that indicates whether two planes are not equal. + The first plane to compare. + The second plane to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the string representation of this plane object. + A string that represents this object. + + + Transforms a normalized plane by a 4x4 matrix. + The normalized plane to transform. + The transformation matrix to apply to plane. + The transformed plane. + + + Transforms a normalized plane by a Quaternion rotation. + The normalized plane to transform. + The Quaternion rotation to apply to the plane. + A new plane that results from applying the Quaternion rotation. + + + Represents a vector that is used to encode three-dimensional physical rotations. + + + Creates a quaternion from the specified vector and rotation parts. + The vector part of the quaternion. + The rotation part of the quaternion. + + + Constructs a quaternion from the specified components. + The value to assign to the X component of the quaternion. + The value to assign to the Y component of the quaternion. + The value to assign to the Z component of the quaternion. + The value to assign to the W component of the quaternion. + + + Adds each element in one quaternion with its corresponding element in a second quaternion. + The first quaternion. + The second quaternion. + The quaternion that contains the summed values of value1 and value2. + + + Concatenates two quaternions. + The first quaternion rotation in the series. + The second quaternion rotation in the series. + A new quaternion representing the concatenation of the value1 rotation followed by the value2 rotation. + + + Returns the conjugate of a specified quaternion. + The quaternion. + A new quaternion that is the conjugate of value. + + + Creates a quaternion from a vector and an angle to rotate about the vector. + The vector to rotate around. + The angle, in radians, to rotate around the vector. + The newly created quaternion. + + + Creates a quaternion from the specified rotation matrix. + The rotation matrix. + The newly created quaternion. + + + Creates a new quaternion from the given yaw, pitch, and roll. + The yaw angle, in radians, around the Y axis. + The pitch angle, in radians, around the X axis. + The roll angle, in radians, around the Z axis. + The resulting quaternion. + + + Divides one quaternion by a second quaternion. + The dividend. + The divisor. + The quaternion that results from dividing value1 by value2. + + + Calculates the dot product of two quaternions. + The first quaternion. + The second quaternion. + The dot product. + + + Returns a value that indicates whether this instance and another quaternion are equal. + The other quaternion. + true if the two quaternions are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns the hash code for this instance. + The hash code. + + + Gets a quaternion that represents no rotation. + A quaternion whose values are (0, 0, 0, 1). + + + Returns the inverse of a quaternion. + The quaternion. + The inverted quaternion. + + + Gets a value that indicates whether the current instance is the identity quaternion. + true if the current instance is the identity quaternion; otherwise, false. + + + Calculates the length of the quaternion. + The computed length of the quaternion. + + + Calculates the squared length of the quaternion. + The length squared of the quaternion. + + + Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion. + The first quaternion. + The second quaternion. + The relative weight of quaternion2 in the interpolation. + The interpolated quaternion. + + + Returns the quaternion that results from multiplying two quaternions together. + The first quaternion. + The second quaternion. + The product quaternion. + + + Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor. + The source quaternion. + The scalar value. + The scaled quaternion. + + + Reverses the sign of each component of the quaternion. + The quaternion to negate. + The negated quaternion. + + + Divides each component of a specified by its length. + The quaternion to normalize. + The normalized quaternion. + + + Adds each element in one quaternion with its corresponding element in a second quaternion. + The first quaternion. + The second quaternion. + The quaternion that contains the summed values of value1 and value2. + + + Divides one quaternion by a second quaternion. + The dividend. + The divisor. + The quaternion that results from dividing value1 by value2. + + + Returns a value that indicates whether two quaternions are equal. + The first quaternion to compare. + The second quaternion to compare. + true if the two quaternions are equal; otherwise, false. + + + Returns a value that indicates whether two quaternions are not equal. + The first quaternion to compare. + The second quaternion to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor. + The source quaternion. + The scalar value. + The scaled quaternion. + + + Returns the quaternion that results from multiplying two quaternions together. + The first quaternion. + The second quaternion. + The product quaternion. + + + Subtracts each element in a second quaternion from its corresponding element in a first quaternion. + The first quaternion. + The second quaternion. + The quaternion containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Reverses the sign of each component of the quaternion. + The quaternion to negate. + The negated quaternion. + + + Interpolates between two quaternions, using spherical linear interpolation. + The first quaternion. + The second quaternion. + The relative weight of the second quaternion in the interpolation. + The interpolated quaternion. + + + Subtracts each element in a second quaternion from its corresponding element in a first quaternion. + The first quaternion. + The second quaternion. + The quaternion containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Returns a string that represents this quaternion. + The string representation of this quaternion. + + + The rotation component of the quaternion. + + + + The X value of the vector component of the quaternion. + + + + The Y value of the vector component of the quaternion. + + + + The Z value of the vector component of the quaternion. + + + + Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms. + The vector type. T can be any primitive numeric type. + + + Creates a vector whose components are of a specified type. + The numeric type that defines the type of the components in the vector. + + + Creates a vector from a specified array. + A numeric array. + values is null. + + + Creates a vector from a specified array starting at a specified index position. + A numeric array. + The starting index position from which to create the vector. + values is null. + index is less than zero. + -or- + The length of values minus index is less than . + + + Copies the vector instance to a specified destination array. + The array to receive a copy of the vector values. + destination is null. + The number of elements in the current vector is greater than the number of elements available in the destination array. + + + Copies the vector instance to a specified destination array starting at a specified index position. + The array to receive a copy of the vector values. + The starting index in destination at which to begin the copy operation. + destination is null. + The number of elements in the current instance is greater than the number of elements available from startIndex to the end of the destination array. + index is less than zero or greater than the last index in destination. + + + Returns the number of elements stored in the vector. + The number of elements stored in the vector. + Access to the property getter via reflection is not supported. + + + Returns a value that indicates whether this instance is equal to a specified vector. + The vector to compare with this instance. + true if the current instance and other are equal; otherwise, false. + + + Returns a value that indicates whether this instance is equal to a specified object. + The object to compare with this instance. + true if the current instance and obj are equal; otherwise, false. The method returns false if obj is null, or if obj is a vector of a different type than the current instance. + + + Returns the hash code for this instance. + The hash code. + + + Gets the element at a specified index. + The index of the element to return. + The element at index index. + index is less than zero. + -or- + index is greater than or equal to . + + + Returns a vector containing all ones. + A vector containing all ones. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Returns a new vector by performing a bitwise And operation on each of the elements in two vectors. + The first vector. + The second vector. + The vector that results from the bitwise And of left and right. + + + Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors. + The first vector. + The second vector. + The vector that results from the bitwise Or of the elements in left and right. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Returns a value that indicates whether each pair of elements in two specified vectors are equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors. + The first vector. + The second vector. + The vector that results from the bitwise XOr of the elements in left and right. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Returns a value that indicates whether any single pair of elements in the specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if any element pairs in left and right are equal. false if no element pairs are equal. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar value. + The source vector. + A scalar value. + The scaled vector. + + + Multiplies a vector by the given scalar. + The scalar value. + The source vector. + The scaled vector. + + + Returns a new vector whose elements are obtained by taking the one&#39;s complement of a specified vector&#39;s elements. + The source vector. + The one&#39;s complement vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates a given vector. + The vector to negate. + The negated vector. + + + Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Returns the string representation of this vector using default formatting. + The string representation of this vector. + + + Returns the string representation of this vector using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns a vector containing all zeroes. + A vector containing all zeroes. + + + Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors. + + + Returns a new vector whose elements are the absolute values of the given vector&#39;s elements. + The source vector. + The vector type. T can be any primitive numeric type. + The absolute value vector. + + + Returns a new vector whose values are the sum of each pair of elements from two given vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The summed vector. + + + Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned bytes. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a double-precision floating-point vector. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of 16-bit integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of long integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of signed bytes. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a single-precision floating-point vector. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned long integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector. + The integral mask vector used to drive selection. + The first source vector. + The second source vector. + The new vector with elements selected based on the mask. + + + Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector. + The integral mask vector used to drive selection. + The first source vector. + The second source vector. + The new vector with elements selected based on the mask. + + + Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector. + The integral mask vector used to drive selection. + The first source vector. + The second source vector. + The vector type. T can be any primitive numeric type. + The new vector with elements selected based on the mask. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a new vector whose values are the result of dividing the first vector&#39;s elements by the corresponding elements in the second vector. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The divided vector. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The dot product. + + + Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether each pair of elements in the given vectors is equal. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all elements in left and right are equal; otherwise, false. + + + Returns a value that indicates whether any single pair of elements in the given vectors is equal. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element pair in left and right is equal; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all elements in left are greater than the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is greater than the corresponding element in right; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all elements in left are greater than or equal to the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is greater than or equal to the corresponding element in right; otherwise, false. + + + Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support. + true if vector operations are subject to hardware acceleration; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all of the elements in left are less than the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is less than the corresponding element in right; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all of the elements in left are less than or equal to the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is less than or equal to the corresponding element in right; otherwise, false. + + + Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The maximum vector. + + + Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The minimum vector. + + + Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector. + The scalar value. + The vector. + The vector type. T can be any primitive numeric type. + The scaled vector. + + + Returns a new vector whose values are the product of each pair of elements in two specified vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The product vector. + + + Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value. + The vector. + The scalar value. + The vector type. T can be any primitive numeric type. + The scaled vector. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a new vector whose elements are the negation of the corresponding element in the specified vector. + The source vector. + The vector type. T can be any primitive numeric type. + The negated vector. + + + Returns a new vector whose elements are obtained by taking the one&#39;s complement of a specified vector&#39;s elements. + The source vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a new vector whose elements are the square roots of a specified vector&#39;s elements. + The source vector. + The vector type. T can be any primitive numeric type. + The square root vector. + + + Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The difference vector. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Represents a vector with two single-precision floating-point values. + + + Creates a new object whose two elements have the same value. + The value to assign to both elements. + + + Creates a vector whose elements have the specified values. + The value to assign to the field. + The value to assign to the field. + + + Returns a vector whose elements are the absolute values of each of the specified vector&#39;s elements. + A vector. + The absolute value vector. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Restricts a vector between a minimum and a maximum value. + The vector to restrict. + The minimum value. + The maximum value. + The restricted vector. + + + Copies the elements of the vector to a specified array. + The destination array. + array is null. + The number of elements in the current instance is greater than in the array. + array is multidimensional. + + + Copies the elements of the vector to a specified array starting at a specified index position. + The destination array. + The index at which to copy the first element of the vector. + array is null. + The number of elements in the current instance is greater than in the array. + index is less than zero. + -or- + index is greater than or equal to the array length. + array is multidimensional. + + + Computes the Euclidean distance between the two given points. + The first point. + The second point. + The distance. + + + Returns the Euclidean distance squared between two specified points. + The first point. + The second point. + The distance squared. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector resulting from the division. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The vector that results from the division. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The dot product. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns a value that indicates whether this instance and another vector are equal. + The other vector. + true if the two vectors are equal; otherwise, false. + + + Returns the hash code for this instance. + The hash code. + + + Returns the length of the vector. + The vector&#39;s length. + + + Returns the length of the vector squared. + The vector&#39;s length squared. + + + Performs a linear interpolation between two vectors based on the given weighting. + The first vector. + The second vector. + A value between 0 and 1 that indicates the weight of value2. + The interpolated vector. + + + Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The maximized vector. + + + Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The minimized vector. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar. + The vector to multiply. + The scalar value. + The scaled vector. + + + Multiplies a scalar value by a specified vector. + The scaled value. + The vector. + The scaled vector. + + + Negates a specified vector. + The vector to negate. + The negated vector. + + + Returns a vector with the same direction as the specified vector, but with a length of one. + The vector to normalize. + The normalized vector. + + + Gets a vector whose 2 elements are equal to one. + A vector whose two elements are equal to one (that is, it returns the vector (1,1). + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The result of the division. + + + Returns a value that indicates whether each pair of elements in two specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a value that indicates whether two specified vectors are not equal. + The first vector to compare. + The second vector to compare. + true if left and right are not equal; otherwise, false. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiples the specified vector by the specified scalar value. + The vector. + The scalar value. + The scaled vector. + + + Multiples the scalar value by the specified vector. + The vector. + The scalar value. + The scaled vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates the specified vector. + The vector to negate. + The negated vector. + + + Returns the reflection of a vector off a surface that has the specified normal. + The source vector. + The normal of the surface being reflected off. + The reflected vector. + + + Returns a vector whose elements are the square root of each of a specified vector&#39;s elements. + A vector. + The square root vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The difference vector. + + + Returns the string representation of the current instance using default formatting. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Transforms a vector by a specified 3x2 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a vector normal by the given 3x2 matrix. + The source vector. + The matrix. + The transformed vector. + + + Transforms a vector normal by the given 4x4 matrix. + The source vector. + The matrix. + The transformed vector. + + + Gets the vector (1,0). + The vector (1,0). + + + Gets the vector (0,1). + The vector (0,1). + + + The X component of the vector. + + + + The Y component of the vector. + + + + Returns a vector whose 2 elements are equal to zero. + A vector whose two elements are equal to zero (that is, it returns the vector (0,0). + + + Represents a vector with three single-precision floating-point values. + + + Creates a new object whose three elements have the same value. + The value to assign to all three elements. + + + Creates a new object from the specified object and the specified value. + The vector with two elements. + The additional value to assign to the field. + + + Creates a vector whose elements have the specified values. + The value to assign to the field. + The value to assign to the field. + The value to assign to the field. + + + Returns a vector whose elements are the absolute values of each of the specified vector&#39;s elements. + A vector. + The absolute value vector. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Restricts a vector between a minimum and a maximum value. + The vector to restrict. + The minimum value. + The maximum value. + The restricted vector. + + + Copies the elements of the vector to a specified array. + The destination array. + array is null. + The number of elements in the current instance is greater than in the array. + array is multidimensional. + + + Copies the elements of the vector to a specified array starting at a specified index position. + The destination array. + The index at which to copy the first element of the vector. + array is null. + The number of elements in the current instance is greater than in the array. + index is less than zero. + -or- + index is greater than or equal to the array length. + array is multidimensional. + + + Computes the cross product of two vectors. + The first vector. + The second vector. + The cross product. + + + Computes the Euclidean distance between the two given points. + The first point. + The second point. + The distance. + + + Returns the Euclidean distance squared between two specified points. + The first point. + The second point. + The distance squared. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The vector that results from the division. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector resulting from the division. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The dot product. + + + Returns a value that indicates whether this instance and another vector are equal. + The other vector. + true if the two vectors are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns the hash code for this instance. + The hash code. + + + Returns the length of this vector object. + The vector&#39;s length. + + + Returns the length of the vector squared. + The vector&#39;s length squared. + + + Performs a linear interpolation between two vectors based on the given weighting. + The first vector. + The second vector. + A value between 0 and 1 that indicates the weight of value2. + The interpolated vector. + + + Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The maximized vector. + + + Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The minimized vector. + + + Multiplies a scalar value by a specified vector. + The scaled value. + The vector. + The scaled vector. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar. + The vector to multiply. + The scalar value. + The scaled vector. + + + Negates a specified vector. + The vector to negate. + The negated vector. + + + Returns a vector with the same direction as the specified vector, but with a length of one. + The vector to normalize. + The normalized vector. + + + Gets a vector whose 3 elements are equal to one. + A vector whose three elements are equal to one (that is, it returns the vector (1,1,1). + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The result of the division. + + + Returns a value that indicates whether each pair of elements in two specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a value that indicates whether two specified vectors are not equal. + The first vector to compare. + The second vector to compare. + true if left and right are not equal; otherwise, false. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiples the specified vector by the specified scalar value. + The vector. + The scalar value. + The scaled vector. + + + Multiples the scalar value by the specified vector. + The vector. + The scalar value. + The scaled vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates the specified vector. + The vector to negate. + The negated vector. + + + Returns the reflection of a vector off a surface that has the specified normal. + The source vector. + The normal of the surface being reflected off. + The reflected vector. + + + Returns a vector whose elements are the square root of each of a specified vector&#39;s elements. + A vector. + The square root vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The difference vector. + + + Returns the string representation of the current instance using default formatting. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Transforms a vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a vector normal by the given 4x4 matrix. + The source vector. + The matrix. + The transformed vector. + + + Gets the vector (1,0,0). + The vector (1,0,0). + + + Gets the vector (0,1,0). + The vector (0,1,0).. + + + Gets the vector (0,0,1). + The vector (0,0,1). + + + The X component of the vector. + + + + The Y component of the vector. + + + + The Z component of the vector. + + + + Gets a vector whose 3 elements are equal to zero. + A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0). + + + Represents a vector with four single-precision floating-point values. + + + Creates a new object whose four elements have the same value. + The value to assign to all four elements. + + + Constructs a new object from the specified object and a W component. + The vector to use for the X, Y, and Z components. + The W component. + + + Creates a new object from the specified object and a Z and a W component. + The vector to use for the X and Y components. + The Z component. + The W component. + + + Creates a vector whose elements have the specified values. + The value to assign to the field. + The value to assign to the field. + The value to assign to the field. + The value to assign to the field. + + + Returns a vector whose elements are the absolute values of each of the specified vector&#39;s elements. + A vector. + The absolute value vector. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Restricts a vector between a minimum and a maximum value. + The vector to restrict. + The minimum value. + The maximum value. + The restricted vector. + + + Copies the elements of the vector to a specified array. + The destination array. + array is null. + The number of elements in the current instance is greater than in the array. + array is multidimensional. + + + Copies the elements of the vector to a specified array starting at a specified index position. + The destination array. + The index at which to copy the first element of the vector. + array is null. + The number of elements in the current instance is greater than in the array. + index is less than zero. + -or- + index is greater than or equal to the array length. + array is multidimensional. + + + Computes the Euclidean distance between the two given points. + The first point. + The second point. + The distance. + + + Returns the Euclidean distance squared between two specified points. + The first point. + The second point. + The distance squared. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector resulting from the division. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The vector that results from the division. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The dot product. + + + Returns a value that indicates whether this instance and another vector are equal. + The other vector. + true if the two vectors are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns the hash code for this instance. + The hash code. + + + Returns the length of this vector object. + The vector&#39;s length. + + + Returns the length of the vector squared. + The vector&#39;s length squared. + + + Performs a linear interpolation between two vectors based on the given weighting. + The first vector. + The second vector. + A value between 0 and 1 that indicates the weight of value2. + The interpolated vector. + + + Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The maximized vector. + + + Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The minimized vector. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar. + The vector to multiply. + The scalar value. + The scaled vector. + + + Multiplies a scalar value by a specified vector. + The scaled value. + The vector. + The scaled vector. + + + Negates a specified vector. + The vector to negate. + The negated vector. + + + Returns a vector with the same direction as the specified vector, but with a length of one. + The vector to normalize. + The normalized vector. + + + Gets a vector whose 4 elements are equal to one. + Returns . + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The result of the division. + + + Returns a value that indicates whether each pair of elements in two specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a value that indicates whether two specified vectors are not equal. + The first vector to compare. + The second vector to compare. + true if left and right are not equal; otherwise, false. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiples the specified vector by the specified scalar value. + The vector. + The scalar value. + The scaled vector. + + + Multiples the scalar value by the specified vector. + The vector. + The scalar value. + The scaled vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates the specified vector. + The vector to negate. + The negated vector. + + + Returns a vector whose elements are the square root of each of a specified vector&#39;s elements. + A vector. + The square root vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The difference vector. + + + Returns the string representation of the current instance using default formatting. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Transforms a four-dimensional vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a four-dimensional vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a three-dimensional vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a two-dimensional vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a two-dimensional vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a three-dimensional vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Gets the vector (0,0,0,1). + The vector (0,0,0,1). + + + Gets the vector (1,0,0,0). + The vector (1,0,0,0). + + + Gets the vector (0,1,0,0). + The vector (0,1,0,0).. + + + Gets a vector whose 4 elements are equal to zero. + The vector (0,0,1,0). + + + The W component of the vector. + + + + The X component of the vector. + + + + The Y component of the vector. + + + + The Z component of the vector. + + + + Gets a vector whose 4 elements are equal to zero. + A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0). + + + \ No newline at end of file diff --git a/HexcalMC/bin/x64/Debug/System.Runtime.InteropServices.RuntimeInformation.dll b/HexcalMC/bin/x64/Debug/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..360e92a Binary files /dev/null and b/HexcalMC/bin/x64/Debug/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/HexcalMC/bin/x64/Debug/System.ValueTuple.dll b/HexcalMC/bin/x64/Debug/System.ValueTuple.dll new file mode 100644 index 0000000..1cadbf3 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/System.ValueTuple.dll differ diff --git a/HexcalMC/bin/x64/Debug/System.ValueTuple.xml b/HexcalMC/bin/x64/Debug/System.ValueTuple.xml new file mode 100644 index 0000000..6dcce66 --- /dev/null +++ b/HexcalMC/bin/x64/Debug/System.ValueTuple.xml @@ -0,0 +1,1299 @@ + + + + System.ValueTuple + + + + + Indicates that the use of on a member is meant to be treated as a tuple with element names. + + + + + Initializes a new instance of the class. + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which occurrences are + meant to carry element names. + + + This constructor is meant to be used on types that contain an + instantiation of that contains + element names. For instance, if C is a generic type with + two type parameters, then a use of the constructed type C{, might be intended to + treat the first type argument as a tuple with element names and the + second as a tuple without element names. In which case, the + appropriate attribute specification should use a + transformNames value of { "name1", "name2", null, null, + null }. + + + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which elements are + meant to carry element names. + + + + + Provides extension methods for instances to interop with C# tuples features (deconstruction syntax, converting from and to ). + + + + + Deconstruct a properly nested with 1 elements. + + + + + Deconstruct a properly nested with 2 elements. + + + + + Deconstruct a properly nested with 3 elements. + + + + + Deconstruct a properly nested with 4 elements. + + + + + Deconstruct a properly nested with 5 elements. + + + + + Deconstruct a properly nested with 6 elements. + + + + + Deconstruct a properly nested with 7 elements. + + + + + Deconstruct a properly nested with 8 elements. + + + + + Deconstruct a properly nested with 9 elements. + + + + + Deconstruct a properly nested with 10 elements. + + + + + Deconstruct a properly nested with 11 elements. + + + + + Deconstruct a properly nested with 12 elements. + + + + + Deconstruct a properly nested with 13 elements. + + + + + Deconstruct a properly nested with 14 elements. + + + + + Deconstruct a properly nested with 15 elements. + + + + + Deconstruct a properly nested with 16 elements. + + + + + Deconstruct a properly nested with 17 elements. + + + + + Deconstruct a properly nested with 18 elements. + + + + + Deconstruct a properly nested with 19 elements. + + + + + Deconstruct a properly nested with 20 elements. + + + + + Deconstruct a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Helper so we can call some tuple methods recursively without knowing the underlying types. + + + + + The ValueTuple types (from arity 0 to 8) comprise the runtime implementation that underlies tuples in C# and struct tuples in F#. + Aside from created via language syntax, they are most easily created via the ValueTuple.Create factory methods. + The System.ValueTuple types differ from the System.Tuple types in that: + - they are structs rather than classes, + - they are mutable rather than readonly, and + - their members (such as Item1, Item2, etc) are fields rather than properties. + + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if is a . + + + Returns a value indicating whether this instance is equal to a specified value. + An instance to compare to this instance. + true if has the same value as this instance; otherwise, false. + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + Returns the hash code for this instance. + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (). + + + + Creates a new struct 0-tuple. + A 0-tuple. + + + Creates a new struct 1-tuple, or singleton. + The type of the first component of the tuple. + The value of the first component of the tuple. + A 1-tuple (singleton) whose value is (item1). + + + Creates a new struct 2-tuple, or pair. + The type of the first component of the tuple. + The type of the second component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + A 2-tuple (pair) whose value is (item1, item2). + + + Creates a new struct 3-tuple, or triple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + A 3-tuple (triple) whose value is (item1, item2, item3). + + + Creates a new struct 4-tuple, or quadruple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + A 4-tuple (quadruple) whose value is (item1, item2, item3, item4). + + + Creates a new struct 5-tuple, or quintuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + A 5-tuple (quintuple) whose value is (item1, item2, item3, item4, item5). + + + Creates a new struct 6-tuple, or sextuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + A 6-tuple (sextuple) whose value is (item1, item2, item3, item4, item5, item6). + + + Creates a new struct 7-tuple, or septuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + A 7-tuple (septuple) whose value is (item1, item2, item3, item4, item5, item6, item7). + + + Creates a new struct 8-tuple, or octuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The type of the eighth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + The value of the eighth component of the tuple. + An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8). + + + Represents a 1-tuple, or singleton, as a value type. + The type of the tuple's only component. + + + + The current instance's first component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its field + is equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1), + where Item1 represents the value of . If the field is , + it is represented as . + + + + + Represents a 2-tuple, or pair, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + + Returns a value that indicates whether the current instance is equal to a specified object based on a specified comparison method. + + The object to compare with this instance. + An object that defines the method to use to evaluate whether the two objects are equal. + if the current instance is equal to the specified object; otherwise, . + + + This member is an explicit interface member implementation. It can be used only when the + instance is cast to an interface. + + The implementation is called only if other is not , + and if it can be successfully cast (in C#) or converted (in Visual Basic) to a + whose components are of the same types as those of the current instance. The IStructuralEquatable.Equals(Object, IEqualityComparer) method + first passes the values of the objects to be compared to the + implementation. If this method call returns , the method is + called again and passed the values of the two instances. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2), + where Item1 and Item2 represent the values of the + and fields. If either field value is , + it is represented as . + + + + + Represents a 3-tuple, or triple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3). + If any field value is , it is represented as . + + + + + Represents a 4-tuple, or quadruple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4). + If any field value is , it is represented as . + + + + + Represents a 5-tuple, or quintuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5). + If any field value is , it is represented as . + + + + + Represents a 6-tuple, or sixtuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6). + If any field value is , it is represented as . + + + + + Represents a 7-tuple, or sentuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7). + If any field value is , it is represented as . + + + + + Represents an 8-tuple, or octuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + The type of the tuple's eighth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + The current instance's eighth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + The value of the tuple's eight component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7, Rest). + If any field value is , it is represented as . + + + + diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.GridView.dll b/HexcalMC/bin/x64/Debug/Telerik.WinControls.GridView.dll new file mode 100644 index 0000000..10fb444 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/Telerik.WinControls.GridView.dll differ diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.GridView.xml b/HexcalMC/bin/x64/Debug/Telerik.WinControls.GridView.xml new file mode 100644 index 0000000..f432863 --- /dev/null +++ b/HexcalMC/bin/x64/Debug/Telerik.WinControls.GridView.xml @@ -0,0 +1,29351 @@ + + + + Telerik.WinControls.GridView + + + + + The accessible object corresponding to Cell + + + + + Retrieves the number of children belonging to an accessible object + + + + + + Retrieves the object that has the keyboard focus + + + + + + Retrieves the currently selected child + + + + + + Navigates to another accessible object + + The navigation direction + Sibling or parent or child accessble object based on the direction of navigation + + + + Gets a string that describes the visual appearance of the specified object. + + + + + Gets the role of this accessible object + + + + + Gets the location and size of the accessible object + + + + + Gets the parent of an accessible object + + + + + Gets the state of this accessible object + + + + + Internal method to retrieve child index. Returns the index of the child + + + + + Accessibility implementation for GridView object + + + + + Retrieves the number of children belonging to an accessible object + + Count of number of rows plus one for the header row + + + + Retrieves the accessible child corresponding to the specified index + + Index of the row/header + The accessible Row/header object + + + + Internal method used to navigate to another accessible object + + The child + The navigation direction + Sibling or parent or child accessble object based on the direction of navigation + + + + Internal method used to retrieve bounding rectangle of a cell + + The row object + Bounding rectangle of row + + + + Gets the role of this accessible object + + + + + The Accessible object corresponding to row + + + + + Initializes a new instance of the class. + + The owner. + The row. + The parent. + + + + Performs the default action associated with this accessible object + + + + + Retrieves the object that has the keyboard focus + + + + + + Retrieves the currently selected child + + + + + + Modifies the selection or moves the keyboard focus of the accessible object + + + + + + Retrieves the number of children belonging to an accessible object + + + + + + Retrieves the accessible child corresponding to the specified index. + + Index of the child. Index varies from 0 to the ChildCount-1 + The accessible child object + + + + Determines whether the specified is equal + to the current . + + The to compare with the current + . + + true if the specified is equal to the + current ; otherwise, false. + + + + + Serves as a hash function for a particular type. + + A hash code for the current . + + + + Navigates to another accessible object + + The navigation direction + Sibling or parent or child accessble object based on the direction of navigation + + + + Internal method used to retrieved the accessible objects based on navigation + + Current accessible object + Direction of navigation + + + + + Intenral method used to retrieve bounding rectangle of a cell + + The row object that contains the cell + The column object corresponding to hte cell index + The Bounding Rectangle + + + + Gets the control. + + The control. + + + + Gets the role of this accessible object + + + + + Gets the location and size of the row accessible object. + + + + + Gets the parent of the row accessible object + + + + + Internal method to retrieve child index. Returns the index of the child + + + + + Use this flag to prevent throwing error message for every row if there is an invalid column's expression + + + + + Ensures that the cell is visible. + + + + + Brings the cell in edit mode + + + + + Commits the edited cell + + + + + Gets the view template. + + The view template. + + + + Gets the view info where the cell appears + + The view info. + + + + Gets the row associated with this cell + + The row info. + + + + Gets the column info associated with this cell + + The column info. + + + + Gets or sets a value indicating whether this instance is selected. + + + true if this instance is selected; otherwise, false. + + + + + Gets a value indicating whether this instance is current. + + + true if this instance is current; otherwise, false. + + + + + Gets or sets the value. + + The value. + + + + Gets or sets the error text which should appear when the data is not correct + + The error text. + + + + Gets the style of the cell + + The style. + + + + Gets a value indicating whether this instance has style. + + true if this instance has style; otherwise, false. + + + + Gets or sets a value indicating whether [read only]. + + true if [read only]; otherwise, false. + + + + Tag object that can be used to store user data, corresponding to the cell. + + + + + A collection of GridViewCellInfo objects + + + + + Initializes a new instance of the GridViewCellInfoCollection class. + + The associated GridViewRowInfo, owner of this collection + + + + Copies all the elements of the current collection to the specified collection. + + The collection that is the destination of the elements copied from the current collection. + An integer that represents the index in collection at which copying begins. + + + + Returns an enumerator that iterates through the collection + + + + + + Gets the column with the specified index. + + Index of the column to get + Instance of GridViewCellInfo if found or null + + + + Gets the first cell with UniqueName found. + + Unique name of the column to get + Instance of GridViewCellInfo if found or null + + + + Gets the number of elements actually contained in the collection + + + + + Gets a value indicating whether access to the collection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the ArrayList. + + + + + Represents enumerator class for GridViewCellInfoCollection + + + + + Initializes a new instance of the GridViewCellInfoCollectionEnumerator class. + + The associated GridViewCellInfoCollection, owner of this enumerator + + + + Advances the enumerator to the next element of the collection. + + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Gets the current element in the collection. + + + + + Reset cell's style to its initial state. + + + + + Represent a hyperlink cell info class. + + + + + Initializes a new instance of the class. + + The row. + The column. + The owner. + + + + Gets or sets a value indicating whether this link is visited. + + + true if this instance is visited; otherwise, false. + + + + + A collection containing objects that represent the selected cells in RadGridView. + + + + + Initializes a new instance of the . + + An instance of . + + + + Initializes a new instance of the . + + + + + Defines values for specifying how the width of a column is adjusted. + + + + + The column width does not automatically adjust. + + + + + The column width adjusts to fit the contents of the displayed data cells. + + + + + The column width adjusts to fit the contents of the header cell. + + + + + The column width adjusts to fit the contents of the filter cell. + + + + + The column width adjusts to fit the contents of the summary row cell. + + + + + The column width adjusts to fit the contents of the system cells. + + + + + The column width adjusts to fit the contents of the displayed cells. + + + + + The column width adjusts to fit the contents of all cells (displayed and non-displayed) + + + + + Defines columns auto size mode. + + + + + The column widths do not automatically adjust. + + + + + The column widths adjust so that the widths of all columns exactly fill the display area of the control + + + + + Column which uses browse editor. + + + + + GridViewDataColumn inherits and is base for all data-bound columns. + + + + + Abstract class, representing the base for all types of columns in + A special inheritor is the which is base for all data-bound columns. + + Implements and interfaces + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + Initializes the column. + + + This method is called when the column is associated with GridViewTemplate. + + + + + Adjusts the column width to fit the contents of all cells in the column, including the header cell. + + + + + Sorts the specified sort order. + + The sort order. + if set to true [multi sort mode]. + + + + Retrieves the default group-by expression string for the column. + + The string value representing a group-by expression with default settings. + + + + Determines whether this column may be dragged onto the GroupBy panel. + + + + + + + Determines whether this column may be dragged onto the GroupBy panel. + + + + + + Returns a string representation of the column. + + The string representation for the column. + + + + Returns the type of cell element to be created for the specified row. + + The specified row. + The type of the cell to be created. + + + + Gets a value indicating default minimum width for the inherited column type. If not overridden in inheritor class it defaults to 5. + + + + + + Returns an editor instance of the default type for the editor provider. + + An object that implements interface. + + + + Gets the default editor type for the editor provider. + + The default type. + + + + Initializes a specified editor. + + An object that implements interface. + + + + Gets or set the ColumnInfo Header image. + + + + + Gets or sets the image layout of the image inside the cells. + + + + + Gets or sets a value indicating the TextImageRelation: ImageAboveText, + ImageBeforeText, Overlay, TextAboveImage, and TextBeforeImage. + + + + + Gets a value indicating whether the column can be resized. + + + + + Gets or sets the width of the column. + + + + + Gets or sets the minimum width, in pixels, of the column. + + + + + Gets or sets the maximal width, in pixels, of the column. + + + + + Gets or sets the vertical span of the cells in that column (the height) in pixels. + Relevant only in . + + + + + Gets or sets a value indicating whether to stretch the column height vertically. Used with . + + + + + Gets or sets the mode by which the column automatically adjusts its width after BestFit is executed. + + + + + Gets or sets the object that contains data about the column. + + + + + Gets or sets the name data source property or database column to which the is bound. + + + + + Gets or sets a string value representing the column's unique name in the Columns collection of the . + + + + + Gets or sets a value indicating the sort order of data in the column. + + + + + Gets or sets the expression used to calculate the values of this column. + + + + + Gets or sets the value indicating if expression editor menu item will be available to the user. + + + + + Gets list of instances that define the currently applied conditional formatting of the data in the column. + + + + + Gets a value indicating the position of the column in the Columns collection of the . + + + + + Gets the instance of which the column belongs to. + + + + + Gets a value indicating whether the column is bound to the data field referred by . + + + + + Gets value indicating whether the current column is automatically created when the RadGridView is being bound to a data source. + + + + + Gets a boolean value indicating whether a sort order of data in the column is currently applied. + + When multi-column sorting is applied, the column might be partially sorted. + + + + Gets a value indicating whether the data in the is grouped based on the content of this column. + + + + + + Gets or sets a value indicating whether the column will be visible in . + + + Use this property if you want to hide columns from the user. + + + + + Gets or sets a value indicating whether the column is visible. + + + + + Gets value indicating whether the column contains the currently selected cell in the . + + + + + Gets or sets value indicating whether the current column is pinned and cannot be moved from its location when a user scrolls horizontally. + + + + + Gets or sets the pin position for the row. When the column is pinned, it cannot be moved from its location when a user scrolls horizontally. + + + + + Gets or sets a value indicating whether the user can reorder this column using the mouse. + + + + + Gets or sets a value indicating whether the user can sort the data in the based on the contents of this column. + + + + + Gets or sets a value indicating whether the user can group data based on the content of this column. + + + + + + + Gets or sets a value indicating whether the user can edit the data in the column's cells. + + + + + Gets or sets value indicating whether the user can resize the column. + + + + + Gets or sets value indicating whether the user can hide the column. + + + + + Gets or sets the caption text on the column's header cell. + + + + + Disable or Enable HTML-like text rendering in the column. + + + + + Gets or sets value indicating whether the text in each cell in the column should be wrapped. + + + + + Gets or sets a value indicating the position of the within the header cell. + + + + + Gets or sets a value indicating the position of the cell content within a column's cells. + + + + + Gets value indicating whether a column can be current. + + + By default it is true, i.e. each inheriting column can be current by default. + To change the default value, override it in your inherited class. + + + + + Allows previewing of an event that is about to be dispatched. + + + + + + + Core entry point for receiving and processing an event. + + + + + + + Allows additional processing of an event that has been just dispatched. + + + + + + + Allows a listener to examine events queue and optionally to remove/add events. + + + True if the listener has actually modified the queue, false otherwise. + + + + Gets the event type(s) this listener needs to process. + + + + + Gets the priority of the current instance. + + + + + Gets the event process mode for this instance. + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + Returns a string representation of the column. + + The string representation for the column. + + + + Gets or sets a value indicating whether the user can filter by this column. + + + + + Gets or sets a value indicating whether the user can search by this column. + + + + + Gets or sets a value indicating whether clicking on the header cell of this column would allow the user to set natural (no) sort. + + + + + Gets or sets a value indicating whether the data type converter of this column should be used when sorting. + + + + + Gets or sets the filter descriptor. + + The filter descriptor. + + + + Gets or sets the data type of the column. + + + + + Gets or sets the type of the excel export. + + The type of the excel export. + + + + Gets or sets the excel export format string. Note that this format is considered only if property is set to . + + The excel export format string. + + + + Gets or sets the culture info used when formatting cell values. + + + + + Gets or sets the format string applied to the textual content of each cell in the column. + + + + + Gets or sets the cell display value corresponding to a cell value of System.DBNull or null + + + + + Gets or sets a value to the data source when the user enters a null value into a cell + + + + + Gets whether the distinct values collection contains null or DbNull.Value. It should be used only after calling the + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Column which uses browse editor. + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Gets or sets the type of the excel export. + + The type of the excel export. + + + + Inherits and presents Boolean values + + + + + + Initializes a new instance of the . + + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + Gets the default MinWidth of GridViewCheckBoxColumn (defaults to 20) + + + + + + + + + + + + + + Gets or sets a value indicating the alignment of the check box. + + + + Gets or sets a value indicating the position of the CheckBoxElement along with the text. + + + + + Gets or sets a value indicating whether to use a three state checkbox. + + + + + Gets or sets a value indicating whether to show embedded CheckBox in header cell. + + + + + Gets a value indicating whether the CheckBox in header cell checked. + + + + + This property determines whether the CheckBox in the header cell will be synced with the data cells. + + + + + This property determines whether changing a value of a check box will immediately be send to the cell (OnValueChange) or when the current cell is changed or the grid is being validated (OnCellChangeOrValidating) + + + + + Column for displaying and editing colors. + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + A collection of GridViewColumn objects + + + + + Adds the column with specified name. + + The name. + + + + Adds the column with specified name and header text. + + The name. + The header text. + + + + + Adds the column with specified name, header text and field name. + + The name. + The header text. + Name of the field. + + + + + Removes the specified column name. + + Name of the column. + + + + Determines whether a with the specified name exists in the collection. + + The object to locate. + true if item is found otherwise, false. + + + + Indexes the of. + + Name of the column. + + + + + Gets the name of the column by field. + + Name of the field. + + + + + Gets the column by header text. + + The header text. + + + + + Adds the range. + + The grid view columns. + + + + Gets the owner. + + The owner. + + + + Gets the with the specified column name. + + + + + + Represents column whose cells contains comboboxes bound to data source + + + + + Specifies methods used in bindable columns. + + + + + Gets or sets the DataSource for the column. + + + + + Gets or sets the value member. + + + + + Gets or sets the display member. + + + + + Initializes a new instance of the . + + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Returns the lookup value for the specified cell value + + The cell value + The lookup value corresponding to the specified cell value + + + + Gets a value that indicates the SelectedIndex will be synchronized with text in Editable area + + + + + Gets or sets a value indicating whether [display member sort]. + + true if [display member sort]; otherwise, false. + + + + Gets or sets the data source that populates the items for the . + + + + + Gets or sets a string that specifies the property or database column from which to get values that correspond to the items in the . + + + + + Gets or sets a string that specifies the property or database column from which to retrieve strings for display in the items. + + + + + Specifies the mode for the automatic completion feature used in the . + + + + + Gets or sets a value specifying the style of the . + + + + + Gets or sets a value specifying the style of the . + + + + + Gets a value indicating whether this column has lookup value. + + + + + Inherits and contains buttons, one per row. + + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + Grouping by this type of column cannot be performed. That method returns string.empty + + string.Empty + + + + + This property is overriden to always return false since grouping by this column is not allowed. + + + + + + Gets or sets a value indicating whether the user can filter by this column. + + + + + Gets or sets a value indicating whether the user can search by this column. + + + + + This property is overriden to always return true since Command column cannot be edited. + + + + + + Gets or sets the default text displayed on the button cell. + + + + + + Gets or sets a value indicating whether the default text or the value as text will appear on the button displayed by the cell. + + + + + + Gets or sets the default text displayed on the button cell. + + + + + + Gets or sets the image layout of the image inside the cells. + + + + + Inherits and presents DateTime objects and defines the corresponding editor (Calendar) + + + + + Initializes a new instance of the . + + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Gets or sets the format of the date and time displayed in the control. + + + + + Gets or sets the custom date/time format string. + + + + + Gets or sets the type of the excel export. + + The type of the excel export. + + + + Determines the type of editor to be used for editing cell in a of a + + + + + A with a drop down calendar. + + + + + A with a drop down clock. + + + + + A with an up and down arrows. + + + + + Inherits and presents decimal values + + + + + + Initializes a new instance of the . + + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + Initializes a new instance of the . + + The numeric type of the column. + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Gets or sets a value indicating the position of the cell content within a column's cells. + + + + + Gets or sets the number of decimal places to display in the . + + + + + Gets or sets the amount to increment or decrement from the current value of the . + + + + + Gets or sets a value indicating the maximum value for the . + + + + + Gets or sets a value indicating the minimum value for the . + + + + + Gets or sets a value indicating whether the thousands separator will be displayed in the . + + + + + Gets or sets the whether GridSpinEditor will be used as a numeric textbox. + + + + + Gets or sets the type of the excel export. + + The type of the excel export. + + + + Inherits and presents group of columns + + + + + Initializes the class. + + + + + Initializes a new instance of the . + + The , owner of this column + + + + Gets the corresponding + + + + + Gets the corresponding + + + + + Column which cells contain hyperlinks. + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Defines the action for opening of a link. + + + + + Defines the active link area. + + + + + Actions for opening of a link. + + + + + Active link area. + + + + + The column presents Image objects + + + + + Initializes a new instance of the . + + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + Grouping by this type of column cannot be performed. That method returns string.empty + + string.Empty + + + + + This property is overriden to always return false since grouping by this column is not allowed. + + + + + + This property is overriden to always return true since this column cannot be edited. + + + + + + Gets or sets a value that specifies the position of the image in the cell. + + + + + Inherits and presents indentation between levels in grouping + + + + + Initializes the + + the GridViewTemplate containing this column. + the level that this column is used to indent. + + + + Gets the indent level for this column. + + + + + Represents column whose cells contain masked text boxes + + + + + Initializes a new instance of the . + + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Gets or sets the mask type for the . + + + + + Gets or sets the mask type for the . + + + + Gets or sets a value that determines whether literals and prompt characters + are included in the formatted string. + One of the values. The + default is . + Property + set with a value that is not + valid. + + + + Gets or sets the mask for the . + + + + + Gets or sets the type of the excel export. + + The type of the excel export. + + + + Gets or set a value indicating whether end users can set the value to NULL. + This can be achieved by pressing Ctrl + Del or Ctrl + 0 key combinations. + + + + + Represents column whose cells contain multi column combo boxes. + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + A string value referring to the unique name of the column. + + + + Initializes a new instance of the class. + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + Gets the type of the cell. + + The row. + + + + + Gets the default editor type for the editor provider. + + The default type. + + + + Gets or sets a value indicating the maximum value for the Rating. + + + The maximum. + + + + + Gets or sets a value indicating the minimum value for the Rating. + + + The minimum. + + + + + Gets or sets a value indicating whether [should paint hover]. + + + true if [should paint hover]; otherwise, false. + + + + + Gets or sets the selection mode of the rating control (full item, half item, precise selection). + + + The selection mode. + + + + + Gets or sets a value indicating whether the user can edit the data in the column's cells. + + + + + Gets or sets the direction of rating element paint (Standard, Reversed). + + + The direction. + + + + + Gets or sets the tool tip precision. This property is used to determine when the tooltip should reflect the value change. The default value is 0.1, so changes with lesser value will not be affected. + + + The tool tip precision. + + + + + Gets or sets the percentage rounding. In precise mode, the rounding determines when the value will round to the minimum/maximum. + + + The percentage rounding. + + + + + Gets or sets the tool tip format string. + + + The tool tip format string. + + + + + This is the left-most column in the grid. Used to mark whether a row is current/in edit mode/etc. + + + + + Initializes the + + the GridViewTemplate containing this column. + + + + Inherits and presents String values + + + + + + Initializes a new instance of the . + + + + + + Initializes a new instance of the . + + A string value referring to the field name of the column. + + + + + Initializes a new instance of the . + + A string value referring to the unique name of the column. + A string value referring to the field name to which the column is bound. + + + + + + + + + + + + + Gets or sets the maximum length of the text that can be entered. + + + + + Gets or sets a value indicating whether the text in the column cells can span more than one line. + + + + + Gets or sets a value indicating the character casing of the editor. + + + + + Gets or sets whether the editor accepts the tab key in multiline mode + + + + + Gets or sets whether the editor accepts the ENTER key in multiline mode + + + + + Gets or sets the type of the excel export. + + The type of the excel export. + + + + Defines the position of pinned columns + + + + + This class is responsible for conversion of data between and its data source + + + + + Initializes the class. + + + + + Initializes a new instance of the GridViewDataConverter class. + + + + + Gets the value of the cell as formatted for display. + + The value to be formatted. + An instance of . + The that value should be converted for. + Returns the formatted value + + + + Gets the value of the cell as formatted for display. + + The value to be formatted. + The that value should be converted for. + If the value is null, the should be considered as result. + An instance of . + Returns the formatted value + + + + Formats a value for display to an actual cell value. + + The value to be formatted. + The that value should be converted for. + An instance of . + The object instance that will hold the result.. + The generated exception if Parse has failed for some reason, null otherwise. + + + + Converts a value formatted for display to an actual cell value. + + The value to be converted. + An instance of . + Returns the converted value + + + + Converts a value formatted for display to an actual cell value. + + The value to be converted. + An instance of . + The object instance that will hold the result.. + The generated exception if Parse has failed for some reason, null otherwise. + + + + Represents a DateTime converter. + + + + + Initializes a new instance of the class. + + The owner column. + + + + Gets a value indicating whether this converter can convert an object + in the given source type to a using the specified + context. + + An + that provides a format context. + A that represents the type + you wish to convert from. + + true if this object can perform the conversion; otherwise, false. + + + + + Converts the given object to the type of this converter, using the specified + context and culture information. + + An + that provides a format context. + The to + use as the current culture. + The to convert. + The conversion cannot be performed. + + + An that represents the converted value. + + + + + Gets a value indicating whether this converter can convert an object + to the given destination type using the context. + + An + that provides a format context. + A that represents the + type you wish to convert to. + + true if this converter can perform the conversion; otherwise, false. + + + + + Converts the given value object to a + using the arguments. + + An + that provides a format context. + An optional . + If not supplied, the current culture is assumed. + The to convert. + The to convert the + value to. + The conversion cannot be performed. + + + An that represents the converted . + + + + + Cutting and copying to the Clipboard is disabled. + + + + + The text values of selected cells can be cut and copied to the Clipboard. Header text is not included. + + + + + The text values of selected cells can be cut and copied to the Clipboard. Header text is included for rows and columns that contain selected cells. + + + + + Copying to the Clipboard is disabled. + + + + + The text values of selected cells can be copied to the Clipboard. Header text is not included. + + + + + The text values of selected cells can be copied to the Clipboard. Header text is included for rows and columns that contain selected cells. + + + + + Pasting to the RadGridView is disabled. + + + + + Pasting to the RadGridView is enabled. + + + + + Pasting to the RadGridView is enabled. The RadGridView Cell events will be raised during pasting operation. + + + + + Represents the method that will handle the ChildViewExpanded event of a RadGridView. + + + + + Provides data for the ChildViewExpanded event + + + + + Initializes a new instance of the ChildViewExpandedEventArgs class. + + The that was expanded/collapsed. + + + + Gets the GridViewRowInfo that was expanded. + + + + + Gets the GridViewDetailsRowInfo associated with the currently expanded/collapsed row. + + + + + Gets the child GridViewInfo for the currenlty expanded/collapsed row. + + + + + Gets the expanded state for the row. + + + + + Represents the method that will handle the ChildViewExpanding event of a RadGridView. + + + + + Provides data for the ChildViewExpanding event + + + + + Initializes a new instance of the ChildViewExpandingEventArgs class. + + + + + Gets the GridViewRowInfo" that is expanding/collapsing. + + + + + Gets the expanded/collapsed state for the row. + + + + + Represents the method that will handle the ColumnIndexChanged events of a RadGridView. + + + + + Provides data for the ColumnIndexChanged event + + + + + Initializes a new instance of the ColumnIndexChangedEventArgs class. + + The old column index. + The new column index. + + + + Gets the old column index. + + + + + Gets the new column index. + + + + + Represents the method that will handle ColumnIndexChanging events of RadGridView. + + + + + Provides data for the ColumnIndexChanging event + + + + + Initializes a new instance of the ColumnIndexChangingEventArgs class. + + + + + Initializes a new instance of the ColumnIndexChangingEventArgs class. + + + + + Gets the old column index. + + + + + Gets the new column index. + + + + + Represents the method that will handle the CurrentColumnChanged events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CurrentColumnChangedEventArgs containing the data related with this event + + + + Provides data for the CurrentColumnChanged event + + + + + Gets the current column. + + + + + Gets the new column. + + + + + Initializes a new instance of the CurrentColumnChangedEventArgs class. + + The current column. + The new column. + + + + Represents the method that will handle the CurrentColumnChanging events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CurrentColumnChangingEventArgs containing the data related with this event + + + + Provides data for the CurrentColumnChanging event + + + + + Gets the current column. + + + + + Gets the new column. + + + + + Initializes a new instance of the CurrentColumnChangingEventArgs class. + + The current column. + The new column. + + + + Represents the method that will handle the CurrentRowChanged events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CurrentRowChangedEventArgs containing the data related with this event + + + + Provides data for the CurrentRowChanged event + + + + + Gets the old row. + + + + + Gets the new row. + + + + + Initializes a new instance of the CurrentRowChangedEventArgs class. + + The old row. + The new row. + + + + Represents the method that will handle the CurrentRowChanging events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CurrentRowChangingEventArgs containing the data related with this event + + + + Provides data for the CurrentRowChanging event + + + + + Gets the current row. + + + + + Gets the new row. + + + + + Initializes a new instance of the CurrentRowChanging class. + + The current row. + The new row. + + + + Represents the method that will handle the CustomFiltering event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCustomFilteringEventArgs containing the row related with this event + + + + Provides data for the CustomFiltering event + + + + + Initializes a new instance of the GridViewCustomFilteringEventArgs class. + + The that is being filtered. + The that is filtered. + + + + Initializes a new instance of the GridViewCustomFilteringEventArgs class. + + The that is being filtered. + The that is filtered. + + + + + Gets the row info that is being filtered. + + The row info that is being filtered. + + + + Gets the that is being filtered. + + + + + Gets or sets the visible state for the specified row. + + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Represents the method that will handle the CustomGrouping event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCustomGroupingEventArgs containing the row related with this event + + + + Initializes a new instance of the class. + + The template. + The row. + The level. + + + + Initializes a new instance of the class. + + The template. + The row. + The level. + The group key. + + + + Gets the template. + + The template. + + + + Gets the row. + + The row. + + + + Gets the level. + + The level. + + + + Gets or sets the group key used for custom groupin operation. + + The group key. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Represents the method that will handle the CustomSorting event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCustomSortingEventArgs containing the row related with this event + + + + Initializes a new instance of the class. + + The grid view template. + The row info1. + The row info2. + + + + Initializes a new instance of the class. + + The template. + The row1. + The row2. + The sort result. + + + + Gets the first row to compare + + + + + Gets the second row to compare + + + + + Gets the template. + + The template. + + + + Gets or sets the sorting result. + + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + + + Provides data for the ViewChanged event. + + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Gets the name of the property that chanhged. + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + + Provides data for the ViewChanged event. + + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Provides data for row-related RadGridView events. + + + + + Initializes a new instance of the GridViewRowEventArgs class. + + The GridViewRowInfo that the event occurred for. + + + + Initializes a new instance of the GridViewRowEventArgs class. + + The GridViewRowInfo that the event occurred for. + + + + Gets the GridViewRowInfo associated with the event. + + + + + Represent empty event dispatcher + + + + + Suspends the notifications. + + + + + Resumes the notifications. + + + + + Suspends the event. + + The key. + + + + Resumes the event. + + The key. + + + + Raises the event. + + + The event key. + The sender. + The args. + + + + Adds the listener. + + + The event key. + The event raising method. + + + + Removes the listener. + + + The event key. + The event raising method. + + + + Removes all listeners for specified key + + + + + + Clears all listeners + + + + Represents the method that will handle the event of a . + 2 + + + Provides data for the event. + 2 + + + Initializes a new instance of the class. + One of the values. + + + Gets a value specifying how the list changed. + One of the values. + 1 + + + + Represents the method that will handle unbound related events of a RadGridView. + + The event sender, typically this is RadGridView + Instance of GridViewEventArgs containing the row related with this event + + + Provides data for events related to cell and row operations. + 2 + + + Initializes a new instance of the class. + The index of the column containing the cell that the event occurs for. + The index of the row containing the cell that the event occurs for. + columnIndex is less than -1.-or-rowIndex is less than -1. + + + Gets a value indicating the column index of the cell that the event occurs for. + The index of the column containing the cell that the event occurs for. + 1 + + + Gets a value indicating the row index of the cell that the event occurs for. + The index of the row containing the cell that the event occurs for. + 1 + + + + Gets the cell value. + + + + + Gets the cell row. + + + + + Gets the cell column. + + + + + Represents the method that will handle the GridViewCollectionChanging events of a RadGridView. + + The event sender + Instance of GridViewCollectionChangedEventArgs containing the data related with this event + + + + Provides data for the GridViewCollectionChanged event + + + + + Initializes a new instance of the GridViewCollectionChangedEventArgs class. + + + + + Initializes a new instance of the GridViewCollectionChangedEventArgs class. + + + + + Initializes a new instance of the GridViewCollectionChangedEventArgs class. + + + + + Gets the GridViewTemplate where the event was fired. + + + + + Provides data for the GridViewCollectionChanging event + + + + + Initializes a new instance of the GridViewCollectionChangingEventArgs class. + + The + The + The changed item + The index + The old index + + + + Initializes a new instance of the GridViewCollectionChangingEventArgs class. + + The + The + The new item + The old item + The new index + The property changing arguments + + + + Initializes a new instance of the GridViewCollectionChangingEventArgs class. + + The + The + The new items list + The old items list + The new items starting index + The old items starting index + The property changing arguments + + + + Gets the + + + + + Fires when an instance of inheritor is needed. + + An instance of . + An instance of + + + /// + Provide data information about CreateDataItem event + + + + + Initializes a new instance of the class. + + The instance of . + The instance of . + + + + Gets or sets the row info. + + The row info. + + + + Gets the view info. + + The view info. + + + Represents the state of a data-bound control when a data error occurred. + + + A data error occurred when copying content to the Clipboard. This value indicates that the cell value could not be converted to a string. + + + A data error occurred when committing changes to the data store. This value indicates that data entered in a cell could not be committed to the underlying data store. + + + A data error occurred when the selection cursor moved to another cell. This value indicates that a user selected a cell when the previously selected cell had an error condition. + + + A data error occurred when displaying a cell that was populated by a data source. This value indicates that the value from the data source cannot be displayed by the cell, or a mapping that translates the value from the data source to the cell is missing. + + + A data error occurred when trying to format data that is either being sent to a data store, or being loaded from a data store. This value indicates that a change to a cell failed to format correctly. Either the new cell value needs to be corrected or the cell's formatting needs to change. + + + A data error occurred when restoring a cell to its previous value. This value indicates that a cell tried to cancel an edit and the rollback to the initial value failed. This can occur if the cell formatting changed so that it is incompatible with the initial value. + + + A data error occurred when the lost focus. This value indicates that the could not commit user changes after losing focus. + + + A data error occurred when parsing new data. This value indicates that the could not parse new data that was entered by the user or loaded from the underlying data store. + + + A data error occurred when calculating the preferred size of a cell. This value indicates that the failed to calculate the preferred width or height of a cell when programmatically resizing a column or row. This can occur if the cell failed to format its value. + + + A data error occurred when deleting a row. This value indicates that the underlying data store threw an exception when a data-bound deleted a row. + + + A data error occurred when scrolling a new region into view. This value indicates that a cell with data errors scrolled into view programmatically or with the scroll bar. + + + + Represents the method that will handle the DataError event of a RadGridView. + + + + + Provides data for the DataError event. + + + + + Initializes a new instance of the RadGridViewDataErrorEventArgs. + + + + Gets the column index of the cell that the event occurs for. + The column index of the that the event occurs for. + 1 + + + Gets the row index of the cell that the event occurs for. + The row index of the that the event occurs for. + 1 + + + + Gets details about the state of the RadGridView when the error occurred. + + + + + Gets the exception that represents the error. + + + + + Gets or sets a value indicating whether to throw the exception after the RadGridViewDataErrorEventHandler delegate is finished with it. + + + + + Represents the method that will handle DataGroup related events of a RadGridView. + + + + + Provides data for DataGroup events related to grouping operations. + + + + + Gets the gorup count. + + + + + Gets the expression. + + + + + Gets the header text. + + + + + Initializes a new instance of the class. + + The related with the cell. + The related with the cell. + + + + Compares the current instance of to the one passed as parameter + + The object to compare to the current instance. + + + + + Gets the related with the cell. + + + + + Gets the related with the cell. + + + + Gets a value indicating the column index of the cell that the event occurs for. + The index of the column containing the cell that the event occurs for. + 1 + + + Gets a value indicating the row index of the cell that the event occurs for. + The index of the row containing the cell that the event occurs for. + 1 + + + + Represents the method that will handle row-related events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewEventArgs containing the row related with this event + + + + Provides data for row-related RadGridView events. + + + + + Initializes a new instance of the GridViewRowEventArgs class. + + The GridViewRowInfo that the event occurred for. + + + + Gets the GridViewRowInfo associated with the event. + + + + + Represents the method that will handle row-related events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewEventArgs containing the row related with this event + + + + Represents the method that will handle the GroupSummaryEvaluate events of a RadGridView. + + + + + Provides data for the GroupSummaryEvaluate event + + + + + Initializes a new instance of the GridViewRowEventArgs class. + + + + + Gets or sets the format string + + + + + Gets the DataGroup. + + + + + Gets or sets the group summary value + + + + + Gets the GridViewSummaryItem. + + + + + Gets the parent row. + + + + + Gets the event sender. + + + + + Represents the method that will handle the PositionChanged event. + + + + + + + Provides data for the PositionChanged event. + + + + + Initializes a new instance of the PositionChangingEventArgs class. + + The new row. + The new column. + + + + Gets the row that should be the new current row. + + + + + Gets the columnm that should be the new current column. + + + + + Represents the method that will handle the PositionChanging event. + + + + + + + Provides data for the PositionChanging event. + + + + + Initializes a new instance of the PositionChangingEventArgs class. + + The new row. + The new column. + + + + Gets the row that should be the new current row. + + + + + Gets the columnm that should be the new current column. + + + + + Represents the method that will handle events in GridViewRowInfoEnumerator. + + + + + + + Provides data for all events used uin GridViewRowInfoEnumerator. + + + + + Initializes a new instance of the RowEnumeratorEventArgs class. + + The row that is currently processed. + + + + Gets the row that is currently processed + + + + + Gets or sets a value indicating whether to process the row or not + + + + + Represents the method that will handle the RowSourceNeededEventArgs events of a RadGridView. + + + + + Provides data for the parent row in RadGridView Hierarchy Mode + + + + + Represents the method that will handle RowValidated event of RadGridView. + + + + + Event arguments for RowValidated event. + + + + + Initializes a new instance of the RowValidatedEventArgs class. + + The that is validated. + + + + Gets the that is validated. + + + + + The rowindex for the row. + + + + + Represents the method that will handle the RowValidating event of a RadGridView. + + + + + Provides data for the RowValidating event + + + + + Initializes a new instance of the RowValidatingEventArgs class. + + The that is validating. + + + + Gets the that is validating. + + + + + The rowindex for the row. + + + + + Initializes a new instance of the class. + + The criteria. + The cell. + The cells. + The search finished. + + + + Gets the search criteria that is currently being used for the search operation. + + + + + Gets a cell info representing a new search result. + + + + + Gets a list of cell infos representing a new search result. + + + + + Gets a value indicating that the search operation is completed. + + + + + One or more items were added to the view. + + + + + One or more items were removed from the view. + + + + + One or more items were replaced in the view. + + + + + One or more items were moved within the view. + + + + + The content of the view changed dramatically. + + + + + An item in the view has changed. + + + + + filer in the view has changed. + + + + + sorting in the view has changed. + + + + + groping in the view has changed. + + + + + paging in the view has changed. + + + + + meta data like data item fields in the view has changed. + + + + + meta data like data item fields in the view has changed. + + + + + meta data like data item fields in the view has changed. + + + + + column property has changed. + + + + + row property has changed. + + + + + template property has changed. + + + + + Current view has changed. + + + + + Cell data is changed. + + + + + EnsureRowVisible called + + + + + EnsureCellVisible called + + + + + BestFitColumn called + + + + + Row is invalidated + + + + + Conditional formatting has changed + + + + + BeginEdit called + + + + + CurrentColumn changed + + + + + ExpandedChanged + + + + + ColumnGroupPropertyChanged + + + + + CurrentCellChanged + + + + + EndEdit called + + + + + ItemChanging called + + + + + FilterExpressionChanged called + + + + + Represents a filter expression. + + + + + Creates an instance of the FilterExpression class. + + + + + Creates an instance of the FilterExpression class. + + The field name in the context of which the filter string is generated. + + + + Creates an instance of the FilterExpression class with a new FilterPredicate. + + The binary operation that is used by the new FilterExpression. + The GridKnownFunction that is used to create the FilterPredicate object. + The values that are used to create the FilterPredicate object. + + + + Creates an instance of the FilterExpression class with a new FilterPredicate. + + The field name in the context of which the filter string is generated. + The binary operation that is used by the new FilterExpression. + The GridKnownFunction that is used to create the FilterPredicate object. + The values that are used to create the FilterPredicate object. + + + + Gets the valid predicate count. + + + + + + Combines this FilterExpression object with another. + + The second FilterExpression object. + The new FilterExpression object. + + + + Converts the FilterExpression object to a filter string. + + + + + + Gets the parameters of the filter expression. + + The parameters. + + + + Gets or sets a value that indicates the name of the associated field. + + + + + Gets a collection containing the filter predicates. + + + + + Gets or sets a value that indicates which binary operator will be used when concatenating multiple filter expressions. + + + + + Gets a value indicating whether the filter expression is valid. + + + + + Gets a value indicating whether this instance is default filter descriptor of the column + + + true if this instance is default; otherwise, false. + + + + + Logical operation between two consequetive s + + + + + Gets the filter expressions. + + The filter expressions. + + + + Represents a collection of FilterExpression objects. + + + + + Gets the owner of + + The owner of the instance of + + + + Initializes a new instance of the class. + + The owner. + + + + Initializes a new instance of the class. + + The expressions. + + + + Performs application-defined tasks associated with freeing, releasing, + or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + The collection was modified + after the enumerator was created. + + true if the enumerator was successfully advanced to the next element; + false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first + element in the collection. + + The collection was modified + after the enumerator was created. + + + + Gets the element in the collection at the current position of the enumerator. + + The element in the collection at the current position of the enumerator. + + + + + + + + + + + + + + + + + + + + Represents a filter predicate + + + + + Creates new object + + + + + Creates a new object using the parameters. + + The binary operator used in the filter predicate. + The used in the filter predicate. + + + + Creates a new object using the parameters. + + The binary operator used in the filter predicate. + The used in the filter predicate. + The values used in the filter predicate. + + + + // Raises the PropertyChanging event + // + + The object to compare with the current object. + // + // + + true if the specified is equal to the + current ; otherwise, false. + + + + + Serves as a hash function for a particular type. + + A hash code for the current . + + + + This method is called right before the event is fired. + + + + + + Gets or sets the function that is applied on the and the rows in the grid to filter them. + + + + + Gets or sets a value that indicates which binary operator will be used when concatenating multiple filter expressions. + + + + + A collection of values and parameters that are used in the predicate. + Each entry should be a value or reference to a parameter in the . + + + + + + Gets a value indicating whether the filter predicate is valid. + + + + + Represents a collection of FilterPredicate objects. + + + + + Creates a new FilterPredicate object using the parameters and adds it to the collection. + + The binary operator used in the filter predicate. + The used in the filter predicate. + The values used in the filter predicate. + + + + Adds a collection of FilterPredicate objects. + + The collection of FilterPredicate objects. + + + + Adds a collection of FilterPredicate objects. + + The collection of FilterPredicate objects. + + + + Removes a collection of FilterPredicate objects. + + The collection of FilterPredicate objects. + + + + Removes a collection of FilterPredicate objects. + + The collection of FilterPredicate objects. + + + + Finds a FilterPredicate objects by value. + + The value to look for. + The first matching FilterPredicate object. Null if there are none. + + + + Predefined filter expression enumeration. Used by class. + + + + + No filter would be applied, filter controls would be cleared + + + + + Same as: FieldName LIKE '%value%' + + + + + Same as: FieldName NOT LIKE '%value%' + + + + + Same as: FieldName LIKE 'value%' + + + + + Same as: FieldName LIKE '%value' + + + + + Same as: FieldName = value + + + + Same as: FieldName != value + + + Same as: FieldName > value + + + + Same as: FieldName < value + + + + Same as: FieldName >= value + + + + Same as: FieldName <= value + + + + + Same as: value1 <= FieldName <= value2.
+ Note that value1 and value2 should be separated by [space] when entered as + filter. +
+
+ + + Same as: FieldName <= value1 && FieldName >= value2.
+ Note that value1 and value2 should be separated by [space] when entered as + filter. +
+
+ + + Same as: FieldName = '' + + + + Same as: FieldName != '' + + + + Only null values + + + + + Only those records that does not contain null values within the corresponding column + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The name. + The value. + + + + Gets or sets the name. + + The name. + + + + Gets or sets the value. + + The value. + + + + Provides helper methods for RadGridView. This class is used internally. + + + + + Gets the valid sub types. + + Type of the base. + The type resolution service. + + + + + Gets the all sub types. + + Type of the base. + + + + + Shows the error dialog. + + The UI service. + The ex. + + + + Gets the binding source name prefix. + + The data source. + The data member. + + + + + Builds the name from text. + + The text. + Type of the component. + The service provider. + + + + + Gets a unique name for an item of the collection. + + The + A base name to use. + the unique name for the collection. + + + + Gets a unique name for an item of the unique. + + The collection. + A base name to use. + A unique name for the collection. + + + + Checks whether the specified unique name exists in the specified collection. + + The to look. + A valid unique name. + true if the name exists. + + + + Checks whether the a column can be bounded to data of this + + The type to check + True if the type is bindable, false otherwise. + + + + This class contains logical information about visual presentation of flat tabular data in . + + + + + Initializes a new instance of the . + + The which this view corresponds to. + + + + Finds the parent of instance. + + The row info. + The parent of instance. + + + + Refreshes the ChildRows of GridViewInfo. + + + + + Gets a value that indicates whether the ChildRows collection of GridViewInfo needs to be refreshed. + + true if [needs refresh]; otherwise, false. + + + + Gets the instance of which the current view corresponds to. + + + + + Gets the parent which the current view is linked to. + + + + + Gets the index of the in the currently selected group. + + + + + Gets the instance of representing the header row for the current view. + + + + + Gets the instance of representing the header row for the current view. + + + + + Gets the instance of for the current view. + This row represents the row which is used by users to add new data. + + + + + Gets the instance of for the current view. + This row represents the row which is used by users to search through the data inside . + + + + + Gets a readonly list of containing the system rows in this view. + + + + + Gets a readonly list of containing the pinned rows in this view. + + + + + Gets a readonly list of containing the summary rows in this view. + + + + + Gets or sets the current row of the current view. + + + + + Gets the rows in this view. + + The rows. + + + + Gets the rows in this view. + + The rows. + + + + Determines whether [contains] [the specified template]. + + The template. + + true if [contains] [the specified template]; otherwise, false. + + + + + Indexes the of. + + The template. + + + + + Gets the with the specified template. + + + + + + Loads the specified rows. + + The rows. + + + + Loads the specified rows. + + The rows. + + + + Determines whether [contains] [the specified item]. + + The item. + + true if [contains] [the specified item]; otherwise, false. + + + + + Copies to. + + The array. + Index of the array. + + + + Indexes the of. + + The item. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Gets the at the specified index. + + + + + + Adds the range. + + The rows. + + + + Adds a row to the collection + + A variable number of objects that populate the cells of the new GridViewRowInfo. + The sorted index of the new row. + + + + Adds a new row to the rows collection. + + An instance + + + + Create new row. The new row is not added to collection. + + + + + + Moves a specified row in unbound mode + + The old index of the row. + The new index of the row. + + + + Adds an item to the . + + The object to add to the . + + The is read-only. + + + + + Removes all items from the . + + + The is read-only. + + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies the elements of the to an , starting at a particular index. + + The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. + The zero-based index in at which copying begins. + + is null. + + + is less than 0. + + + is multidimensional. + -or- + is equal to or greater than the length of . + -or- + The number of elements in the source is greater than the available space from to the end of the destination . + -or- + Type T cannot be cast automatically to the type of the destination . + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + + The is read-only. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + + + The is read-only. + + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + + The is read-only. + + + + + Gets the owner. + + The owner. + + + + Gets the number of elements contained in the . + + + + The number of elements contained in the . + + + + + Gets a value indicating whether the is read-only. + + + true if the is read-only; otherwise, false. + + + + + Gets or sets the at the specified index. + + + + + + Represents a collection containing that represent the selected rows in RadGridView. + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + An instance of the . + + + + Defines how bottom pinned rows will be layed out. + + + + + The bottom pinned rows will stay below the scrollable rows. If there are not enough rows to fill the viewport there will be no gap between the scrollable and pinned rows. + + + + + The bottom pinned rows will remain at the bottom of the viewport no matter how many scrollable rows there are in the viewport. + + + + + Gets the sort descriptors context. + + The sort descriptors context. + + + + This class contains logical information about a row of tabular data which is presented in the . + + + + + Initializes a new instance of the . + + An instance of which the current row belongs to. + + + + Calculates the actual height of the row. + + + + + Invalidates the row visual state. + + + + + Ensures that the row is visible. + + + + + Ensures that the row is visible. + + if set to true, it expands all parent rows. + + + + Deletes the row from the GridViewRowCollection. + + + + + Gets the error text associated with specified cell in this row. + + The field name that specifies the cell. + The error text if successfull. + + + + Determines whether the row has child rows. + + + true if the row has child rows; otherwise, false. + + + + + Allows PropertyChanging and PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Searches up the chain of parents and returns the first one of the specified type. + + + + + + + Gets a value indicating whether the row is valid in its context. + + + + + Gets or sets a valie indicating whether the row is initialized. + + + + + Gets a value indicating whether the row is attached with a template. + + + + + Gets the value asscociated with the specified column. + + An isntance of + The value for the column. + + + + Gets the local cache for this row. + + + + + If a cell from this row is a search row hit, it's column info will be stored in this cache. + + + + + Determines whether the row is internally created by RadGridView and is used for displaying some dynamic information. + + + + + Gets a value indicating whether the row has been modified and changes are not saved in the data layer. + + + + + Gets or sets the error message text for row-level errors. + + + + + Gets the DataGroup that owns this row + + + + + Gets the index of row in GridViewRowCollection. + + The index. + + + + Gets the instance of which the row belongs to. + + + + + Gets the instance of which the corresponds to. + + + + + Gets the containing all objects for the current row. + + + + + Tag object that can be used to store user data, corresponding to the row. + + + + + Gets the data-bound object that populated the row. + + + + + Gets or sets the minimum height of the row. + + + + + Gets or sets the maximum height of the row. + + + + + Gets or sets the current height of the row. + + + + + Gets value indicating whether the column contains the currently selected cell in the RadGridView. + + + + + Gets or sets a value indicating whether the row is selected. + + + + + Gets or sets a value indicating whether the row is expanded for as a grouping header row or when showing hierarchical structure. + + + + + Gets or sets a value indicating whether the row is visible. + + + + + Gets or sets value indicating whether the current row is pinned and cannot be moved from its location when a user scrolls vertically. + + + + + Gets or sets the pin position for the row. When the row is pinned, it cannot be moved from its location when a user scrolls vertically. + + + + + Gets a value indicating if the values in the row can be edited. + + + + + Gets a value indicating whether the row index is odd. + + + + + Gets or sets value indicating whether the user can resize the row. + + + + + Gets the type of the for current GridViewRowInfo. + + + + + Gets the level of this hierarchical row. + + + + + Gets the parent row for this row. + + + + + Gets the visual child rows. + + The visual child rows. + + + + Suspends the search functionality. While suspended no searches will be started. + + + + + Resumes the search functionality after it has been suspended through the method. + + + + + Resumes the search functionality after it has been suspended through the method. + + Controls whether a search should be started after search is resumed. + + + + Gets or sets the that will be used for case insensitive searches. + + + + + Gets or sets the culture that will be used for case insensitive seraches. + + + + + Gets the index of the currently selected search result. + + + + + Gets the current count of search results. This number changes as new results are found. + + + + + Gets a value indicating whether the search functionality is suspended. + + + + + Gets a value indicating if there is an ongoing search operation at the moment. + + + + + Gets or sets a value indicating the number of results that will be returned one at a time by the search mechanism. + + + + + Gets or sets a value indicating the number of search results that will be returned as a group after the has been reached. + + + + + Gets or sets a value indicating whether serach will be case sensitive or case insensitive. + + + + + Gets or sets a value indicating whether serach will start from current position. + + + + + Gets or sets a value indicating whether to close the search row when escape key is pressed. + + The close on escape. + + + + Gets or sets a value indicating whether to show the close button. + + The show close button. + + + + Gets or sets a value indicating whether to show the clear button. + + The show clear button. + + + + Gets or sets whether search results should be highlighted. + + + + + Determines if the first found cell will be selected and brough into view. + + + + + Gets the current/last search criteria. + + + + + Gets or sets a value indicating wheather the search will be performed on a background thread [true] or on the main thread [false]. + + + + + Gets or sets a value indicating how long the grid will wait after a key is pressed until it starts a search. + + + + + Represents a summary item. + + + + + This is the default constructor of GridViewSummaryItem + + + + + Initializes a GridViewSummaryItem. + + The name of the column that will be used by the aggregate function. + Formatting to be applyed + the aggregate that will be used by the SumaryInfo + + + + Gets or sets the aggregate expression. This property essentially replaces the Aggregate property by providing advanced + expressions compared to single function. This propery has higher precedence compared to the Aggregate property which is obsolete. + + + + + Gets or sets the aggregate function that will be used with this summary info. + + + + + Gets or sets the name of the column that will be used by the aggregate function. + + + + + Gets or sets the formatting string that is applied to the value. + + + + + Gets or sets the owner template. + + + + + Represents a summary row item containing summary items. + + + + + Initializes a new instance of the . + + + + + Initializes a new instance of the . + + + + + + Gets the item related with the specified field name. + + the field name + an instance of if found, null otherwise. + + + + Gets or sets the array of GridViewSummaryItem fields that describe this summary row. + + + + + Gets or sets the owner template. + + + + + Represents a collection containing objects. + + + + + Represents the method that will handle the GridViewPdfExportCellFormatting events of GridViewPdfExport. + + The event sender. + Instance of containing the cell related with this event + + + + Provides data for the GridViewPdfExportCellFormatting event + + + + + Initializes a new instance of the class. + + The cell element which is drawn. + The related with the cell. + The related with the cell. + + + + Gets the Cell Element which is drawn. + + + + + A class that represents a cell element in the exported pdf. + + + + + Gets or sets the type of the row. + + The type of the row. + + + + Gets or sets the index of the row. + + The index of the row. + + + + Gets or sets the type of the column. + + The type of the column. + + + + Gets or sets the index of the column. + + The index of the column. + + + + Gets or sets the image. + + The image. + + + + Gets or sets the image layout. + + The image layout. + + + + Gets or sets the image alignment. + + The image alignment. + + + + Gets or sets the font. + + The font. + + + + Gets or sets the fore color. + + The color of the fore. + + + + Gets or sets the text. + + The text. + + + + Gets or sets the text wrap. + + The text wrap. + + + + Gets or sets the text alignment. + + The text alignment. + + + + Gets or sets the color of the border. + + The color of the border. + + + + Gets or sets the color of the left border. + + The color of the border left. + + + + Gets or sets the color of the border left shadow. + + The color of the border left shadow. + + + + Gets or sets the color of the top border. + + The color of the border top. + + + + Gets or sets the color of the border top shadow. + + The color of the border top shadow. + + + + Gets or sets the color of the right border. + + The color of the border right. + + + + Gets or sets the color of the border right shadow. + + The color of the border right shadow. + + + + Gets or sets the color of the bottom border. + + The color of the border bottom. + + + + Gets or sets the color of the border bottom shadow. + + The color of the border bottom shadow. + + + + Gets or sets the width of the left border. + + The width of the border left. + + + + Gets or sets the width of the top border. + + The width of the border top. + + + + Gets or sets the width of the right border. + + The width of the border right. + + + + Gets or sets the width of the bottom border. + + The width of the border bottom. + + + + Gets or sets the border box style. + + The border box style. + + + + Gets or sets the back color. + + The color of the back. + + + + Gets or sets the back color2. + + The back color2. + + + + Gets or sets the back color3. + + The back color3. + + + + Gets or sets the back color4. + + The back color4. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Specifies the way how a logo image is drawn. + + + + + Represents the pdf export settings. + + + + + Gets or sets the author. + + The author. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Index of the grid row. + Index of the grid column. + Type of the grid RowInfo. + The grid view CellInfo. + The cell in the workbook. + The cell style, allowing to introduce appearance modification to the exported cells. + + + + Get source grid's column index + + + + + Get source grid's row index + + + + + Get source grid's row type + + + + + Get a reference to the source grid's cell. + + + + + Get excel cell element for further formatting + + + + + Get style element for further formatting + + + + + GridViewSpreadExport is a powerful exporting API, allowing to export RadGridView to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The grid to export. + + + + Initializes a new instance of the class. + + The grid to export. + The spread export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Gets or set if child rows should be exported. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + Note that if using RunExportAsync method to export, the visual settings will not be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets a value indicating how summary rows are exported. + + + The summaries export option. + + + + + Gets or sets a value indicating how hidden columns are exported. + + + The hidden column option. + + + + + Gets or sets a value indicating how hidden rows are exported. + + + The hidden row option. + + + + + Gets or sets a value indicating how the export behaves when paging is enabled. + + + The paging export option. + + + + + Gets or sets the child view export mode. + + + The child view export mode. + + + + + Gets or sets the RadGridView to export. + + + The RadGridView to export. + + + + + Gets or sets the format of the exported file - PDF, XLSX, CSV or TXT. + + + The file extension. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export grouped columns. + + + + + Gets or sets a value indicating whether to freeze the header row in the exported file. + + + + + Gets or sets a value indicating whether to freeze pinned rows. + + + + + Gets or sets a value indicating whether to freeze pinned columns. + + + + + Gets or sets a value indicating whether to export hierarchy and group child rows grouped. + + + + + Gets or sets a value indicating whether to export view definition. + Note that if using RunExportAsync method to export, the view definition will not be exported. + + + + + Occurs when a child view will be exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the SpreadCellFormatting event + + + + + Initializes a new instance of the class. + + Index of the excel row. + Index of the excel column. + The export cell. + The cell in the worksheet. + + + + Gets the index of the excel column. + + + + + Gets the index of the excel row. + + + + + Gets the row type of source grid. + + + + + Gets the export cell element. + + + + + Gets the style element for further formatting. + + + + + Gets the ICellExporter element. + + + + + Represents the method that will handle the SpreadStreamRowCreated and SpreadStreamRowCreated events. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the SpreadRowCreated and SpreadRowExporting events. + + + + + Initializes a new instance of the class. + + Index of the grid row. + Type of the grid row info. + The grid view row info. + The row. + + + + Gets the row index of source grid. + + + + + Gets the row type. + + + + + Gets a reference to the row of source grid. + + + + + Gets the IRowExporter element. + + + + + Represents a grid export that utilizes the RadSpreadStreamProcessing library. + + + + + Initializes a new instance of the class. + + The grid to export. + + + + Initializes a new instance of the class. + + The grid to export. + The spread export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadStreamExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadStreamExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + + The file name where data will be exported. + Instance of ISpreadStreamExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadStreamExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadStreamExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadStreamExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + + The stream where data will be exported. + Instance of ISpreadStreamExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadStreamExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Creates the snapshot rows. + + The traverser. + The export row infos. + The visible columns. + The current indent. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or set if child rows should be exported. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets a value indicating how summary rows are exported. + + + The summaries export option. + + + + + Gets or sets a value indicating how hidden columns are exported. + + + The hidden column option. + + + + + Gets or sets a value indicating how hidden rows are exported. + + + The hidden row option. + + + + + Gets or sets a value indicating how the export behaves when paging is enabled. + + + The paging export option. + + + + + Gets or sets the child view export mode. + + + The child view export mode. + + + + + Gets or sets the RadGridView to export. + + + The RadGridView to export. + + + + + Gets or sets the format of the exported file - XLSX or CSV. + + + The file extension. + + + + + Gets or sets a value indicating whether to export grouped columns. + + + + + Gets or sets a value indicating whether to freeze the header row in the exported file. + + + + + Gets or sets a value indicating whether to freeze pinned rows. + + + + + Gets or sets a value indicating whether to freeze pinned columns. + + + + + Gets or sets a value indicating whether to export hierarchy and group child rows grouped. + + + + + Gets or sets a value indicating whether to export view definition. + Note that if using RunExportAsync method to export, the view definition will not be exported. + + + + + Occurs when a child view will be exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when a new row is created in current worksheet. + This is suitable place to set any row properties(like height) and/or add any indent cells. + + + + + Occurs when a spread row is about to be exported. + This is suitable place to add any additional cells at the end of the row. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents a cell info of the GridViewSpreadStreamExport. + + + + + Initializes a new instance of the class. + + Type of the row. + Index of the row. + Type of the column. + Index of the column. + The value. + The export format. + Type of the export format. + The cell style info. + + + + Gets or sets the type of the grid row. + + The type of the row. + + + + Gets or sets the index of the grid row. + + The index of the row. + + + + Gets or sets the type of the grid column. + + The type of the column. + + + + Gets or sets the index of the grid column. + + The index of the column. + + + + Gets or sets the value. + + The value. + + + + Gets or sets the export format. + + The export format. + + + + Gets or sets the type of the export format. + + The type of the export format. + + + + Gets or sets the cell style info. + + The cell style info. + + + + Represents a row info in the GridViewSpreadStreamExport. + + + + + Initializes a new instance of the class. + + The cell infos. + The indent. + The export as hidden. + The hierarchy level. + The height. + + + + Gets or sets the cell infos. + + The cell infos. + + + + Gets or sets the indent cells. + + The indent cells. + + + + Gets or sets the export as hidden. + + The export as hidden. + + + + Gets or sets the hierarchy level. + + The hierarchy level. + + + + Gets or sets the height. + + The height. + + + + Represents a group row info in the GridViewSpreadStreamExport. + + + + + Initializes a new instance of the class. + + The cell infos. + The indent. + The export as hidden. + The hierarchy level. + The height. + The column span. + + + + Gets or sets the column span. + + The column span. + + + + Determines how the export handles child views when exporting hierarchy. + + + + + Always exports the first view. + + + + + Exports the view that is active in the grid. + + + + + In this mode the ChildViewExporing event is fired. The event allows to choose the view to export in row by row basis. + + + + + In this mode all child views are exported. Available in GridViewSpreadExport and GridViewPdfExport. + + + + + Determines how the exporter exports data when paging is enabled. + + + + + The exporter will export only the data on the current page. + + + + + The exporter will export the data from all pages. + + + + + Search for real visible fill and mix its colors + + + Mixed color, ready for export + + + + Converts padding in millimeters to Dip. + + Value. + + + + Converts padding in Dip to millimeters. + + Value. + + + + Converts millimeters to Dip. + + Value in millimeters. + Value converted to Dip + + + + Converts Dip to millimeters. + + Value in Dip. + Value converted to millimeters. + + + + Converts ContentAlignment to a value which is used in RightToLeft mode. + + Initial value. + Converted value. + + + + Runs the export. + + Name of the file. + + + + Sets the summaries export option. + + The summaries export option. + + + + Sets the hidden column option. + + The hidden column option. + + + + Sets the hidden row option. + + The hidden row option. + + + + Sets the RadGridView to export. + + The RAD grid view to export. + + + + Sets the file extension. + + The file extension. + + + + Represents the method that will handle the CellPaint events of ExportToPDF. + + The event sender. + Instance of containing the cell related with this event + + + + Provides data for the CellPaint event + + + + + Provides event arguments for the PageCreated event + + + + + Initializes a new instance of the class. + + The editor object used to draw. + The rectangle in which the editor draws. + + + + Gets the editor object used to draw. + + + + + Gets the rectangle in which the editor draws. + + + + + Initializes a new instance of the class. + + The cell element which is drawn. + The object used to draw the cell. + The rectangle in which the cell is drawn. + + + + Gets the Cell Element which is drawn. + + + + + Represents the method that will handle the Export event. + + The event sender. + The instance containing the event data. + + + + GridViewPdfExport is an exporting API, allowing to export RadGridView to PDF format, utilizing the Document Processing Libraries. + + + + + Allows to add logo to the header or footer. + + + + + Number of the current page + + + + + Total number of pages + + + + + Obsolete. Use DateExportedString instead. + + + + + Date when the exporting was started. + + + + + Obsolete. Use DateExportedString instead. + + + + + Time when the printing was started. + + + + + Obsolete. Use UserNameExportedString instead. + + + + + Username associated with the current thread (the current Windows login)) + + + + + Initializes a new instance of the GridViewPdfExport class. + + The grid to export. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the row size using the provided row layout. + + The row to measure. + The row layout to be used for the measure. + The size of the row. + + + + Exports the header part of the page. + + + + + Exports the footer part of the page. + + + + + Parses a given string for special words. + + The string. + The parsed string. + + + + Starts an export operation. + + The Stream where the RadGridView will be exported. + Instance of IPdfExportRenderer class. + + + + + Starts an export operation that runs in a background thread. + + The stream where data will be exported. + Instance of IPdfExportRenderer class. + + + + Starts an export operation. + + The file name where data will be exported. + . + + + + Starts an export operation that runs in a background thread. + + The file name where data will be exported. + Instance of IPdfExportRenderer class. + + + + Cancels an asynchronous export operation. + + + + + Cancels current export operation. + + + + + Gets or sets if child rows should be exported. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets a value indicating how summary rows are exported. + + + The summaries export option. + + + + + Gets or sets a value indicating how hidden columns are exported. + + + The hidden column option. + + + + + Gets or sets a value indicating how hidden rows are exported. + + + The hidden row option. + + + + + Gets or sets a value indicating how the export behaves when paging is enabled. + + + The paging export option. + + + + + Gets or sets the child view export mode. + + + The child view export mode. + + + + + Gets or sets the RadGridView to export. + + + The RadGridView to export. + + + + + Gets or sets the file extension of the exported file. + + + The file extension. + + + + + Gets or sets the page size in millimeters for the exported file. + Default size is 210x297mm(A4 portrait). + + + + + Gets or Sets the margins of pages that will be exported in millimeters. + + + + + Gets or sets a value indicating whether the content of page should fit into the page width. + Default value is true. + + + + + Gets or sets the document scaling. Default value is 1. For example, scale of 1.2f means 20% size increase. + + + + + Gets or sets a value indicating whether grouped columns should be exported. + Default value is true. + + + + + Gets or sets a value indicating whether the header row should be exported on each page. + Default value is true. + + + + + Gets or sets the indent of group and hierarchy rows. + + + + + Gets or sets a value indicating whether header and footer should be exported. + + + + + Gets or sets the header height. + + + + + Gets or sets the footer height. + + + + + Gets or sets the font of the page header. + + + + + Gets or sets the font of the page footer. + + + + + Gets or sets the text that will be exported near the upper left corner of the page. + + + + + Gets or sets the text that will be exported at the top center of the page. + + + + + Gets or sets the text that will be exported near the upper right corner of the page. + + + + + Gets or sets the text that will be exported near the bottom left corner of the page. + + + + + Gets or sets the text that will be exported at the bottom center of the page. + + + + + Gets or sets the text that will be exported near the bottom right corner of the page. + + + + + [true] if the LeftHeader and RightHeader should be reversed on even pages, [false] otherwise. + + + + + [true] if the LeftFooter and RightFooter should be reversed on even pages, [false] otherwise. + + + + + Gets or sets the header/footer logo. + + + + + Gets or sets the alignment of logo image in header/footer. + + + + + Gets or sets the way the logo is drawn. + + + + + Gets or sets export settings. + + + + + Gets or sets a value indicating whether to export view definition. + + + + + Occurs when a child view will be exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when a cell is drawn. + + + + + Occurs when the export process completes. + + + + + Occurs when the header is exported. + + + + + Occurs when the footer is exported. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents a page's header/footer in the export. + + + + + Initializes a new instance of the class. + + The height. + The font. + The left text. + The center text. + The right text. + The reverse on even pages. + + + + Gets or sets the height. + + The height. + + + + Gets or sets the font. + + The font. + + + + Gets or sets the left text. + + The left text. + + + + Gets or sets the center text. + + The center text. + + + + Gets or sets the right text. + + The right text. + + + + Gets or sets the reverse on even pages. + + The reverse on even pages. + + + + Localizes the strings in the control by using the current . + + + + + Loads the from the printed into the dialog + + The to be edited in the dialog. + + + + Loads the into the dialog. + + The to be loaded in the dialog. + + + + Saves all settings form the dialog. + + + + + Enables or disables the custom font properties depending on the KeepVisualStyles property setting. + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the settings edited in the dialog. + + + + + Gets the row that is currently printed. + + + + + Gets the column that is currently printed. + + + + + Gets the print cell element which will be printed. + + + + + Gets the used for the painting. + + + + + Gets the row that is currently printed. + + + + + Gets the column that is currently printed. + + + + + Gets the rectangle in which the cell will be printed. + + + + + Determines how the column widths will be set when printing. + + + + + The total column width will be resized to mach the page width while preserving the individual column width ratios. + + + + + The column widths will not be changed but the grid will be centered on the page. + + + + + The column widths will not be changed. + + + + + Gets or sets a value indicating whether hidden rows will be traversed + + + + + Renders a whole page using the settings provided. + + The traverser to iterate the grid with. + The size of the drawable area. + The graphics used for the drawing. + The print settings used for the drawring. + The number of the current page. + + + + Resets the print style for subsequent use. + + + + + Gets the view definition type this print style is for. + + The type of the view definition. + + + + Creates a header print cell element. + + The column which header is the cell. + The to be printed. + + + + Creates a group print cell element. + + The group row that this print cell represents. + The to be printed. + + + + Creates a data print cell element. + + The actual grid view cell that will be printed. + The to be printed. + + + + Creates a summary print cell element. + + The actual grid view summary cell that will be printed. + The to be printed. + + + + Creates an image print cell element. + + The actual grid cell that holds the image info. + The to be printed. + + + + Gets the height of a given data row taking into account if the grid AutoSizeRows property is true. + + The row to be measured. + The row layout. + + + + + Gets the cell's desired width + + An instance of + Returns the desired cell's with + + + + Detaches the specified cell from the cell element provider. + + The cell element provider. + The cell. + + + + Detaches the specified row from the row element provider. + + The row element provider. + The row. + + + + Renders a whole page using the settings provided. + + The traverser to iterate the grid with. + The size of the drawable area. + The graphics used for the drawing. + The print settings used for the drawing. + The number of the current page. + + + + Resets the print style for subsequent use. + + + + + Occurs after a cell is being formatted and painted. + + The + + + + Occurs for each cell that is being printed. + + The + + + + Occurs for hierarchy rows with more than one child views. + + The + + + + Gets the associated . + + + + + Gets the view definition type this print style is for. + + The type of the view definition. + + + + Fires after a cell is being formatted and painted. + + + + + Fires for each cell that is being printed. + + + + + Fires for hierarchy rows with more than one child views. + + + + + Determines how child views are printed when printing hierarchy. + + + + + Always prints the first view. + + + + + Prints the view that is active in the grid. + + + + + In this mode the ChildViewPrinting event is fired. The event allows to choose the view to export on a row by row basis. + + + + + Gets the row size using the provided row layout. + + The row to measure. + The row layout to be used for the measure. + The size of the row. + + + + Prints a single cell that is wide as the whole . + + The actual row that is being printed. + The used for layouting the cells. + The print settings to print the row with. + The X coordinate that the row should start to paint. + The Y coordinate that the row should start to paint. + The used for the drawing. + + + + Prints a single row of the . + + The actual row that is being printed. + The used for layouting the cells. + The print settings to print the row with. + The X coordinate that the row should start to paint. + The Y coordinate that the row should start to paint. + The used for the drawing. + + + + Renders a whole page using the settings provided. + + The traverser to iterate the grid with. + The size of the drawable area. + The graphics used for the drawing. + The print settings used for the drawing. + The number of the current page. + + + + Resets the print style for subsequent use. + + + + + Gets the view definition type this print style is for. + + The type of the view definition. + + + + Represents a collection of column collections. + + + + + Initializes a new instance of the class. + Each represents a separate page. + + + + + Adds the specified columns as a new . The represents a separate page. + + The columns. + + + + + Clears all instances in this collection. + + + + + Inserts the specified to the specified index. Each represents a separate page. + + The index. + The columns. + + + + Removes the at the specified index. + + The index. + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Gets or sets the at the specified index. + + + The index. + + The index. + + + + + Gets the count of the instances in this collection. + + + The count. + + + + + Gets the row size using the provided row layout. + + The row to measure. + The row layout to be used for the measure. + The size of the row. + + + + Prints a single cell that is wide as the whole . + + The actual row that is being printed. + The used for lay outing the cells. + The print settings to print the row with. + The X coordinate that the row should start to paint. + The Y coordinate that the row should start to paint. + The used for the drawing. + + + + Prints a single row of the . + + The actual row that is being printed. + The used for layouting the cells. + The print settings to print the row with. + The X coordinate that the row should start to paint. + The Y coordinate that the row should start to paint. + The used for the drawing. + + + + Renders a whole page using the settings provided. + + The traverser to iterate the grid with. + The size of the drawable area. + The graphics used for the drawing. + The print settings used for the drawing. + The number of the current page. + + + + Resets the print style for subsequent use. + + + + + Gets the view definition type this print style is for. + + The type of the view definition. + + + + Gets or sets the font used for data cells. + + + + + Gets or sets the font used for group cells. + + + + + Gets or sets the font used for header cells. + + + + + Gets or sets the font used for summary cells. + + + + + Gets or sets a indent in pixels when printing a hierarchical grid. + + + + + Gets or sets a value indicating whther grouping is printed. + + + + + Gets or sets a value indicating whether summaries are printed. + + + + + Gets or sets a value indicating whether hierarchy is printed. + + + + + Gets or sets a value indicating whether hidden rows are printed. + + + + + Gets or sets a value indicating whethwe hidden columns are printed. + + + + + Gets or sets a value indicating whether alternating row color is printed. + + + + + Gets or sets a value indicating whether header cells are printed on each page or only on the first. + + + + + Gets or sets a value indicating whether all pages will be printed when paging is enabled. + + true if all pages will be printed; otherwise, false. + + + + Gets or sets the default back color for data cells. + + + + + Gets or sets the default back color of header cells. + + + + + Gets or sets the default back color of group rows. + + + + + Gets or sets the default back color of summary cells. + + + + + Gets or sets the default color of all borders. + + + + + Gets or sets the default padding for all cells. + + + + + Gets or sets a value indidcating the alternating row color for odd rows. + + + + + Gets or sets a value indicating how the grid is positioned on the printed page. + + + + + Gets or sets a value indicating how child views are printed when printing a hierarchical grid. + + + + + Initializes the default values for the style. + + + + + Initializes the correct print renderer for the current grid view definition + + The grid that is being printed. + An instance of the correct print renderer for the given grid view. + + + + Draws a whole document page. + + The available drawing area. + The used for the drawing. + The number of the page that is being drawn. + + + + Gets the number of pages needed for drawing the associated . + + The available drawing area. + The number of needed pages. + + + + Resets the print style for subsequent use. + + + + + Fires when the content of a print cell is painted, allows custom painting. + + The initiator of the event. + The event arguments. + + + + Fires when the content of a print cell needs to be formatted for print. + + The initiator of the event. + The event arguments. + + + + Occurs for hierarchy rows with more than one child views. + + The initiator of the event. + The + + + + Gets or sets the font that will be used for the data cells. + + + + + Gets or sets the font that will be used for the group cells. + + + + + Gets or sets the font that will be used for the header cells. + + + + + Gets or sets the font that will be used for the summary cells. + + + + + Gets or sets a indent in pixels when printing a hierarchicle grid. + + + + + Gets or sets a value indicating whether grouing will be printed. + + + + + Gets or sets a value indicating whether summary rows will be printed. + + + + + Gets or sets a value indicating whether hidden rows will be printed. + + + + + Gets or sets a value indicating whether hierarchy will be printed. + + + + + Gets or sets a value indicating whether hidden columns will be printed. + + + + + Gets or sets a value indicating whether alternating row color is printed. + + + + + Gets or sets a value indicating whether header cells will be printed on each page. This setting does not work when printing a hierarchical grid. + + + + + Gets or sets a value indicating whether all pages will be printed when paging is enabled. + + true if all pages will be printed; otherwise, false. + + + + Gets or sets the default back color for data cells. + + + + + Gets or sets the default back color of header cells. + + + + + Gets or sets the default back color of group rows. + + + + + Gets or sets the default back color of summary cells. + + + + + Gets or sets a value indidcating the alternating row color for odd rows. + + + + + Gets or sets the default color of all borders. + + + + + Gets or sets the default padding for all cells. + + + + + Gets or sets a value indicating how the columns will be printed. + + + + + Gets or sets a value indicating how child views are printed when printing a hierarchical grid. + + + + + Gets the that this print styles is assigned to. + + + + + Gets the traverser that is used to traverse the RadGridView + + + + + Gets or sets the print renderer that is used for print rendering. + + + + + Fires when the content of a print cell is painted, allows custom painting. + + + + + Fires when the content of a print cell needs to be formatted for print. + + + + + Fires for hierarchy rows with more than one child views. + + + + + Represents a collection of columns. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The number of elements that the new list can initially store. + + + + Initializes a new instance of the class. + + A collection of columns that will be added initially to the collecton. + + + + Gets the row size using the provided row layout. + + The row to measure. + The row layout to be used for the measure. + The size of the row. + + + + Prints a single cell that is wide as the whole . + + The actual row that is being printed. + The used for layouting the cells. + The print settings to print the row with. + The X coordinate that the row should start to paint. + The Y coordinate that the row should start to paint. + The used for the drawing. + + + + Prints a single row of the . + + The actual row that is being printed. + The used for layouting the cells. + The print settings to print the row with. + The X coordinate that the row should start to paint. + The Y coordinate that the row should start to paint. + The used for the drawing. + + + + Prints a single row of the . + + The actual row that is being printed. + The used for layouting the cells. + The print settings to print the row with. + The X coordinate that the row should start to paint. + The Y coordinate that the row should start to paint. + The used for the drawing. + The available draw area to print the row in. + + + + Renders a whole page using the settings provided. + + The traverser to iterate the grid with. + The size of the drawable area. + The graphics used for the drawing. + The print settings used for the drawing. + The number of the current page. + + + + Resets the print style for subsequent use. + + + + + Gets or sets the print pages. Collection of , where each collection represents a separate page. + + + The print pages. + + + + + Gets or sets the current print page. Used for Multi-page printing. + + + The current print page. + + + + + Gets the view definition type this print style is for. + + The type of the view definition. + + + + Defines the priority of an event listener. + + + + + Lowest priority listener, will receive events after all other listeners. + + + + + Low priority listener, will receive events after other listeners. + + + + + Normal priority. + + + + + High priority listener, will receive events before listeners with normal priority. + + + + + Highest priority listener, will receive events before all other listeners. + + + + + Event is dispatched synchronously. + + + + + Event is dispatched asynchronously. + + + + + Defines how a IGridViewEventListener instance wants to process an internal GridView event. + + + + + The core ProcessEvent callback is executed. + + + + + The PreProcessEvent callback is executed. + + + + + The PostProcessEvent callback is executed. + + + + + The listener wants to analyze the queue of events that are to be dispatched. + + + + + All callbacks participate in event dispatching. + + + + + All process callbacks plus queue analysis + + + + + Defines the semantic of an event that occurs within a RadGridView instance. + + + + + Gets the instance that raised the CLR event initially. + + + + + Gets the arguments associated with the event. + + + + + Gets the event information. + + + + + Gets the instance that sends this event. + + + + + Gets the GridViewSynchronizationService instance that dispatches this event. + + + + + Pre-Processes the specified event. + + + True if the event may be further dispatched, false otherwise. + + + + Processes the specified event. + + + True if the event may be further dispatched, false otherwise. + + + + Post-Processes the specified event. + + + True if the event may be further dispatched, false otherwise. + + + + Processes the specified event by following the PreProcess-Process-PostProcess semantic. + + + True if the event may be further dispatched, false otherwise. + + + + Dispatches an event to all listeners, considering the process mode. + Returns true if the event has been processed and dispatch may continue. + + + + + + + + + Encapsulates a result, returned by a IGridViewEventListener + + + + + Determines whether the event is handled (processed). This means that the default processing is not needed. + + + + + Determines whether event dispatching should be canceled. + + + + + Defines the possible types of events within RadGridView. + + + + + Data related notification. + + + + + UI related notification. + + + + + Both event types. + + + + + Core entry point for all internal events in RadGridView. Provides synchronization semantic for all received notifications and dispatches them to all listeners. + + + + + Begins a Dispatch process. + + + + + Ends Dispatch transaction without flushing pending events. + + + + + Ends Dispatch transaction and flushes all pending events. + + + + + + Suspends event dispatching. + + + + + Resumes event dispatching, previously suspended by a SuspendDispatch call. + + + + + Forces any events present on the events queue to be immediately dispatched. + + + + + Suspends dispatching of events with the specified ID. + + + + + + Resumes dispatching of events with the specified ID. + + + + + + Dispatches + + The template. + The instance of which will be dispatched. + if set to true, the UI will be asynchronously processed when GridEventType.Both is dispatched. + + + + Gets the event that is currently being dispatched. + + + + + Determines whether the service is currently in a process of dispatching all queued events. + + + + + Determines whether the service is queuing any incomming events without dispatching them. + + + + + Determines whether event dispatching is suspended. If true any incomming events will not be queued. + + + + + Gets a value indicating whether the dispatching of UI events is suspended. + + + true if the UI event dispatching is suspended; otherwise, false. + + + + + Gets a value indicating whether the dispatching of Data events is suspended. + + + true if the Data Event dispatching is suspended; otherwise, false. + + + + + This component represents a customizable view template for displaying flat tabular data. + + + + + Create new row item. + + + + + + Initializes IDataItemSource. + + + + + Raises the PropertyChanging event. + Note: This method is called even when the notifications are suspended. + + A instance containing event data. + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + + + + + General method for setting the value of the field related to the property that is modified. + This method confirms that the old and new values are different, then fires the + event, then sets the given value to the supplied field, + and fires the event. + Note: If the event is canceled, the last two actions are + not performed. + + + + public class MyNotificationsTest : NotifyPropertyBase + { + private int myInt = 0; + private int myInt2 = 0; // + + public int AsInt + { + get + { + return this.myField; + } + set + { + if (SetProperty("AsInt", ref this.myInt, value)) + { + // perform additional actions when new value is set to myInt. + } + } + } + + public int AsInt2 + { + get + { + return (float)this.myInt2; + } + set + { + // The following property setter is the same as the previous one. + if (this.myInt2 != value) + { + PropertyChangingEventArgs2 ea = new PropertyChangingEventArgs2("AsInt2", value); + OnPropertyChanging(ea); + + if (!ea.Cancel) + { + this.myInt2 = (int)ea.Value; + OnPropertyChanged("AsInt2"); + + // perform additional actions when new value is set to myInt2. + } + } + } + } + } + + + The two setter implementations are identical. If you require to perform some actions before + the event is fired, you can use the second implementation, or, + a better solution is to override the ProcessPropertyChanged method and place + the code there. + The type of the field that is to be modified. + The name of the property, that will appear as propertyName in the and event args. + The field, that is related to the property. + The value that is to be set to the field in case the event is not being Canceled. + true if new value is being set + + + + Begins initialization of the view template. + + + + + Ends view template initialization. + + + + + Sets the parent for this template. Never use this method directly. Instead, add the template to its parent's collection. + + The parent template. + + + + Resets the hierarchy data provider. + + + + + Defers the refresh. + + + + + + Refreshes this instance. + + + + + Refreshes the specified affected columns. + + The affected columns. + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + + + + Ends the update. + + + + + Ends the update. + + + + + This method is used to notify the template, that a row is expanded, while event dispatch is suspended. + + + + + Unbound load the IDatareader data and reset current DataSource + + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + The mode. + + + + Expands all group rows when data is grouped. + + + + + Collapses all group rows when data is grouped. + + + + + Expands all expandable rows. + + + + + Collapses all expandable rows. + + + + + Keep the order of the columns in the Excel Like filtering + + + + + Occurs when the instance of is created. + + + + + Gets or sets the binding context. + + The binding context. + + + + Occurs when [binding context changed]. + + + + + Gets the child rows. + + The child rows. + + + + Occurs when initialization of the component is completed. + + + + + Gets a value indicating whether the component is initialized. + + + + + Determines whether the template is in a Begin/End update block. + + + + + Gets or sets a value indicating whether the last added row in the RadGridView DataSource will be selected by the control. + + true if [select last added row]; otherwise, false. + + + + Gets or sets the text displayed in the new row. If this values is null or empty the text from the localization provider will be used. + + The new row text. + + + + Gets or sets the tag. + + The tag. + + + + Gets or sets a value indicating whether the filter operator text should be shown in the filter cell + + + true if [show filter cell operator text]; otherwise, false. + + + + + Gets or sets the display state of grid horizontal scrollbars. + + + + + Gets or sets the display state of grid vertical scrollbars. + + + + + Gets or sets a value indicating whether user can drag a column header to grouping panel. + + + + + Gets or sets a value indicating whether user can reorder + Columns. + + + + + Gets or sets a value indicating whether user can resize a row. + + + This property does not prevent developer from setting + + + + + + Gets or sets a value indicating whether the underlying source in Object-relational binding + should be automatically updated on create,update or delete operations (enables CRUD in Object-relational mode). + + + + + Gets or sets the caption text. + + + + + Gets or sets a value indicating whether alternating row color is enabled. + + + + + Gets or sets the hierarchy data provider. + + The hierarchy data provider. + + + + Gets the collection containing the summary items placed in the group header. + + + + + Gets the collection containing summary rows placed at the bottom of each DataGroup. + + + + + Gets the collection containing summary rows placed on top of each DataGroup. + + + + + Indicates whether string comparisons of data are case-sensitive. + + + + + Gets a readonly collection of containing the pinned rows in this template. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets the child templates. + + The child templates. + + + + Gets the master view info. + + The master view info. + + + + Gets the groups. + + The groups. + + + + Gets the columns. + + The columns. + + + + Gets or sets the column containing the current cell in the grid. + + + + + + Gets the rows. + + The rows. + + + + Gets or sets the parent. + + The parent. + + + + Gets the level of nesting for this template. + + + + + Gets the root template. + + + + + Gets the event dispatcher + + + + + Gets or sets the number of columns displayed in the current . + + + + + Gets or sets the number of rows contained in the current . + + + + + Gets or sets a value indicating whether user can edit rows. + + + + + + + + Gets or sets a value indicating whether the ColumnInfo Chooser form is available to the user for this instance of . + + + + + + Gets or sets a value indicating whether the user is able to reorder rows in the grid + + + + + + Gets or sets a value indicating whether context menu is displayed when user rightclicks on a column header. + + + + + Gets or sets a value indicating whether context menu is displayed when user right clicks on a row header. + + + + + Gets or sets a value indicating whether user can resize columns. + + + This property does not prevent developer from setting + + + + + + Gets or sets a value indicating whether context menu is displayed when user right clicks on a data cell. + + + + + Gets or sets a value indicating whether user can automatically resize a column to fit its content by doubleclicking the right border of header cell. + + + + + + + Gets or sets a value indicating whether user can delete rows. + + + + + + + + Gets or sets a value indicating whether the user can add new rows through the grid. + + + When set to true an empty row is added in which the user can enter data for the new record. + Set to false to hide the row. + The row position is controlled through + + + + + + + + Gets or sets a value indicating whether the user can search in the data contained in the grid. + + + When set to true a search row is added where the user can enter search criteria. + Set to false to hide the row. + The row position is controlled through + + + + + + Gets or sets a value indicating whether the data can be sorted by the end-users. + + + + + Gets or sets a value indicating whether the data can be sorted programatically. + + + + + Gets or sets a value indicating whether the data in the current can be grouped by users. + + + + + + Gets or sets a value indicating whether the data can be grouped programatically. + + + + + Gets or sets a value indicating whether the data in the current DataView can be filtered. + + + + + Gets or sets a value indicating whether the data can be filtered programatically. + + + + + Gets or sets a value indicating whether the data can be filtered using parent/child relationship. + + + + + Gets or sets a value indicating how column widths are determined. + + + + + + Gets or sets a value indicating how bottom pinned rows are layed out. + + + + + + Gets or sets a value indicating whether the columns by which the data is grouped are visible. + + + Set to false, and each column contained in the , will get hidden. + Set to true to see all columns. If some column is still not visible, check . + + + + + + Gets or sets a value indicating whether the end-user can sort by more than one column. + + + + + Gets or sets a value indicating whether the data in this template can be modified + + + + + Gets or sets a value indicating whether columns are created automatically when the or properties are set. + + + Returns true if the columns should be created automatically; otherwise, false. The default is true. + + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets or sets the associated with this template. + + + + + Sets or gets a value indicating the initial state of group rows when data is grouped. + + + + + + Gets or sets a vlue indicating the location of the new row in the view template. + + + + + + Gets or sets a vlue indicating the location of the search row in the view template. + + + + + + Gets or sets a value indicating whether the row header column is visible. + + + + + Gets or sets a value indicating whether the column headers are visible. + + + + + Gets or sets a value indicating wheter the filtering row should be visible. + + + + + Gets or sets a value indicating whether the header cell buttons are visible. + + + + + Gets or sets the position to place tabs for child views related with this template. + + + + + Gets a value indicating whether this is self reference relation. + + + true if this relation is self reference; otherwise, false. + + + + + Gets a value indicating whether the ChildRows in hierarchy mode is virtual and hosted outside Rows collection. + + + true if this instance is virtual rows; otherwise, false. + + + + + Gets or sets a value indicating whether total summary rows are visible in grouping. + + + + + Gets or sets a value indicating whether parent group summary rows are visible in grouping. + + + + + Gets or sets a value indicating whether to show child view captions. + + + + + Gets a value indicating if the template contains a column with defined expression. + + + + + Gets or sets the filter predicate used fpr filtering operation. + + The filter. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets or sets the sort comparer. + + The sort comparer. + + + + Gets or sets the group comparer. + + The group comparer. + + + + Gets the list source. + + The list source. + + + + Gets the data view. + + The data view. + + + + Current version of the summary rows of the Template. Increments when the summary rows collection is changed. + + + + + Adds the contained in the specified list to the collection. + + The templates to add. + + + + Gets the template by caption. + + The caption. + + + + + Gets the owner. + + The owner. + + + + Expands this instance. + + + + + Expands this instance and its child instances recursive. + + + + + Collapses this instance. + + + + + Collapses this instance and its child instances recursive. + + + + + Determines whether the group is in valid state (present in its owning data view). + + + + + Gets the groups. + + The groups. + + + + Gets the group row. + + The group row. + + + + Gets the expanded state of the group. + + + + + Gets the associated with this group. + + + + + Expression similar to SQL's "Select Group By" clause that is used by + GridTableView to group items + . Expressions can be defined by + assigning Expression property and/or managing the + items in or + collections. + + + If you use property to assign + group by expression as string then the expression is parsed and + and + are created. If the + expression syntax is incorrect a would be + thrown. You can use 's properties to set + expression's fields appearance format strings, etc. See + property for details about the expression syntax. + + + + Constructs a new GroupByExpression from a grid GridColumn. + + The of the column should be true. + The following properties will be copied from the corresponding column's properties: + + + Column's data-format-string depending on the type of the column. For example + + will be copied to + . + + Column's will be copied to + + + + + the column (and its FieldName respectively) that will be used + for grouping RadGridView + + + + Calls GridGroupByExpression(expression) + + + The same as the property + the string representation of the expression. + + + + Compares the current expression against the expression set as parameter and check + if both expressions contain field with the same name. + + + true if both expressions contain field with the same name, + otherwise false. + + expression to check against this expression + + + Checks if the given expression contains same Group-By field as this one. + + true if the expression already contains this GroupByField, otherwise + false. + + + Use this function to determine if two expressions seem to produce the same set of results + + Expression to check + + + + Gets or Sets the format string that is applied to group expressions that have no explicitly specified format string. + + + + + Gets a collection of SelectField objects (field names, aggregates etc.) that form + the "Select" clause. Standing on the left side of the "Group By" clause. + + + + + Gets a collection of objects that form the grouping + clause. Standing on the right side of the "Group By" clause + + + + String representation of the GroupBy expression. See Remarks for details. + + Create group-by expressions, using the following expression syntax:
+ fieldname[ as alias] [format "..."]|aggregate(fieldname|alias)[as alias][, ...] + Group By fieldname|alias [ASC|DESC]
Where:
+ fieldname
: name of any field from the DataSource
+ alias
: alias string. This cannot contain blanks or other reserved symbols like + ',', '.' etc.
+ aggregate
: any of - min, max, sum, count, last, first etc (the same as + in GridAggregateFunction enumeration)
+ format
string identical to the one used with string.Format, where the + first argument is the field name or the alias and the second one is the actual + value. The default value is "{0}: {1}" +
+ Example: Country, City, count(Country) Items, ContactName Group By + Country, City desc
+
+ + + Country, City, count(Country) Items, ContactName Group By Country, City desc + + + Country, City, count(Country) Items, ContactName Group By Country, City desc + + +
+ + + Gets the index of the expression if added in a + + + + integer, representing the index of the collection ni + . + + + + + Collection that stores group by expressions + + + + + Adds the specified expression. + + The expression. + + + + Adds the specified expression. + + The expression. + The format string. + + + + Indexes the of. + + The expression. + + + + + Gets or sets the expression. + + The expression. + + + + Field which is part of each + and collection + + + + Dim groupExpression As GridGroupByExpression = New GridGroupByExpression() + + Dim groupByField As GridGroupByField = New GridGroupByField() + + groupByField = New GridGroupByField() + groupByField.FieldName = "Received" + groupExpression.SelectFields.Add(groupByField) + + groupByField = New GridGroupByField() + groupByField.FieldName = "Received" + groupExpression.GroupByFields.Add(groupByField) + + RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression) + + + GridGroupByExpression groupExpression = new GridGroupByExpression(); + + GridGroupByField groupByField = new GridGroupByField(); + groupByField = new GridGroupByField(); + groupByField.FieldName = "Received"; + groupExpression.SelectFields.Add(groupByField); + + groupByField = new GridGroupByField(); + groupByField.FieldName = "Received"; + groupExpression.GroupByFields.Add(groupByField); + + RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression); + + + + Some of the GridGroupByField properties are meaningful only when present under + specific collection - or + + + Declarative GridGroupByField syntax + Programmatic GridGroupByField syntax + + + + The default format string for the field. + + + + + The default format string for the field. + + + + + Initializes a new instance of the GridGroupByField class. + + + + + Initializes a new instance of the GridGroupByField class with a name of a field. + + The name of a field from the data source. + + + + Initializes a new instance of the GridGroupByField class with a name of a field and its data type. + + + + + + + Generates a string value representing the alias of the field based on the . + + A string value representing the alias of the field. + + + + Method setting the aggregate function applied for a + GridGroupByField which is part of the + collection. + + N/A + + + Dim groupExpression As GridGroupByExpression = New GridGroupByExpression() + + Dim groupByField As GridGroupByField = New GridGroupByField() + groupByField.FieldName = "Size" + groupByField.SetAggregate(GridAggregateFunction.Sum) + groupExpression.SelectFields.Add(groupByField) + + groupByField = New GridGroupByField() + groupByField.FieldName = "Received" + groupExpression.SelectFields.Add(groupByField) + + groupByField = New GridGroupByField() + groupByField.FieldName = "Received" + groupExpression.GroupByFields.Add(groupByField) + + RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression) + + + GridGroupByExpression groupExpression = new GridGroupByExpression(); + + GridGroupByField groupByField = new GridGroupByField(); + groupByField.FieldName = "Size"; + groupByField.SetAggregate(GridAggregateFunction.Sum); + groupExpression.SelectFields.Add(groupByField); + + groupByField = new GridGroupByField(); + groupByField.FieldName = "Received"; + groupExpression.SelectFields.Add(groupByField); + + groupByField = new GridGroupByField(); + groupByField.FieldName = "Received"; + groupExpression.GroupByFields.Add(groupByField); + + RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression); + + + + Meaningful only for GridGroupByFields from the + collection + + + + + Method setting the sort order applied for a GridGroupByField which + is part of the collection. + + N/A + + Meaningful only for GridGroupByFields from the + collection + + + + GridGroupByExpression groupExpression = new GridGroupByExpression(); + + groupByField = new GridGroupByField(); + groupByField.FieldName = "Received"; + groupExpression.SelectFields.Add(groupByField); + + groupByField = new GridGroupByField(); + groupByField.FieldName = "Received"; + groupByField.SetSortOrder(GridSortOrder.Ascending); + groupExpression.GroupByFields.Add(groupByField); + + RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression); + + + Dim groupExpression As GridGroupByExpression = New GridGroupByExpression() + + Dim groupByField As GridGroupByField = New GridGroupByField() + + groupByField = New GridGroupByField() + groupByField.FieldName = "Received" + groupExpression.SelectFields.Add(groupByField) + + groupByField = New GridGroupByField() + groupByField.FieldName = "Received" + groupByField.SetSortOrder(GridSortOrder.Descending) + groupExpression.GroupByFields.Add(groupByField) + + RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression) + + + + + Inherited but not used + + + + Method which gets the HeaderText value from GridGroupByField part + of the collection + + String containing the HeaderText value + + Meaningful only for GridGroupByFields from the + collection + + + + Dim groupExpression As GridGroupByExpression = RadGrid1.MasterTableView.GroupByExpressions(0) + Dim headerText as String = groupExpression.SelectFields(0).GetHeaderText() + + + GridGroupByExpression groupExpression = RadGrid1.MasterTableView.GroupByExpressions[0] as GridGroupByExpression; + String headerText = groupExpression.SelectFields[0].GetHeaderText() + + + + + + Each can be referenced using and + This method checks whether the current 's or + match the given + + The name that is to be checked against. + true if the current field can be referred as , else otherwise + + + + + + + + + + + + + + + + + + + + + Method that retrieves a System.String that indicates the current + object + + The string format of the object. + + + Inherited but not used + + + + + + + + + + + + + + + + + Meaningful only for fields in the + collection. + + + Gets or sets aggregate function (from + enumeration values) that will be applied on the grouped data. + + + Returns the result from currently used aggregate function. This property defaults + to GridAggregateFunction.None + + + + GridGroupByField gridGroupByField; + + gridGroupByField = new GridGroupByField(); + gridGroupByField.FieldName = "Freight"; + gridGroupByField.HeaderText = "Total shipping cost is "; + gridGroupByField.Aggregate = GridAggregateFunction.Sum; + expression.SelectFields.Add( gridGroupByField ); + + + Dim gridGroupByField As GridGroupByField + + gridGroupByField = New GridGroupByField + gridGroupByField.FieldName = "Freight" + gridGroupByField.HeaderText = "Total shipping cost is " + gridGroupByField.Aggregate = GridAggregateFunction.Sum + expression.SelectFields.Add(gridGroupByField) + + + + + + Meaningful only for fields in the + collection. When rendering + RadGrid will override the FieldAlias value with the + HeaderText specified. + + + string, copied from the column's HeaderText if this group + expression is based on a column. It defaults to the FieldAlias value + (if specified). + + + Gets or sets the expression that will be displayed in the + . + + + + GridGroupByField gridGroupByField; + + gridGroupByField = new GridGroupByField(); + gridGroupByField.FieldName = "EmployeeID"; + gridGroupByField.HeaderText = "EmployeeNo"; + expression.SelectFields.Add( gridGroupByField ); + + + Dim gridGroupByField As GridGroupByField + + gridGroupByField = New GridGroupByField + gridGroupByField.FieldName = "EmployeeID" + gridGroupByField.HeaderText = "EmployeeNo" + expression.SelectFields.Add(gridGroupByField) + + + Programmatic GridGroupByField syntax + + + + + + + Gets or sets the name data source property or database column from a data source. + + + + + Gets or sets the data type of the field. + + + + + Gets or sets a value representing a friendly name for the field used for forming + the group by expression. This name will be displayed in each group header when grouping + by the respective field. + + + + Use this property for setting the field text that will be displayed in the + GridGroupHeaderItem. If this property is not set, the value of + property will be used. Note that this property has + a meaning only for GridGroupByField part of the SelectFields of + GridGroupByExpression. + + This property is useful in cases when: + + you want to change the value displayed in group header (different than + the default FieldName column value)
+ or
+ group by a template column and RadGridView cannot get the + header text for that column. +
+
+ + + GridGroupByField gridGroupByField; + + //Add select fields (before the "Group By" clause) + gridGroupByField = new GridGroupByField(); + gridGroupByField.FieldName = "EmployeeID"; + gridGroupByField.FieldAlias = "EmployeeIdentificator"; + expression.SelectFields.Add( gridGroupByField ); + + + Dim gridGroupByField As GridGroupByField + + 'Add select fields (before the "Group By" clause) + gridGroupByField = New GridGroupByField + gridGroupByField.FieldName = "EmployeeID" + gridGroupByField.FieldAlias = "EmployeeIdentificator" + expression.SelectFields.Add(gridGroupByField) + + + String representing the friendly name shown + Declarative GridGroupByField syntax + Programmatic GridGroupByField syntax +
+ + + Gets a value indicating whether the FormatString is set. + + + + + Meaningful only for fields in the + collection. + + + Gets or sets the value indicating how the data will be sorted. Acceptable values + are the values of enumeration (Ascending, + Descending and None). + + + Returns the sorting mode applied to the grouped data. By default it is + Ascending. + + + + GridGroupByField gridGroupByField; + + gridGroupByField = new GridGroupByField(); + gridGroupByField.FieldName = "EmployeeID"; + gridGroupByField.SortOrder = GridSortOrder.Descending; + expression.GroupByFields.Add( gridGroupByField ); + + + Dim gridGroupByField As GridGroupByField + + gridGroupByField = New GridGroupByField + gridGroupByField.FieldName = "EmployeeID" + gridGroupByField.SortOrder = GridSortOrder.Descending + expression.GroupByFields.Add(gridGroupByField) + + + + + + Gets or sets the instance of for this field. + + + + + Gets or sets an expression for this field. + + + + + Gets or sets a value to be stored in the data source if the control value is null or empty. + + + + + Gets or sets an object to be set as the control property when the data source contains a DBNull value. + + + + + Gets boolean value indicating whether FieldAlias is set. + When false, will return 'Aggregate of FieldName' if the + current group-by field is an aggregate, 'FieldName' otherwise. + + + + + Gets boolean value indicating whether HeaderText is set. + When false, will return + + + + + Gets boolean value indicating whether the current GridGroupByField is an aggregate. + + + + + Locates string with corresponding field name or alias + + + + The found, null otherwise. + + + + Indexes the of. + + Name of the field. + + + + + Determines whether [contains] [the specified field name]. + + Name of the field. + + true if [contains] [the specified field name]; otherwise, false. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + + + + + + Base hierarchy data provider + + + + + Creates the specified hierarchy data provider based on relation description. + + The relation. + + + + + Gets the child rows. + + The parent row. + The view. + + + + + Gets the parent. + + The grid view row info. + + + + + Refreshes this instance. + + + + + Gets the template. + + The template. + + + + Gets the relation. + + The relation. + + + + Gets a value indicating whether this instance is virtual and create ChildRows outside GridViewTemplate.Rows collection. + + + true if this instance is virtual; otherwise, false. + + + + + Gets the child rows. + + The parent row. + The view. + + + + + Refreshes this instance. + + + + + Gets the parent. + + The grid view row info. + + + + + Gets the relation. + + The relation. + + + + Gets a value indicating whether this instance is virtual and create ChildRows outside GridViewTemplate.Rows collection. + + + true if this instance is virtual; otherwise, false. + + + + + Represents a master-detail relation between two GridViewTemplates based on their column or field names. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + An instance of which is parent in the relation. + + + + Initializes a new instance of the class. + + The parent template. + The child template. + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Gets or sets the parent in the master-detail relation. + + + + + Gets or sets the child in the master-detail relation. + + + + + Gets or sets the name of the relation. + + + + + Gets or sets a containing the names of the columns in the master data source that takes part in the relation. + + + + + Gets or sets a containing the names of the columns in the datails data source that takes part in the relation. + + + + + Gets a value indicating whether this is self reference relation. + + + true if this relation is self reference; otherwise, false. + + + + + Gets a value indicating whether this instance is object relational. + + + true if this instance is object relational; otherwise, false. + + + + + Gets a value indicating whether this instance is valid. + + true if this instance is valid; otherwise, false. + + + + Adds the self reference. + + The template. + Name of the parent column. + Name of the child column. + + + + Adds the self reference to GridViewTemplate. + + The template. + The parent column names. + The child column names. + + + + Finds the specified relation. + + The parent. + The child. + + + + + Determines whether [contains] [the specified relation name]. + + Name of the relation. + + true if [contains] [the specified relation name]; otherwise, false. + + + + + Indexes the of. + + Name of the relation. + + + + + Gets the relation. + + The relation. + + + + + + + + + Resets this instance. + + + + + Gets a value indicating whether this instance is valid. + + true if this instance is valid; otherwise, false. + + + + Resets this instance. + + + + + Gets a value indicating whether this instance is valid. + + true if this instance is valid; otherwise, false. + + + + Gets the relation. + + The relation. + + + + This class represents a row that contains data in + + + + + Initializes a new instance of the . + + An instance of which the current row belongs to. + + + + Extends to listen to Items' PropertyChanged and CollectionChanged events. + + + + + + This component represents a customizable view template for displaying flat tabular data. + + + + + Sets the first page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Sets the last page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Moves to the page after the current page. + + + true if the operation was successful; otherwise, false. + + + + + Requests a page move to the page at the specified zero-based index. + + The zero-based index of the page to move to. + + true if the operation was successful; otherwise, false. + + + + + Moves to the page before the current page. + + + true if the operation was successful; otherwise, false. + + + + + Clears the Child templates, Relations, Columns, reset DataSource to null and AutoGenerateHierarchy property to its default value. + + + + + Copies the selected cells to the clipboard. + + The cells whos content will be copied to the clipboard. + The clipboard format. + Wheather cells values should be cut. + True if performing a cut operation, otherwise false. //This is needed as we copy data in several text formats but delete the actual cell value on the last iteration. + The final content to be put into the clipboard. + + + + Retrieves the formatted values that represent the contents of the selected + cells for copying to the System.Windows.Forms.Clipboard. + + + + + Moves the current selection in the to the Clipboard. + + + + + Copy the formatted values that represent the contents of the selected cells to the System.Windows.Forms.Clipboard. + + + + + Paste the contents of the System.Windows.Forms.Clipboard to the current view. + + + + + Gets the GridViewSynchronizationService instance, used to dispatch internal grid events. + + + + + Gets or sets a value indicating whether the RadGridView will automatically build hierarchy from DataSource. + + + + + Gets or sets the current row for the grid. + + + + + Gets or sets the current view. + + + + + Gets or sets a value indicating whether you have provided your own data-management operations for the RadGridView control. + + + + + Gets collection of GridViewRelation instances that represent the hierarchical structure. + + + + + Gets the collection of rows selected by the user. + + + + + Gets the collection of cells selected by the user. + + + + + Gets or sets a value indicating whether the user is allowed to select more than one cell, row, or column of the RadGridView at a time. + + + + + Gets or sets a value indicating how the cells of the RadGridView can be selected. + + + + + Gets or sets a value indicating whether RadGridView is in read only mode. + + + + + Gets the RadGridView control associated with this template. + + + + + Gets or sets a value indicating whether the data in the current DataView can be paginated. + + + + + Gets or sets the columns the cells of which will contain the self-reference expander items. + + + + + This flag is used internally to mark when the current position is changing. + + + + + Gets or sets a value indicating whether an exception will be thrown of one attemps to sort, filter or group in virtual mode. + + + + + Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change. + + true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false. + + + + Gets a value that indicates whether a page index change is in process. + + true if the page index is changing; otherwise, false. + + + + Gets the zero-based index of the current page. + + The zero-based index of the current page. + + + + Gets or sets the number of items to display on a page. + + The number of items to display on a page. + + + + Gets the total number of pages. + + + + + Gets or sets a value indicating whether paging is performed before grouping or vice versa. + + + true if paging is performed before grouping; otherwise, false. + + + + + Gets or sets a value indicating whether [add new bound row before edit]. + + + true if [add new bound row before edit]; otherwise, false. + + + + + Gets or sets a value that indicates whether users can cut cell text values + to the System.Windows.Forms.Clipboard and whether row and column header text is included. + + + + + Gets or sets a value that indicates whether users can copy cell text values + to the System.Windows.Forms.Clipboard and whether row and column header text is included. + + + + + Gets or sets a value that indicates whether users can paste Clipboard values + to the RadGridView control. + + + + + Represents a row containing child views in RadGridView. + + + + + Initializes a new instance of the . + + The , related with this row. + + + + Gets the current child + + + + + Gets all child objects. + + + + + Gets the hierarchy row that owns this details row. + + + + + Gets the actual height used in RadGridView to present this row. + + + + + Gets a boolean value which indicates whether the row is the last one in its owner collection. + + + + + Represents a filtering row in RadGridView. + + + + + Initializes a new instance of the . + + The , owner of this row. + + + + Gets the type of the for current GridViewFilteringRowInfo. + + + + + + Represents the group header row + + + + + Initializes a new instance of the GridViewGroupHeaderRowInfo class. + + The associated GridViewInfo, owner of this class + + + + + Gets the summary text for the row. + + The summary text. + + + + Gets or sets the group. + + The group. + + + + Gets the parent row for this row. + + + + + + Gets the hierarchy level of the group that owns this row + + + + + Gets the visual child rows. + + The visual child rows. + + + + Gets the top summary rows. + + The top summary rows. + + + + Gets the bottom summary rows. + + The bottom summary rows. + + + + Gets or sets text for the group row. + + + + + PinPosition property is not supported for GridViewGroupRowInfo. + + + + + IsPinned property is not supported for GridViewGroupRowInfo. + + + + + Updates the view. + + + + + Determines whether the row has child rows. + + + true if the row has child rows; otherwise, false. + + + + + Gets the level of the hierarchy + + + + + Gets or sets the active view. + + The active view. + + + + Gets the child row that is related with this row in a hierarchy + + + + + Gets the child rows. + + The child rows. + + + + Gets the parent row for this row. + + + + + + Gets the views. + + The views. + + + + Gets the type of the for current GridViewRowInfo. + + + + + + Represents a row that enables adding of new rows in RadGridView. + + + + + Initializes a new instance of the . + + An instance of which the current row belongs to. + + + + Starts the row adding process. + + + + + Finishes the adding of the new row. + + Returns true if successfull. + + + + Cancels the adding of the new row. + + + + + Represents a row containing summary information in RadGridView. + + + + + Initializes a new instance of the GridViewSummaryRowInfo. + + + + + Gets the summary text for the specified column. + + + + + Gets all summary values for the specified column. + + + + + Gets the GridViewSummaryRowItem related with this row. + + + + + Represents the grid's table header row + + + + + Initializes a new instance of the GridViewTableHeaderRowInfo class. + + The associated GridViewInfo, owner of this class + + + + Defines the position of pinned rows + + + + + Initializes a new instance of the GridSortField class with field name. + + The field name of the new GridSortField object. + + + + Initializes a new instance of the GridSortField class with field name, sort order and the default data type of string. + + The field name of the new GridSortField object. + The sort order of the new GridSortField object + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Clones this instance. + + + + + + Sorts the order as string. + + + + + + Sorts the order from string. + + The sort order. + + + + + Sorts the order as string. + + The sort order. + + + + + Gets or sets the name of the field. + + The name of the field. + + + + Gets or sets the sort order. + + The sort order. + + + + Gets a value indicating whether this instance is empty. + + true if this instance is empty; otherwise, false. + + + + + + + + + Represents a collection of GridSortField objects. + + + + + Initializes a new instance of the class. + + The owner. + + + + Adds the specified sort expression. + + The expression. + + + + Adds the specified field name. + + Name of the field. + The sort order. + + + Enumeration representing the order of sorting data in RadGrid + + + sorts grid data ascendingly + + + sorts grid data descendingly + + + does not sort the grid data + + + + Initializes a new instance of the class. + + Type of the sort changed. + + + + Initializes a new instance of the class. + + Type of the sort changed. + The sort expression. + + + + Initializes a new instance of the class. + + Type of the sort changed. + The sort expression. + The index. + + + + Initializes a new instance of the class. + + Type of the sort changed. + The sort expression. + The old index. + The new index. + + + + Initializes a new instance of the class. + + Type of the sort changed. + The old sort expression. + The new sort expression. + The index. + + + + Initializes a new instance of the class. + + Type of the sort changed. + The old sort expression. + The new sort expression. + The old index. + The new index. + + + + Gets the index. + + The index. + + + + Initializes a new instance of the class. + + Type of the sort change. + + + + Initializes a new instance of the class. + + Type of the sort change. + The sort expression. + + + + Initializes a new instance of the class. + + Type of the sort change. + The sort expression. + The index. + + + + Initializes a new instance of the class. + + Type of the sort change. + The sort expression. + The old index. + The new index. + + + + Initializes a new instance of the class. + + Type of the sort change. + The old sort expression. + The new sort expression. + The index. + + + + Initializes a new instance of the class. + + Type of the sort change. + The old sort expression. + The new sort expression. + The old index. + The new index. + + + + // Occurs before an item is added, removed, changed, moved, or the entire list is refreshed. + // + + The old index. + The new index. + // + + + + Begins the update. + + + + + Begins the item update. + + + + + Ends the item update. + + + + + Resumes event notification. + + + + + Resumes event notification. + + + + + Ends the update. + + + + + Gets the sort expression. + + The sort expression. + + + + Gets the is updated. + + The is updated. + + + + RadGridView is complex control that allows you to display and edit tabular data from many different kinds of data sources. + + + + + Initializes a new instance of the class. + + + + + Notifies that the control is about to be visualized. + + + + + + Disposes the grid. + + The disposing. + + + + Creates the child items. + + The parent. + + + + Creates the grid view element. + + + + + + Subscribe to events handling the basic features in RadGridView. + + + + + Unsubscribe from the handled events. + + + + + Evaluates the specified expression. + + The expression. + The rows. + + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Raises the event. + + The row that needs formatting. + A instance containing event data. + + + + + + Raises the event. + + The row that needs formatting. + A instance containing event data. + + + + + + Raises the event + + The cell that needs formatting. + A instance containing event data. + + + + + + Raises the event + + The grid cell that needs formatting. + A instance containing event data. + + + + + + Fires when an element for editing a cell is showing. + + The sender. + The instance containing the event data. + + + + Called when the cell begins editing. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The cell that is to be edited. + A instance containing event data. + + + + + + Called when the cell ends editing. + + The sender. + The instance containing the event data. + + + + Fires when the value of a cell changes. + + The sender. + The instance containing the event data. + + + + Fires before the value in a cell is changing. + + The sender. + The instance containing the event data. + + + + Raises the event. + + + An instance of containing event data. + + + + Raises the event. + + + An instance of containing event data. + + + + Raises the event. + + + + + Raises the event. + + + + + Called when the current cell is changed. + + The sender. + The instance containing the event data. + + + + Called when the current row is changed. + + The sender. + The instance containing the event data. + + + + Called when the current row is changing. + + The sender. + The instance containing the event data. + + + + Raises the event. + + + A that contains the event data. + + + + Fires when the current selection is changing. + + The sender. + The instance containing the event data. + + + + Fires when the current selection changes. + + The sender. + The instance containing the event data. + + + + Fires when the current page is changed. + + The sender. + The instance containing the event data. + + + + Fires when the current page is changing. + + The sender. + The instance containing the event data. + + + + Called when thecolumn chooser item element is creating. + + The sender. + The instance containing the event data. + + + + Fires when a new expression editor form is created. + + The sender. + The instance containing the event data. + + + + Called when the child view is expanded. + + The sender. + The instance containing the event data. + + + + Called when the child view is expanding. + + The sender. + The instance containing the event data. + + + + Fires when the DataGroup is expanded or collapsed. + + The sender. + The instance containing the event data. + + + + Fires when the DataGroup is expanding or collapsing. This behavior is valid when grouping or hierarchy mode is applied. + + The sender. + The instance containing the event data. + + + + Called when the row info is created. + + The sender. + The instance containing the event data. + + + + Fires the RowSourceNeeded event. + + The sender. + The instance containing the event data. + + + + Occurs when the user adding new row to the RadGridView. + + The sender. + The instance containing the event data. + + + + Occurs when the user has finished adding a row to the RadGridView. + + The sender. + The instance containing the event data. + + + + Occurs when the user deletes a row from the RadGridView. + + The sender. + The instance containing the event data. + + + + Occurs when the user has finished deleting a row from the RadGridView. + + The sender. + The instance containing the event data. + + + + Fires when an unbound cell requires a value for a cell in order to format and display the cell. + + The sender. + The instance containing the event data. + + + + Fires after the height of a row changes. + + The sender. + The instance containing the event data. + + + + Fires before the height of a row changes. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The row under the mouse pointer. + A instance containing event data. + + + + + Fires when the Rows collection of a GridViewTemplate changes. + + The sender. + The instance containing the event data. + + + + Fires before the Rows collection of a GridViewTemplate changes. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + + + Fires when the unbound cell requires a value for a cell in order to format and display the cell. + + The sender. + The instance containing the event data. + + + + Called when the row editing is canceled. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + + + Called when [cell click]. + + The sender. + The instance containing the event data. + + + + Called when the cell is double clicked. + + The sender. + The instance containing the event data. + + + + Raises the event + + + + + Called when the cell value is changed. + + The sender. + The instance containing the event data. + + + + Fires when a toggle state changed of RadCheckBoxElement in header cell. + + The sender. + The instance containing the event data. + + + + Called when the command cell is clicked. + + The sender. + The instance containing the event data. + + + + Called when the column width is changed. + + The sender. + The instance containing the event data. + + + + Called when the column width is changing. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Called when a data error occurs. + + The sender. + The instance containing the event data. + + + + Fires when the data group requires in virtual mode.. + + The sender. + The instance containing the event data. + + + + Fires when evaluation of group summary is undergoing. + + The sender. + The instance containing the event data. + + + + Called when the context menu is opening. + + The sender. + The instance containing the event data. + + + + Raises the event. + + + An instance that contains the event data. + + + + + + Raises the + event. + + An that contains the event data. + + + + Called when the filter is changing. + + The sender. + The instance containing the event data. + + + + Called when the filter expression is changed. + + The sender. + The instance containing the event data. + + + + Fires when the filter is changed. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Fires when sorting is changing. + + The sender. + The instance containing the event data. + + + + Fires when sorting is changed. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Fires when grouping is changing. + + The sender. + The instance containing the event data. + + + + Fires when grouping is changed. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Called when the hyperlink is opening. + + The sender. + The instance containing the event data. + + + + Fires when a link from a GridViewHyperlinkColumn is opened. + + The sender. + The instance containing the event data. + + + + Raises the event + + The grid cell that is painted. + A instance containing event data. + + + + + + Raises the event + + The grid cell that needs formatting. + A instance containing event data. + + + + + + Occurs for hierarchy rows with more than one child views. + + The print renderer that is currently printing the grid. + The + + + + Called when RadGridView has prepared appropriate data formats that represent the copy selection, added the copy selection formats to a DataObject, and is ready to either place the DataObject on the Clipboard. + + The sender. + The instance containing the event data. + + + + Occurs when the RadGridView is ready to paste data. + + The sender. + The instance containing the event data. + + + + Occurs when the RadGridView is ready to paste data to individual cells. + + The sender. + The instance containing the event data. + + + + Shows the for the columns of the master view template. + + + + + + + Shows the . + + The template which columns will be shown for. + + + + + + Hides the + + + + + + + Clears the current selection by unselecting all selected cells (rows). + + + + + Select all cells (rows) in RadGriView + + + + + Gets the displayed row count. + + The include partial row. + + + + + Gets the displayed column count. + + The include partial column. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + The mode. + + + + Gets whether the control defines the theme for the specific element. + + The element. + + + + + Suspends layout during initialization. + + + + + Resumes layout. + + + + + Determines whether an element may be edited via the EditUIElements dialog at design-time. + + + + + + + Creates a new accessibility object for the control. + + + A new for the + control. + + + + + Processes the coded UI message. + + The request. + + + + Processes Windows messages. + + The Windows to process. + + + + Puts the current cell in edit mode. + + Returns true if the process is successful. + + + + Commits any changes and ends the edit operation on the current cell. + + true on success. + + + + Close the currently active editor and discard changes. + + true on successful cancellation. + + + + Ends the edit operation without committing the changes + + true on success. + + + + Gets the default serialization info for RadGridView used by Save/Load layout methods to persist grid settings to/from XML. + + + You can use the serialization info to include/exclude properties of RadGridView and related objects from XML serialization. + Example:
+ ComponentXmlSerializationInfo serializationInfo = radGridView1. + info.SerializationMetadata.Add(); +
+ +
+ + + Creates the grid view layout serializer. + + The info. + + + + + Stores RadGridView properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadGridView properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + Writes the XML content in the stream and leaves the stream open. + + + + + Stores to a file RadGridView properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + + + Unbound load the IDatareader data and reset current DataSource for MasterTemplate + + + + + + Loads RadGridView properties, sub-objects and their properties from XML reader, using the serialization information provided by the property + + + + + Fires when the layout is loaded. + + The sender. + The instance containing the event data. + + + + Loads RadGridView properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + Loads RadGridView properties, sub-objects and their properties from XML stream, using the serialization information provided by the property + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the event. + + An that contains + the event data. + + + + Raises the + event. + + An that contains + the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Processes a dialog key. + + One of the values + that represents the key to process. + true if the key was processed by the control; otherwise, false. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Invalidates the multi selection. + + + + + Raises the event. + + A that + contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Determines whether the specified key data is input key. + + The key data. + + + + + Calls internally BeginUpdate. + + + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + + + + Directly prints the to the default printer. + + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + As instance of used to control the print process. + + + + Shows a for editing the print settings. + + + + + Shows a for editing the print settings. + + As instance of used to control the print process. + + + + This method is called every time new print procedure is initiated. + + The document that contains the printed graphics. + The print arguments. + The number of pages that will be required for the print of the control. + + + + This method is called when all pages have been printed. + + The document that contains the printed graphics. + The print arguments. + Always returns true. + + + + This method is called for every page that is printed. + + The number of the current page. + The document that contains the printed graphics. + The print arguments. + True if there are more pages to print. + + + + Gets the dialog containing settings for the print job. + + The document that contains the printed graphics. + A print settings dialog. + + + + Retrieves the formatted values that represent the contents of the selected + cells for copying to the System.Windows.Forms.Clipboard. + + + + + + Copy the formatted values that represent the contents of the selected cells to the System.Windows.Forms.Clipboard. + + + + + Paste the contents of the System.Windows.Forms.Clipboard to the current view. + + + + + Moves the current selection in the to the Clipboard. + + + + + Gets whether the grid is disposing. + + The is disposing. + + + + Gets or set the text of the grid title. + + + + + Gets or sets a value indicating the position of the title. + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets the default size of the control. + + The default of the control. + + + + + Gets or sets the position to place tabs for child views related with this template. + + + + + Gets or sets value indicating how user begins editing a cell. + + + + + Gets or sets value indicating whether hot tracking is enabled. + + + + + Gets the instance of . + This instance is wrapped by this control and the main element in the hierarchy tree and encapsulates the actual functionality of RadGridView. + + + + + + Gets the instance of + + + + + + Gets or sets a value indicating whether alternating row color is enabled. + + + + + Gets or sets a value specifying if the custom drawing (e.g. CellPaint and RowPaint) is enabled + + + + + Gets or sets value indicating whether the is visible. + + + + + Gets or sets a value indicating whether the selected item in the control + remains highlighted when the control loses focus. + + Returns: + true if the selected item does not appear highlighted when the control loses + focus; false if the selected item still appears highlighted when the control + loses focus. The default is true. + + + + + + Gets or sets the text to use when there is no data. + + + + + Gets or sets a value indicating whether to use dedicated vertical scrollbars in hierarchy. + + + + + Gets or sets a value indicating whether row height in a RataGridView + will expand for multiline cell text + + + + + Gets the currently active view in the RadGridView + + + + + Gets or sets the column chooser sort order. + + + The column chooser sort order. + + + + + Gets the current column chooser + + + + + Gets or sets the associated with the MasterTemplate. + + + + + Gets or sets a value indicating whether to show cell errors. + + + + + Gets or sets a value indicating whether to show row errors. + + + + + Gets an instance of or the instance that implements IContextMenuManager interface. + + + + + Gets or sets a value indicating how to split RadGridView. + + + + + Gets or sets whether when changing the current row in one split view the same row in the other split view will be brought into view. + + + + + Gets or set a value indicating the animation effect that will be used when expanding/collapsing groups. + + + + + Gets or sets a value indicating whether to show child view captions. + + + + + Gets or sets a value indicating whether the group panel will show scroll bars or it will expand to show all group headers. + + + + + RadGridView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadGridView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Gets or sets a value indicating whether columns are created automatically when the or properties are set. + + true if the columns should be created automatically; otherwise, false. The default is true. + + + + Sets or gets a value indicating the initial state of group rows when data is grouped. + + + + + + Indicates whether string comparisons of data are case-sensitive. + + + + + Gets or sets the display state of grid horizontal scrollbars. + + + + + Gets or sets the display state of grid vertical scrollbars. + + + + + Gets the collection containing summary rows placed at the bottom of each DataGroup. + + + + + Gets the collection containing summary rows placed on top of each DataGroup. + + + + + Gets or sets a value indicating whether user can drag a column header to grouping panel. + + + + + Gets or sets a value indicating whether user can reorder + Columns. + + + + + Gets or sets a value indicating whether user can resize a row. + + + This property does not prevent developer from setting + + + + + + Gets or sets a value indicating the location of the new row in the view template. + + + + + + Gets or sets a value indicating the location of the search row. + + + + + + Gets or sets a value indicating whether user can edit rows. + + + + + + + + Gets or sets a value indicating whether the ColumnInfo Chooser form is available to the user for this instance of . + + + + + + Gets or sets a value indicating whether the user is able to reorder rows in the grid + + + + + Gets or sets a value indicating whether context menu is displayed when user right clicks on a column header. + + + + + Gets or sets a value indicating whether context menu is displayed when user right clicks on a row header. + + + + + Gets or sets a value indicating whether user can resize columns. + + + This property does not prevent developer from setting + + + + + + Gets or sets a value indicating whether context menu is displayed when user right clicks on a data cell. + + + + + Gets or sets a value indicating whether user can automatically resize a column to fit its content by double-clicking the right border of header cell. + + + + + + + Gets or sets a value indicating whether user can delete rows. + + + + + + + + Gets or sets a value indicating whether the user can add new rows through the grid. + + + When set to true an empty row is added in which the user can enter data for the new record. + Set to false to hide the row. + The row position is controlled through + + + + + + + + Gets or sets a value indicating whether the user can search through the data of the grid. + + + When set to true a search row is added in which the user can enter search criteria. + Set to false to hide the row. + The row position is controlled through + + + + + + Gets or sets a value indicating whether the end-user can sort by more than one column. + + + + + Gets or sets a value indicating whether the columns by which the data is grouped are visible. + + + Set to false, and each column contained in the , will get hidden. + Set to true to see all columns. If some column is still not visible, check . + + + + + + Gets or sets a value indicating how column widths are determined. + + + + + + Gets or sets a value indicating how bottom pinned rows are laid out. + + + + + + Gets or sets a value indicating whether the row header column is visible. + + + + + Gets or sets a value indicating whether the column headers are visible. + + + + + Gets or sets a value indicating whether the filtering row should be visible. + + + + + Gets or sets a value indicating whether the header cell buttons are visible. + + + + + Gets the child templates of master template. + + The child templates of master template. + + + + Gets or sets value indicating whether users can sort data in master view template. + + + + + Gets or sets a value indicating whether the custom sorting functionality should be enabled. Use the event to apply the desired sorting. + + + + + Gets or sets value indicating whether users can group data in the master view template. + + + + + Gets or sets a value indicating whether the custom grouping functionality should be enabled. Use the event to group the data. + + + + + Gets or sets value indicating whether users can filter data in the master view template. + + + + + Gets or sets a value indicating whether the custom filtering functionality should be enabled. Use the event to apply the desired filters. + + + + + Gets or sets value indicating whether users can paginate data in the master view template. + + + + + Gets or sets value indicating the number of rows in the master view template when paging is enabled. + + + + + Gets or sets a value indicating whether you have provided your own data-management operations for the RadGridView control. + + The virtual mode. + + + + + + + + + + Gets or sets the current row of the currently active view containing the current cell. + + + + + Gets or sets the current column of the currently active view containing the current cell. + + + + + Gets the currently active cell in the grid. + + + + + Gets the row and column indexes of the currently active cell. + + + + + Gets the collection of rows selected by the user. + + + + + Gets the collection of cells selected by the user. + + + + + Gets a collection that contains the all rows in the . + + + + + Gets the columns. + + The columns. + + + + Gets a collection that contains the all groups in the . + + + + + Gets collection of instances that represent the hierarchical structure. + + + + + Gets the representing the top-most level + of the hierarchical data. + + + + + + Gets the top-most level of the grid. + + + + + + Gets the child rows. + + The child rows. + + + + Gets the filter descriptors of master template. + + The filter descriptors of master template. + + + + Gets the sort descriptors of master template. + + The sort descriptors. + + + + Gets the group descriptors of master template. + + The group descriptors of master template. + + + + Gets or sets the number of rows contained in the current . + + + + + Gets or sets the number of columns displayed. + + + + + Gets or sets a value indicating whether the RadGridView will automatically build hierarchy from DataSource. + + + + + Gets a value indicating whether the current row has changes that are not committed. + + true if the current row has changes that are not committed; otherwise, false. + + + + + + Gets or sets the print settings dialog factory. + + The print settings dialog factory. + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a value indicating how the cells of the RadGridView can be selected. + + + + + Gets or sets a value indicating whether the user is allowed to select more than one cell, row, or column of the RadGridView at a time. + + + + + Gets or sets a value indicating whether the user can edit the cells of the RadGridView control. + + + + + Gets or sets an instance of or the instance that implements IGridBehavior interface. + + + + + + + Gets an instance of or the instance that implements IGridNavigator interface. + + + + + + + Gets or sets a value indicating whether the active editor should be closed when validation process fails. + + + + + Gets or sets value indicating if fast scrolling mode is turned on. + + + + + Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order + rather than moving focus to the next cell in the control. + + + + + Gets or sets value indicating the behavior when the user presses Enter while adding new row. + + + + + Gets or sets value indicating the behavior when the user presses Enter while adding new row. + + + + + Gets an instance of GridViewEditManager that + defines how to initialize and create cells and editors. + + + + + Fires when a cell needs to be painted. + + + + + Fires when a row needs to be painted. + + + + + Fires when a ColumnChooserCreated is created. + + + + + Fires when a cell needs to be created. + + + + + Fires when a row needs to be created. + + + + Fires when a data row is invalidated and needs to be formatted. + + + void radGridView1_RowFormatting(object sender, RowFormattingEventArgs e) + { + if (e.RowElement.RowInfo.Cells.Count > 0 && (string)e.RowElement.RowInfo.Cells[0].Value == "3") + e.RowElement.Font = strikeoutFont; + else + e.RowElement.Font = SystemFonts.DialogFont; + } + + + + + + + Fires when a grid row is invalidated and needs to be formatted. + + + + + + Fires when the content of a data cell needs to be formatted for display. + + + + + + + Fires when the content of any grid cell needs to be formatted for display. + + + + + + + Fires after CellBeginEdit. + + + + Fires when the cell is entering edit mode. The action can be canceled. + + + Fires when an element for editing a cell is initialized and visible. + + + + + + Fires when the cell editing is finished. + + + + + Fires when the value of an editor changes. + + + + + Fires before the value in an editor is being changed. The action can be canceled. + + + + + Fires before a row is validated. + + + + + Fires when a row is validated. + + + + + Fires when Cell is validating. + + + + + Fires when a row has finished validating. + + + + + Fires after the current cell has changed. + + + + + Fires when current row is changed. + + + + + Fires when the current row is changing. The action can be canceled. + + + + + Fires when the current column has changed. + + + + + + + + + Fires when the current selection is changing. + + + + + Fires when the current selection is changed. + + + + + Fires after the current page has changed. + + + + + Fires when the current page is changing. + + + + + Fires when a new column chooser item element is being created. + + + + + Fires when a new expression editor form is created. + + + + + Fires when the child view is expanded or collapsed. + + + + + Fires when the child view is expanded or collapsed. + + + + + Fires when the DataGroup is expanded or collapsed. + + + + + Fires when the DataGroup is expanding or collapsing. This behavior is valid when grouping or hierarchy mode is applied. + + + + + Occurs when the instance of is created. + + + + + Provides data for the parent row in RadGridView Hierarchy Mode + + + + + Occurs when the user adding new row to the RadGridView + + + + + Occurs when the user has finished adding a row to the RadGridView + + + + + Occurs when the user deletes a row from the RadGridView. + + + + + Occurs when the user has finished deleting a row from the RadGridView. + + + + + Fires when an unbound cell requires a value for a cell in order to format and display the cell. + + + + + Fires after the height of a row changes. + + + + + Fires before the height of a row changes. + + + + + Fires when the mouse pointer moves over a row. + + + + + + + + Fires when the Rows collection of a GridViewTemplate changes. + + + + + Fires before the Rows collection of a GridViewTemplate changes. + + + + + Fires when the user enters the row for new records, so that it can be populated + with default values. + + + + + + + Fires when the unbound cell requires a value for a cell in order to format and display the cell. + + + + + + Fires when the unbound cell requires a value for a cell in order to format and display the cell. + + + + + Fires when the unbound cell requires a value for a cell in order to format and display the cell. + + + + + + + Fires when the unbound cell changed and requires storage in the underlying data source. + + + + + + + Fires when a cell is clicked. + + + + + Fires when a cell is double clicked. + + + + + Fires when the mouse pointer moves over the cell. + + + + + Fires when the value of a cell changes. + + + + + Fires when a toggle state changed of RadCheckBoxElement in header cell. + + + + + Fires when a command cell is clicked. + + + + + Fires when the width of a column changes. + + + + + Fires before the width of a column changes. + + + + + Fires when an external data-parsing or validation operation throws an exception, + or when an attempt to commit data to a data source fails. + + + + + Fires when the data group is required in virtual mode. + + + + + Fires when evaluation of group summary is undergoing. + + + Allows modification of the result by providing access to the currently + evaluated value and the data group. + + + + + Fires before a context menu is shown. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + + + Occurs when the filter is changing. + + + + + Occurs when the filter expression is changed. + + + + + Occurs when the filter is changed. + + + + + Fires for custom filtering operation. + + + + + Occurs when a filter popup is required. + + + + + Occurs when the filter popup has been initialized. + + + + + Occurs when a composite filter dialog is being created. + + + + + Fires when the sorting is changing. The action can be canceled. + + + + + Fires when the sorting is changed. + + + + + Fires for custom sorting operation. + + + + + Fires when grouping is changing. The action can be canceled. + + + + + Fires when grouping is changed. + + + + + Fires for custom grouping operation. + + + + + Fires when the current view in RadGridView has changed. + + + + + Occurs when the hyperlink is opening. + + + + + Occurs when the hyperlink is opened. + + + + + Fires when the content of any grid cell needs to be formatted for printing. + + + + + + + Fires when the content of any grid cell needs to be formatted for printing. + + + + + + + Fires for hierarchy rows with more than one child views. + + + + + Occurs when the RadGridView has prepared appropriate data formats that represent the copy selection, added the copy selection formats to a DataObject, and is ready to either place the DataObject on the Clipboard. + + + + + Occurs when the RadGridView is ready to paste data. + + + + + Occurs when the RadGridView prepares each cell's value to be placed on the Clipboard. + + + + + Occurs when the RadGridView is ready to paste data to individual cells. + + + + + Gets a value indicating whether the cell is in edit mode. + + + + + Gets the active editor + + + + + Gets the serialization info for RadGridView used by Save/Load layout methods to persist grid settings to/from XML. + By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Occurs when the layout is loaded. + + + + + Gets or sets a value indicating how the is printed. + + + + + + Gets or sets a value that indicates whether users can cut cell text values + to the System.Windows.Forms.Clipboard and whether row and column header text is included. + + + + + Gets or sets a value that indicates whether users can copy cell text values + to the System.Windows.Forms.Clipboard and whether row and column header text is included. + + + + + Gets or sets a value that indicates whether users can paste Clipboard values + to the RadGridView control. + + + + + Implements a list of IGridViewEventListener weak references, which is sorted by the Priority member of each listener instance. + + + + + This class is a message filter for RadGridView and handles mouse and keyboard events + + + + + This interface defines methods that can intercept the keyboard and mouse events from RadGridView. + + + + + Initializes the IGridBehavior with the specified RadGridViewElement + + The RadGridViewElement to associate with this object + + + + Occurs when the RadGridView is clicked. + + Type: System.EventArgs + Returns true if the event is processed + + + + Occurs when the RadGridView is double-clicked. + + Type: System.EventArgs + Returns true if the event is processed + + + + Processes key events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes key down events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes key up events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes key press events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer is over the RadGridView and a mouse button is pressed. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer is over the RadGridView and a mouse button is released. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the RadGridView is double clicked by the mouse. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer enters the RadGridView. + + Type: System.EventArgs + Returns true if the event is processed + + + + Occurs when the mouse pointer leaves the RadGridView. + + Type: System.EventArgs + Returns true if the event is processed + + + + Occurs when the mouse pointer is moved over the RadGridView. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse wheel moves while the RadGridView has focus. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the context menu of the RadGridView needs to be shown + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + The RadGridView associated with this navigator + + + + + The RadGridView associated with this navigator + + + + + Initializes the IGridBehavior with the specified RadGridViewElement + + The RadGridViewElement to associate with this object + + + + The RadGridView associated with this navigator + + + + + The RadGridView associated with this navigator + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Processes the key. + + The instance containing the event data. + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes key press events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the key up. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Occurs when the mouse pointer is over the RadGridView and a mouse button is pressed. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer is over the RadGridView and a mouse button is released. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Gets the grid table element at point. + + The point. + + + + + Initializes a new instance of the class. + + + + + Registers instance for specified row type + + A type inherited from . + An instance of . + + + + Unregisters instance for specified row type + + A type inherited from . + Returns true if succeed, otherwise false. + + + + Locks the specified behavior. + + The behavior. + + + + Unlocks the behavior. + + The behavior. + + + + Gets an instance of IGridBehavior for specified type. + + A type inherited from . + Returns an instance of IGridBehavior + + + + Gets the current row behavior. + + + + + + Gets the row behavior at point. + + The point. + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Initializes the IGridBehavior with the specified RadGridViewElement + + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Processes the key. + + The instance containing the event data. + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes the key up. + + The instance containing the event data. + + + + + Processes the key press. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Occurs when the mouse pointer leaves the RadGridView. + + Type: System.EventArgs + Returns true if the event is processed + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + + Processes the PageUp key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the PageDown key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Navigates to page. + + The row. + The keys. + + + + Gets the last scrollable row. + + The table element. + + + + + Gets the first scrollable row. + + The table element. + if set to true [check bounds]. + + + + + Performs application-defined tasks associated with freeing, releasing, + or resetting unmanaged resources. + + + + + Performs application-defined tasks associated with freeing, releasing, + or resetting unmanaged resources. + + The disposing. + + + + Gets or sets the original control cursor. + + The original cursor. + + + + Gets the locked behavior. + + The locked behavior. + + + + Gets the default row behavior. + + The default row behavior. + + + + Gets the cell at point. + + The cell at point. + + + + Gets the row at point. + + The row at point. + + + + The scroll reason type. + + + + + Represents grid data row behavior + + + + + Initializes a new instance of the class. + + + + + Occurs when the RadGridView is clicked. + + Type: System.EventArgs + Returns true if the event is processed + + + + Occurs when the RadGridView is double-clicked. + + Type: System.EventArgs + Returns true if the event is processed + + + + Processes key events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes keys that are not handled by ProcessKey methoes + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes key down events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes key up events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes key press events in RadGridView. + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the context menu of the RadGridView needs to be shown + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Escape key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Enter key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Space key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the F2 key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Up key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Down key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Left key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Right key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Tab key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Add key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Subtract key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Delete key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Home key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the End key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Insert key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the alpha-numeric keys + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the PageUp key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the PageDown key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer is over the RadGridView and the right mouse button is pressed. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer is over the RadGridView and the left mouse button is pressed. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Resizes the row. + + The current location. + + + + Shows the size NS cursort. + + The current location. + + + + + Determines whether this instance [can resize row] the specified current location. + + The current location. + The row element. + + true if this instance [can resize row] the specified current location; otherwise, false. + + + + + Resets the control cursor. + + + + + Gets the expander primitive. + + The point. + + + + + Gets the cell at point. + + The point. + + + + + Gets the row at point. + + The point. + + + + + Validates the on user input. + + The instance containing the event data. + + + + + Resets the field values. + + + + + + Selects the next control. + + if set to true [forward]. + + + + + Determines whether [is on first cell]. + + + true if [is on first cell]; otherwise, false. + + + + + Determines whether [is on last cell]. + + + true if [is on last cell]; otherwise, false. + + + + + Gets the mouse navigation context. + + The instance containing the event data. + + + + + Determines whether this instance [can enter edit mode] the specified row info. + + The row info. + + true if this instance [can enter edit mode] the specified row info; otherwise, false. + + + + + Gets the navigator. + + The navigator. + + + + Gets the 's editor manager. + + The editor manager. + + + + Gets the root template. + + The root template. + + + + Gets a value indicating whether this instance is pressed shift. + + + true if this instance is pressed shift; otherwise, false. + + + + + Gets a value indicating whether this instance is pressed control. + + + true if this instance is pressed control; otherwise, false. + + + + + Gets the begin edit mode. + + The begin edit mode. + + + + Gets a value indicating whether the grid is in edit mode. + + + true if this grid is in edit mode; otherwise, false. + + + + + Gets the root grid behavior. + + The root grid behavior. + + + + Gets the mouse down location. + + The mouse down location. + + + + Gets the row to resize. + + The row to resize. + + + + Gets the initial height of the row to resize. + + The initial height of the row to resize. + + + + Represents filter row grid behavior + + + + + Initializes a new instance of the class. + + + + + Occurs when the mouse pointer is over the RadGridView and the left mouse button is pressed. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Determines whether this instance [can enter edit mode] the specified row info. + + The row info. + + true if this instance [can enter edit mode] the specified row info; otherwise, false. + + + + + Represents grid group row behavior + + + + + Initializes a new instance of the class. + + + + + Processes the Enter key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Space key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Escape key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the F2 key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the alpha-numeric keys + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Tab key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Gets the group row. + + The group row. + + + + Represents grid header row behavior + + + + + Initializes a new instance of the class. + + + + + Gets a value indicating whether column resize operation is in action. + + + + + Gets or sets a value indicating how long for the cell edge will the resizing cursor appear. + + + + + Represents grid hierarchy row behavior + + + + + Initializes a new instance of the class. + + + + + Processes the Enter key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Represents grid new row behavior + + + + + Initializes a new instance of the class. + + + + + Processes the Escape key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Processes the Enter key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer is over the RadGridView and the left mouse button is pressed. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Occurs when the mouse pointer is over the RadGridView and the right mouse button is pressed. + + The MouseEventArgs containing data related to this event + Returns true if the event is processed + + + + Determines whether this instance [can enter edit mode] the specified row info. + + The row info. + + true if this instance [can enter edit mode] the specified row info; otherwise, false. + + + + + Contains information about the formatting properties to apply. + + + + + Creates a new instance of the BaseFormattingObject class. + + + + + Creates a new instance of the BaseFormattingObject class. + + Formatting object name. + Determines if the condition should be applied on a row. + + + + Evaluates the condition or expression of the formatting object. + + RadGridView row. + RadGridView column. + Returns true if the formatting object should apply. + + + + Checks whether a is equal by content. + + The to compare with. + true if the content is equal. + + + + Serves as a hash function for a particular type. + + A hash code for the current . + + + + Determines whether a non-default value is specified for the + + + + + + + Creates a new object that is a copy of the current instance. + + + + + + Copies the source's settings to this instance. + + + + + + Raises the PropertyChanging event. + + The property name. + true when the property value should be changed. + + + + Raises the PropertyChanged event. + + The property name. + + + + Returns whether the BaseFormattingObject equals the specified format. + + The format. + + + + + Gets or sets a value indicating what TextAlignment to apply + + + + + Determines what TextAlignment to apply to child cells when ApplyToRow is true. + + + + + Determines whether the condition is enabled (can be evaluated and applied). + + + + + Gets or sets a value indicating what ForeColor to apply on the cell + + + + + Gets or sets a value indicating what BackColor to apply on the cell + + + + + Gets or sets a value indicating what ForeColor to apply on the row + + + + + Gets or sets a value indicating what BackColor to apply on the row + + + + + Gets or sets a value indicating what Font to apply on the cell. + + + + + Gets or sets a value indicating what Font to apply on the row. + + + + + Gets or sets a value containing condition's name + + + + + Gets or sets a value indicating that the condition should be applied on a row + + + + + Gets or sets a value indicating whether the condition should be applied on selected rows. + + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Represents an element which supports conditional formatting. + Concrete implementors are GridDataRowElement and GridDataCellElement + + + + + Gets the instance which wraps the hierarchical structure of elements. + + + + + Sets the for this element. + + The for this element. + + + + Prepares the element for the formatting. + + + + + Gets the for this element. + + + + + Determines whether the this instance supports conditional formatting. + + + + + Contains the formatting properties to apply when some condition is met. (Used inside Conditional formatting form) + + + + + Initializes from the provided conditional format instance. + + + + + + Copies current settings to the provided conditional format instance. + + + + + + Gets or sets the alignment to be used for the cell values + + + + + Gets or sets the alignment to be used for the cell values + + + + + Determines whether case-sensitive comparisons will be made when evaluating string values. + + + + + Determines whether the condition is enabled (can be evaluated and applied). + + + + + Gets or sets the cell font. + + + + + Gets or sets the font for the entire row. + + + + + Gets or sets the foreground color to be used for the entire row + + + + + Gets or sets the background color to be used for the entire row + + + + + Gets or sets the foreground color to be used for the cell + + + + + Gets or sets the background color to be used for the cell + + + + + Determines whether to apply this condition on selected rows. + + + + + Displays a form used to manage conditional formatting objects + + + + + Initializes a new instance of the ConditionalFormattingForm class. + + + + + Initializes a new instance of the ConditionalFormattingForm class. + + the whose columns will be formatted. + + + + Initializes a new instance of the ConditionalFormattingForm class. + + the whose columns will be formatted. + An instance of + + + + Initializes a new instance of the ConditionalFormattingForm class. + + The whose columns will be formatted. + An instance of . + ThemeName of the form and its controls. + + + + Initializes a new instance of the ConditionalFormattingForm class. + + Owner control. + The whose columns will be formatted. + An instance of . + ThemeName of the form and its controls. + + + + Force edit of a specified column + + The GridViewColumn to edit + + + + Gets the column title. + + The column. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the whose columns will be formatted. + + + + + Gets the that is currently formatted. + + + + + Initializes a new instance of the ColumnFormattingInfo class + + + + + + + The GridViewColumn owner of the formatting info + + + + + The conditional formatting object associated with the column + + + + + Contains information about the condition and the formatting properties to apply. + + + + + Creates a new instance of the ConditionalFormattingObject class. + + + + + Initializes a new instance of the ConditionalFormattingObject class. + + Formatting object name. + The condition type. + Left value of the condition. + Right value of the condition. + Determines if the condition should be applied on a row. + + + + Evaluates the condition specified by this object against the actualValue. + + RadGridView row. + RadGridView column. + Returns true if the formatting object should apply. + + + + Creates a new object that is a copy of the current instance. + + + + + + Copies the source's settings to this instance. + + + + + + Gets or sets a value containing condition's type + + + + + Gets or sets a value containing condition's left value + + + + + Gets or sets a value containing condition's right value + + + + + Determines whether case-sensitive comparisons will be made when evaluating string values. + + + + + used internally by + + + + + Creates a new instance of the ParsableValueType class. + + + + + + + Gets the value contained in this object + + Indicates whether the value is parsed successfull. + The parsed value. + + + + Gets the value contained in this object + + The parsed value. + + + + Gets the string representation of the value. + + + + + Gets the desired type for conversion. + + + + + Extends to subscribe to Items' PropertyChanged and CollectionChanged events. + + + + + Defines the types of conditions used for conditional formatting + + + + + Contains information about the expression and the formatting properties to apply. + + + + + Creates a new instance of the ConditionalFormattingObject class. + + + + + Creates a new instance of the ConditionalFormattingObject class. + + Formatting object name. + The expression of the formatting object. + Determines if the condition should be applied on a row. + + + + Evaluates the expression of the formatting object. + + RadGridView row. + RadGridView column. + Returns true if the formatting object should apply. + + + + Creates a new object that is a copy of the current instance. + + + + + + Gets or sets the expression of the object. + + + + + Initializes a new instance of the RadMenuItem class. + + + + + Initializes a new instance of the RadMenuItem class using the displayed + text. + + + + + + Initializes a new instance of the RadMenuItem class using the displayed text. + + + + + + + Manages the context menus in GridVisualElement. + + + + + This interface provides methods for managing context menus in GridVisualElement. + + + + + Shows a context menu. + + The context menu provider. + Returns true if successful. + + + + Shows a context menu. + + The context menu provider. + The location in control's coordinates. + Returns true if successful. + + + + Hides the context menu. + + + + + + Gets the associated instance. + + + + + The current context menu + + + + + Initializes a new instance of the ColumnChooserForm class. + + The object, associated with this manager. + + + + Shows a context menu. + + The context menu provider. + The location in control's coordinates. + Returns true if successful. + + + + Shows a context menu. + + The context menu provider. + Returns true if successful. + + + + Hides the context menu. + + + + + Gets the associated instance. + + + + + The current context menu + + + + + Defines methods used to create context menu for a specified element + + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successfull. + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successfull. + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successfull. + + + + Gets or sets the context menu + + + + + Represents an auto-complete box editor in RadGridView. + + + + + Represents a textbox editor in RadGridView. + + + + + Abstract class that represents basic logic for grid editor + + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Validates the value currently entered in the editor. + + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Translates system key down events to the owner element. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Translates mouse wheel events to the owner element. + + A System.Windows.Forms.MouseEventArgs that contains the event data. + + + + Gets a value indicating that the editor should close when grid loses focus. + + + + + Gets a value indicating whether the cell should clear its text when adding an editor. + + + + + Gets the type of the editor value + + + + + Initializes a new instance of the class. + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Ends the edit operation. + + + + + + Creates a new editor element. + + a if successful + + + + Translates system key down events to the owner element. + + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets the text box. + + The text box. + + + + Gets or sets the value. + + The value. + + + + Gets the type of the editor value + + + + + + Gets or sets the null value for the editor. + + + + + Indicates if all characters should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets whether the editor accepts the Tab key in multiline mode + + + + + Gets or sets whether the editor accepts the Enter key in multiline mode + + + + + Initializes a new instance of the class. + + + + + Represents a browse editor in RadGridView. + + + + + Gets or sets the editor's value. + + + + + Represents a calculator editor in RadGridView. + + + + + Handles key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the editor's value. + + + + + Represents a checkbox editor in RadGridView. + + + + + Initializes a new instance of the RadCheckBoxEditor class. + + + + + Toggles the checkbox state. + + + + + Gets or sets a value indicating whether this is a three state checkbox. + + + + + Represents a checkbox element used in RadCheckBoxEditor + + + + + Initializes a new instance of the RadCheckBoxEditor class. + + A instance. + + + + Get the checkmark element. + + + + + Gets or sets the checkmark state. + + + + + Represents a color editor in RadGridView. + + + + + Gets or sets the editor's value. + + + + + Represents a DropDownList editor in RadGridView. + + + + + Initializes a new instance of the RadDropDownListEditor class. + + + + + Handles key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets a value specifying the style of the DropDownList. + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, veritcal or a combination of them. + + + + + Represents a date time editor in RadGridView. + + + + + Initializes a new instance of the RadDateTimeEditor class. + + + + + Handles key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Gets or sets the minimum date and time that can be selected in the editor. + + + + + Gets or sets the maximum date and time that can be selected in the editor. + + + + + Gets or sets the custom date/time format string. + + + + + Represents a spin editor in RadGridView. + + + + + Initializes a new instance of the GridSpinEditor class. + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the minimum value that could be set in the editor. + + + + + Gets or sets the maximum value that could be set in the editor. + + + + + Gets or sets the value which is added to/subtracted from the current value of the editor. + + + + + Gets or sets the number of decimal places to display in the editor. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the editor. + + + + + Gets or sets the type of the value to use in the editor. + + + + + Used to manage editors in GridVisualElement. + + + + + Initializes a new instance of the GridViewEditManager class. + + The , associated with this class. + + + + Puts the current cell in edit mode. + + Returns true if the process is successful. + + + + Commits any changes and ends the edit operation on the current cell. + + true on success. + + + + Ends the edit operation without committing the changes + + true on success. + + + + Close the currently active editor and discard changes. + + true on successful cancellation. + + + + Checks whether there is a permanent editor associated with the specified type. + + The type to check. + true if it exists permanent editor for the given type. + + + + Gets the default editor for the specified provider. + + The to get editor for. + An instance of if successful. + + + + Register a permanent editor for specific type. + + The type to register. + + + + Disposes all resources. + + + + + Initializes the editor. + + An instance of IInputEditor + + + + Finishes the editing process. + + + A value that indicates whether the operation should be canceled. + returns true if successful and the editor is closed. + + + + Gets the active editor + + + + + The instance of associated with this class. + + + + + Gets a value indicating whether the cell is in edit mode. + + + + + Gets or sets a value indicating whether the active editor should be closed when validation process fails. + + + + + Represents a masked editbox editor in RadGridView. + + + + + Initializes a new instance of the RadMaskedEditBoxEditor class. + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text. + + + + + Gets the instance of this editor. + + + + + Specifies how a user starts cell editing in the RadGridView control. + + + + + Editing begins when the cell receives focus. This mode is useful when pressing + the TAB key to enter values across a row, or when pressing the ENTER key to + enter values down a column. + + + + + Editing begins when any alphanumeric key is pressed while the cell has focus. + + + + + Editing begins when any alphanumeric key or F2 is pressed while the cell has focus (default value). + + + + + Editing begins when F2 is pressed while the cell has focus. This mode places the + selection point at the end of the cell contents. + + + + + Editing begins only when the RadGridView.BeginEdit(System.Boolean) method is called. + + + + + Represents a textbox editor in RadGridView. + + + + + Initializes a new instance of the RadTextBoxEditor class. + + + + + Creates a new editor element. + + a if successful + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Starts the editing process. Used internally in RadGridView. + + + + + Ends the edit operation. + + + + + + Translates system key down events to the owner element. + + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the value. + + The value. + + + + Gets or sets the null value for the editor. + + + + + Indicates if all characters should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets whether the editor accepts the tab key in multiline mode + + + + + Gets or sets whether the editor accepts the tab key in multiline mode + + + + + Gets the type of the editor value + + + + + + Gets a value indicating whether the editor value is modified. + + + + + + Gets a value indicating whether the cell should clear its text when adding an editor. + + + + + + Defines the allowed states of . + + + + + Indicates that the instance of does not have states + + + + + Indicates that the instance of can be current + + + + + Indicates that the instance of can be selected + + + + + Indicates that the instance of can be expanded + + + + + Indicates that the instance of have all applicable states + + + + + Describes the action that caused a CollectionChanged event. + + + + + The data source was reset + + + + + RowInfo is added to the data source + + + + + RowInfo is removed from the data source + + + + + The data source was sorted + + + + + The grouping was changed + + + + + The filtering was changed + + + + + A group expanded state was changed + + + + + A row contains data that was changed + + + + + Data in all visible rows needs to be updated + + + + + A row is moved + + + + + The number of rows in a virtualized grid has been changed + + + + + The cell state has been changed + + + + + Visual rows need to be updated (row is removed, added, or row position has been changed) + + + + + Visual rows layout has been changed + + + + + Visual rows layout has been changed + + + + + Grid theme has been chenaged + + + + + Cached current row is no longer valid + + + + + Child view columns has been changed + + + + + Current row has changed it's state + + + + + Resets the current view to the default one + + + + + The row height has been changed + + + + + The column width has been changed + + + + + Defines the selection modes of RadGridView. + + + + + Cells and rows do not indicate selection. + + + + + One or more individual cells can be selected. + + + + + The entire row will be selected by clicking its row's header or a cell contained in that row. + + + + + Enumeration of possible values for animation effects for expanding/collapsing grid rows + + + + + Specifies the behavior when the user presses Enter while adding new row. + + + + + Pressing Enter key saves the value in the cell and the cell remains selected. + + + + + Pressing Enter key saves the value in the cell moves focus to the next cell and opens its editor. + + + + + Pressing Enter key saves the value in the cell moves focus to the next row and opens editor of the cell bellow current. + + + + + Specifies the behavior when the user presses Enter while adding new row. + + + + + Pressing Enter key saves the value in the cell and the cell remains selected. + + + + + Pressing Enter key saves the value in the cell and moves focus to the next cell and opens its editor. + + + + + Pressing Enter key saves the value in the cell and moves focus to the next row. + + + + + Pressing Enter key saves the value in the cell and moves focus to the newly added row. + + + + + Defines the split modes used in RadGridView. + + + + + Default view, no split views. + + + + + Split views horizontally. + + + + + Split views vertically. + + + + + Provides data for the CellFormatting event + + + + + Initializes a new instance of the CellFormattingEventArgs class. + + The + + + + Gets the + + + + + Represents the method that will handle the CellFormatting events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CellFormattingEventArgs containing the data related with this event + + + + Represents the method that will handle the CellValidated event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CellValidatedEventArgs containing the row related with this event + + + + Provides data for the CellValidated event + + + + + Initializes a new instance of the CellValidatedEventArgs class. + + The that is validated. + The that is validated. + The cell value. + + + + Gets the cell value. + + + + + Represents the method that will handle the CellValidating event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CellValidatingEventArgs containing the row related with this event + + + + Provides data for the CellValidating event + + + + Provides data for and events. + 2 + + + + Initializes a new instance of the class. + + The related with the cell. + The related with the cell. + + + + + Gets the related with the cell. + + + + + Gets the related with the cell. + + + + + Gets the related with the cell. + + + + Gets a value indicating the column index of the cell that the event occurs for. + The index of the column containing the cell that the event occurs for. + 1 + + + Gets a value indicating the row index of the cell that the event occurs for. + The index of the row containing the cell that the event occurs for. + 1 + + + + Initializes a new instance of the CellValidatingEventArgs class. + + The that is validating. + The that is validating. + The cell value. + The old cell value. + The associated active editor + + + + Gets the cell value. + + + + + Gets the old cell value. + + + + + Provides data for the ColumnChooserCreated event + + + + + Represents the method that will handle the ColumnChooserCreated event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewColumnChooser which is created + + + + Represents the method that will handle the ContextMenuOpening events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of ContextMenuOpeningEventArgs containing the data related with this event + + + + Provides data for the ContextMenuOpening event + + + + + Initializes a new instance of the GridViewRowEventArgs class. + + the element for which the context menu will be open + the context menu which is associated with this provider + + + + Initializes a new instance of the GridViewRowEventArgs class. + + the element for which the context menu will be open + the context menu which is associated with this provider + a value indicating whether to cancel the event + + + + Gets or sets the context menu which is associated with this provider + + + + + Gets the element for which the context menu will be open + + + + + Represents the method that will handle the CurrentCellChanged events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of CurrentCellChangedEventArgs containing the data related with this event + + + + Provides data for the CurrentCellChanged event + + + + + Initializes a new instance of the CurrentCellChangedEventArgs class. + + + + + Gets the previous current cell. + + + + + Gets the new current cell. + + + + + Represents the method that will handle the RowMouseMove events of a RadGridView. + + + + + Represents the method that will handle the CellMouseMove events of a RadGridView. + + + + + Represents the method that will handle the CommandCellClick events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of EventArgs containing the data related with this event + + + + Represents the method that will handle the ToggleStateChanged events of embedded RadChechBoxElement in header Cell. + + + + + Represents the method that handles the EditorRequired cancelable event. + + The source of the event. + A EditorRequiredEventArgs that contains the event data. + + + + Provides information about the popup initialized on filter buton pressing. + + + + + Gets or sets the IRadFilterPopup instance. + + + + + Gets reference of column, for which the filter popup is initialized. + + + + + Represents the method that handles the FilterPopupInitialized event. + + The source of the event. + A FilterPopupInitializedEventArgs that contains the event data. + + + + Provides information about the type of the popup required on filter buton pressing + + + + + Gets or sets the IRadFilterPopup instance. + If a default popup is provided by the RadGridView, it is available for post-initialization + or substitution. + + + + + Gets reference of column, for which the filter popup is initialized. + + + + + Represents the method that handles the FilterPopupRequired event. + + The source of the event. + A FilterPopupRequiredEventArgs that contains the event data. + + + + Provides data for the ToolTipTextNeeded event used with GridTableElement + + + + + Initializes a new instance of the GridElementToolTipTextNeededEventArgs class. + + The tool tip that will be shown. + The row index of the first visible row. that is + The first visible + The default tooltip text + + + + Gets the row index of the first visible row. + + + + + Gets the first visible . + + + + + Represents the method that will handle the cell related events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCellCancelEventArgs containing the data related with this event + + + Represents the method that will handle events related to cell and row operations. + 2 + + + Provides data for events related to cell and row operations. + 2 + + + + Gets the related with the cell. + + + + + Gets the cell value. + + + + + Provides data for the CellPaint event + + + + + Gets the Cell Element to be painted + + + + + Gets the Graphics object used to draw + + + + + Initializes a new instance of the GridViewCellPaintEventArgs class. + + The cell element to be painted + The Graphics object used to paint the cell + + + + Represents the method that will handle the CellPaint events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewRowPaintEventArgs containing the row related with this event + + + + Provides data for the CreateCell event + + + + + Initializes a new instance of the GridViewCreateCellEventArgs class. + + The GridRowElement that will contian the newly created cell + The specified GridViewColumn + The default cell type that will be used + + + + Gets ot sets the type of the GridCellElement that will be created for the specified row and column + + + + + Gets the GridRowElement that will contain the newly created cell + + + + + Gets the specified GridViewColumn + + + + + Gets or sets the cell instance that will be added to grid row. + + + + + Represents the method that will handle the CreateCell event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCreateCellEventArgs containing the row related with this event + + + + Provides data for the CreateCell event + + + + + Initializes a new instance of the GridViewCreateCellEventArgs class. + + The GridRowElement that will contian the newly created cell + The default row type that will be used + + + + Gets the GridViewRowInfo that needs to be associated + + + + + Gets or sets the row instance that will be added to grid row. + + + + + Gets ot sets the type of the GridRowElement that will be created for the specified row and column + + + + + Represents the method that will handle the CreateCell event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCreateRowEventArgs containing the row related with this event + + + + Provides data for the CurrentViewChanged event + + + + + Initializes a new instance of the GridViewCreateCellEventArgs class. + + The GridViewInfo that is currently active. + The GridViewInfo that will become active. + + + + Gets the old current view. + + + + + Gets the new current view. + + + + + Represents the method that will handle the CurrentViewChanged event of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCurrentViewChangedEventArgs containing the row related with this event + + + + Provides data for the RowPaint event + + + + + Gets the RowInfo Element to be painted + + + + + Gets the Graphics object used to draw + + + + + Initializes a new instance of the GridViewRowPaintEventArgs class. + + The row element to be painted + The Graphics object used to paint the cell + + + + Represents the method that will handle the RowPaint events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewRowPaintEventArgs containing the row related with this event + + + + Represents the method that will handle the cell related events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of GridViewCellCancelEventArgs containing the data related with this event + + + Provides data for and events. + 2 + + + + Initializes a new instance of the class. + + The related with the cell. + The related with the cell. + + + + This values should be used when users use the Lasso selection and selection mode is CellSelection + + + + + This values should be used when users use the Lasso selection and selection mode is CellSelection + + + + + Gets the related with the cell. + + + + + Gets the related with the cell. + + + + Gets a value indicating the column index of the cell that the event occurs for. + The index of the column containing the cell that the event occurs for. + 1 + + + + Represents the method that will handle the HyperlinkOpened events of RadGridView. + + The event sender. + Instance of HyperlinkOpenedEventArgs. + + + + Provides data for the HyperlinkOpened event. + + + + + Gets the hyperlink. + + + + + Initializes a new instance of the HyperlinkOpenedEventArgs class. + + The hyperlink. + The row which contains the hyperlink. + The column which contains the hyperlink. + Any error occured while trying to open a hyperlink. + + + + Gets the related with the cell. + + + + + Gets the related with the cell. + + + + + Gets the related to with this hyperlink belongs. + + + + + Represents the method that will handle the HyperlinkOpening events of RadGridView. + + The event sender. + Instance of HyperlinkOpeningEventArgs. + + + + Provides data for the HyperlinkOpening event. + + + + + Gets the hyperlink. + + + + + Initializes a new instance of the HyperlinkOpeningEventArgs class. + + The hyperlink. + The row which contains the hyperlink. + The column which contains the hyperlink. + + + + Gets the related with the cell. + + + + + Gets the related with the cell. + + + + + Gets the related to with this hyperlink belongs. + + + + + Provides data for the RowFormatting event + + + + + Initializes a new instance of the RowFormattingEventArgs class. + + The + + + + Gets the + + + + + Represents the method that will handle the RowFormatting events of a RadGridView. + + The event sender, typicaly this is RadGridView + Instance of RowFormattingEventArgs containing the data related with this event + + + + Represents the method that will handle RowHeightChanged events of a RadGridView. + + + + + Event Arguments for RowHeightChanged event. + + + + + Initializes a new instance of the RowHeightChangedEventArgs class. + + The + + + + Gets the GridViewRowInfo having the new height. + + + + + Represents the method that will handle RowHeightChanging events of RadGridView. + + + + + Event arguments for RowHeightChanging event. + + + + + Initializes a new instance of the RowHeightChangingEventArgs class. + + The to resize. + The new row height. + + + + Initializes a new instance of the RowHeightChangingEventArgs class. + + The to resize. + The new row height. + a value indicating whether to cancel the event + + + + Gets the to resize. + + + + + Gets the new row height. + + + + + Initializes a new instance of the class. + + The referenced column. + + + + Initializes a new instance of the class. + + The formatting object. + The template. + + + + Shows expression builder for specified column + + Referenced RadGridView + + + + + Shows expression builder for specified column + + Referenced RadGridView + + + + + + Shows expression builder for specified formatting object. + + Referenced RadGridView. + Referenced formatting object. + The form to be shown. + Instance of the form. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Set the theme name, which should be applied to the expression builder + + + + + Displays a form used to crate custom filters. + + + + + Represents a base class for custom filtering dialog. All inheritors should + + + + + Initializes the editors in the dialog with the filter descriptor that is correctly applied to the RadGridView data. + + The column which represents the property by which data will be filtered + The filter descriptor that is currently applied to the grid for this column. + Determines whether type specific editors should be used e.g. RadSpinEditor for numeric properties. + + + + Gets the filter descriptor that should be applied to the RadGridView data. + + + + + Initializes a new instance of the CompositeFilterForm class. + + + + + Initializes a new instance of the CompositeFilterForm class. + + The , owner of this form. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the instance, used to build the filter expression. + + The data filter. + + + + Gets or sets the filter descriptor. + + The filter descriptor. + + + + Gets the column's data type + + The type of the column's data type. + + + + Displays a form used to crate custom filters. + + + + + Initializes a new instance of the CompositeFilterForm class. + + + + + Initializes a new instance of the CompositeFilterForm class. + + The , owner of this form. + + + + + Gets the selected value form editor. + + RadControl editor + return exception if parse is not successful + Value from the editor + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the logical operator + + The logical operator. + + + + Gets the combo box of left operator. + + The combo box left operator. + + + + Gets the combo box of right operator. + + The combo box right operator. + + + + Gets the left operator editor. + + + + + Gets the right operator editor. + + + + + Gets or sets the filter descriptor. + + The filter descriptor. + + + + Gets or sets the left descriptor. + + The left descriptor. + + + + Gets or sets the right descriptor. + + The right descriptor. + + + + Gets the column's data type + + The type of the column's data type. + + + + Represents a base class for sizable pop-up. + + + + + Creates the filter descriptor. + + The filter operator. + + + + + Edits the filter descriptor. + + The menu item. + + + + Creates the composite filter form + + An instance of . + + + + Gets the composite filter descriptor. + + Type of the desired. + The current descriptor. + + + + + Gets the distinct values table. + + + + + + Gets the filter descriptor. + + + + + + Sets the filter operator. + + The filter operator. + + + + Validates the user filter. + + The descriptor. + + + + + Sets the theme. + + Name of the theme. + + + + Gets or sets the data column. + + The data column. + + + + Gets or sets the filter descriptor. + + The filter descriptor. + + + + Occurs when the filter is confirmed. + + + + + Clears all customizable date select menu items. + + + + + Add customizable date select menu item. + + Menu item text to display + FilterDescriptor to apply on item click. + + + + Remove customizable date select menu item on specified position. + + Relative position + + + + Set popup theme. + + Theme name to set. + + + + Gets the menu item that holds the calendar. + + + + + Gets the menu item that holds the OK and Cancel buttons. + + + + + Initializes a new instance of the class. + + The data column. + + + + Processes the key. + + The instance containing the event data. + + + + Initializes the elements. + + + + + Creates the general menu items. + + + + + Creates the value list element. + + + + + Sets the list selection. + + + + + Fires when the popup is opened. + + + + + Determines whether the MouseWheel event is handled by the popup. + + + + + + + + The List is scrolled with the specified delta. + + The delta. + + + + Raises the + event. + + An that contains the event data. + + + + Sets the theme. + + Name of the theme. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Called when a filter menu item is clicked. + + The sender. + The instance containing the event data. + + + + Releases the unmanaged resources used by the + and its child controls and optionally releases the managed resources. + + true to release both managed and unmanaged resources; + false to release only unmanaged resources. + + + + Gets the menu item that holds the list control + + + + + Gets whether the popup is opened. + + True if the popup is opened. + + + + Initializes the view with an instance of the . + + An instance of . + An instance of . + + + + Dataches the view from its owner. + + + + + Explicitly synchonizes the view with its owner. + + + + + Gets or the RadGridViewElement that owns this view. + + + + + Gets the GridViewInfo that this view represents. + + + + + Initializes the fields of the current instance. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the buttons strip element child elements. + + + + + Creates the text box strip element child elements. + + + + + Wires the buttons and text box events. + + + + + Unwires the buttons and text box events. + + + + + Disposes the managed resources of this instance. + + + + + Updates the visibility of the paging panel. + + + + + Updates the buttons strip element. Called when an update notification arrives. + + + + + Updates the text box strip element. Called when an update notification arrives. + + + + + Raises the standard .NET PropertyChanged event. + + + + + + Initializes the view with an instance of the . + + An instance of . + An instance of . + + + + Detaches the view from its owner. + + + + + Explicitly synchronizes the view with its owner. + + + + + Allows previewing of an event that is about to be dispatched. + + + + + + + Core entry point for receiving and processing an event. + + + + + + + Allows additional processing of an event that has been just dispatched. + + + + + + + Allows a listener to examine events queue and optionally to remove/add events. + + + + True if the listener has actually modified the queue, false otherwise. + + + + + Gets or sets the number of buttons with numbers in the paging panel. + + + + + Gets or sets the image of the button that navigates to the first page. + + + The first page button image. + + + + + Gets or sets the image of the button that navigates to the previous page. + + + The previous page button image. + + + + + Gets or sets the image of the button that navigates next page. + + + The next page button image. + + + + + Gets or sets the image of the button that navigates to the last page. + + + The last page button image. + + + + + Gets the command bar element. + + + The command bar. + + + + + Gets the command bar row element. + + + The command bar row element. + + + + + Gets the buttons strip element. + + + The buttons strip element. + + + + + Gets the button that navigates to the first page. + + + The first button. + + + + + Gets the button that navigates to the previous page. + + + The previous button. + + + + + Gets the button that navigates fast in the backward direction. + + + The fast back button. + + + + + Gets the button that navigates fast in the forward direction. + + + The fast forward button. + + + + + Gets the button that navigates to the next page. + + + The next button. + + + + + Gets the button that navigates to the last page. + + + The last button. + + + + + Gets the text box strip element. + + + The text box strip element. + + + + + Gets the label that shows the "Page" text. + + + The page label. + + + + + Gets the text box that shows the current page. + + + The page number text box. + + + + + Gets the label that shows the "of" text. + + + The of pages label. + + + + + Gets the label that shows the total number of pages. + + + The number of pages label. + + + + + Gets or sets whether the button that navigates to the first page is visible. + + + true if the button that navigates to the first page is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates to the previous page is visible. + + + true if the button that navigates to the previous page is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates fast backward is visible. + + + true if the button that navigates fast backward is visible; otherwise, false. + + + + + Gets or sets whether the buttons that navigate to a concrete page are visible. + + + true if the buttons that navigate to a concrete page are visible; otherwise, false. + + + + + Gets or sets whether the button that navigates fast forward is visible. + + + true if the button that navigates fast forward is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates to the next page is visible. + + + true if the button that navigates to the next page is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates to the last page is visible. + + + true if the button that navigates to the last page is visible; otherwise, false. + + + + + Gets or sets whether the strip element holding the page navigation buttons is visible. + + + true if the strip element holding the page navigation buttons is visible; otherwise, false. + + + + + Gets or sets whether the strip element holding the page navigation text box is visible. + + + true if the strip element holding the page navigation text box is visible; otherwise, false. + + + + + Gets or the RadGridViewElement that owns this view. + + + + + Gets the GridViewInfo that this view represents. + + + + + Gets the event type(s) this listener needs to process. + + + + + Gets the priority of the current instance. + + + + + Gets the event process mode for this instance. + + + + + Cell which is used in a browse column. + + + + + This is the base class for all data bound cells in RadGridView + + + + + Represents the base class for all cells in . + + + + + Initializes a new instance of the class. + + An instance of . + An instance of . + + + + Determines if the cell can BestFit for the specified column BestFit mode. + + + + + Initializes the cell with specified column and row + + An instance of . + An instance of . + + + + Updates the visual state of the cell. + + + + + Sets the value of the cell. + + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successful. + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successful. + + + + Updates the visual state of the cell. + + + + + Sets the actual text of the cell. + + + + + Applies the format string to the specified object. + + + + + + + Gets or sets a value indicating whether the cell is the current in the grid. + + + + + Gets or sets a value indicating whether the cell belongs to the current in the grid. + + + + + Gets or sets a value indicating whether the cell belongs to the current in the grid. + + + + + Gets or sets a value indicating whether the containing this cell is sorted. + + + + + Gets or sets a value indicating whether the containing this cell is hovered. + + + + + Gets or sets a value indicating whether the cell is pinned. + + + + + Gets or sets a value indicating whether the cell is selected. + + + + + Gets or sets a value indicating whether the cell belongs to an odd row. + + + + + Gets or sets the pin position for the row. When the column is pinned, it cannot be moved from its location when a user scrolls horizontally. + + + + + Gets or sets the format string to be used for the cell's value. + + + + + Gets the which the cell belongs to. + + + + + + + + Gets the which the cell belongs to. + + + + + + + + + + + Gets the root template element + + + + + Returns the index of the cell in the . + + + + + Returns the index of the in the columns collection. + + + + + Gets or sets the value represented by this cell. + + + + + Gets or sets the context associated with the cell. + + + + + Binds the column properties. + + + + + Unbinds the column properties. + + + + + Occurs when some column property changes its value. + + An instance of RadPropertyChangedEventArgs + + + + Binds the row properties. + + + + + Unbinds the row properties. + + + + + Occurs when some row property changes its value. + + An instance of RadPropertyChangedEventArgs + + + + Gets or set a value that determine that this cell can start row reordering + + + + + Initializes a new instance of the class. + + + + + Determines if the cell can BestFit for the specified column BestFit mode. + + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successful. + + + + Gets the editor element associated with this cell element. + + The editor which element we search. + An instance of RadItem that represents the editor element. Null if there is no editor element. + + + + Sets the position of the cell content in accordance with the . + + + + + Prepares the element for the formatting. + + + + + + Applies the format string to the specified object. + + + + + + + Gets or sets a value indicating whether this is the first data cell in the row. + + + + + Gets or sets a value indicating whether this is the first data cell in the row. + + + + + Gets a value indicating where the current cell is in edit mode. + + + + + Gets or sets the value represented by this cell. + + + + + Determines whether the this instance supports conditional formatting. + + + + + + Gets a value indicating that cell's value is invalid + + + + + Gets a value that indicates self-referencing expander element associated with the cell. + + + + + Gets the self reference layout instance when + the is bound to self-reference data source + + The self reference layout. + + + + Gets the data column info. + + The data column info. + + + + Initializes a new instance of the class. + + An instance of . + An instance of . + + + + Cell which is used in a calculator column. + + + + + Initializes a new instance of the class. + + An instance of . + An instance of . + + + + Represents the header cell with embedded CheckBox element. + + + + + Represents the header cell in RadGridView + + + + + Initializes a new instance of the class. + + + + + Creates the composite filter form + + An instance of . + + + + Determines if the cell can BestFit for the specified column BestFit mode. + + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successfull. + + + + Creates the column pinning menu items. + + The context menu. + + + + Creates the conditional formatting form. + + + + + + Pins the column. + + The position. + + + + Gets or sets a value indicating the sort order of data in the column. + + + + + Gets the filter button for the cell. + + + + + Gets the arrow indicating the sort order of the cell. + + + + + Defines the arrow position in the GridHeaderCellElement + + + + + Left arrow position + + + + + Right arrow position + + + + + Top arrow position + + + + + Bottom arrow position + + + + + Updates the information core. + + + + + Returns the check box element in the cell. + + + + + Cell for displaying and editing colors. + + + + + Initializes a new instance of the class. + + An instance of . + An instance of . + + + + Represents a filter cell in RadGridView + + + + + Initializes a new instance of the class. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Determines whether the specified cell is compatible with concrete column. + + The column. + The context. + + true if the specified column is compatible; otherwise, false. + + + + + Occurs when some column property changes its value. + + An instance of RadPropertyChangedEventArgs + + + + Updates filter cell items visibility. + + if set to true [enabled]. + + + + Updates the filter button visibility. + + if set to true [enabled]. + + + + Sets the actual text of the cell. + + + + + Sets the filter operator. + + The filter operator. + + + + Edits the filter descriptor. + + The menu item. + + + + Creates the composite filter form + + An instance of . + + + + Validates a descriptor set by the user. + + the descriptor to validate. + true if successful. + + + + Sets the filter descriptor. + + The descriptor. + + + + Removes the filter descriptor. + + [TRUE] if succeed, otherwise [FALSE] + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Creates the filter menu. + + Type of the data. + + + + + Determines if the cell can BestFit for the specified column BestFit mode. + + + + + Gets the filter button for the cell. + + + + + Gets the filter operator for the cell. + + + + + Gets or sets the spacing between elements in filter cell + + + + + Gets a value indicating whether this instance is editable. + + + true if this instance is editable; otherwise, false. + + + + + Gets a value indicating whether [supports conditional formatting]. + + + true if [supports conditional formatting]; otherwise, false. + + + + + Get or set the filter cell value + + + + + Gets or sets the filter descriptor associated with this cell + + The filter descriptor. + + + + Gets the filtering row info. + + The filtering row info. + + + + Initializes a new instance of the class. + + + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Disposes the managed resources. + + + + + Initializes the fields. + + + + + Handles the ValueChanged event of the rating control. + + The source of the event. + The instance containing the event data. + + + + Occurs when some column property changes its value. + + An instance of RadPropertyChangedEventArgs + + + + Attaches the specified data. + + The data. + The context. + + + + Updates the information core. + + + + + Sets the actual text of the cell. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets a value indicating whether the cell is editable. + + + true if [is editable]; otherwise, false. + + + + + Gets the rating element. + + + The rating. + + + + + Initializes a new instance of the class. + + An instance of . + An instance of . + + + + Docks the search info label on the left or right side of the search text box depending on the RightToLeft state. + + + + + Gets the search info label. + + + + + Represents the base class for all rows in . + + + + + Initializes the row. + + The instance of which the row is associated with. + + + + Initializes the row view. + + The instance of which the row is associated with. + + + + Updates row's visual state. + + + + + Updates cell layout + + + + + Updates cell content. + + + + + Occurs when some row property changes its value. + + An instance of RadPropertyChangedEventArgs + + + + Occurs when some template property changes its value + + An instance of PropertyChangedEventArgs + + + + Applies custom formatting to the row. + + + + + Gets the VisualStyleElement which describes the appearance in Windows Vista. + + + + + + Creates a based on the settings of the corresponding . + + The that contains the settings. + An instance of or null. + + + + Returns the default cell type to be created based on the settings of the corresponding . + + The that contains the settings. + An column type. + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successful. + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successful. + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successful. + + + + Gets or sets a value indicating whether the hot tracking behavior is enabled. + + + + + Gets or sets a value indicating whether the hot tracking behavior is enabled. + + + + + Gets or sets a value indicating the color of row's horizontal border. + + + + + Gets or sets the color of row's vertical border. + + + + + Gets or sets a value indicating that the row's border is drawn over the cells. + + + + + Gets or sets a value indicating whether the row is the current in the . + + + + + Gets or sets a value indicating whether the row has odd position. + + + + + Gets or sets a value indicating the row visual state. + + + + + Gets or sets a value indicating whether the row is selected. + + + + + Gets or sets a value indicating whether the row contains the current cell. + + + + + Gets or sets a value indicating whether the row contains selected cells. + + + + + Gets the corresponding instance of this row element. + + + + + + + + + + + Gets the root template element + + + + + Gets a value indicating whether the conditional formatting can be applied to the row. + + + + + Gets a value indicating whether alternating row color can be applied to the row. + + + + + Gets or sets the context menu + + + + + Gets a value indicating that conditional formatting can be applied + + + + + This interface defines methods to manage the row layout in . + + + + + Initializes the IGridRowLayout with the specified table element. + + The to associate with this object + + + + Measures the space required by the cells. + + The size that is available for grid rows. + The size required by the row element. + + + + Arranges the cells in the row. + + The size that is available for the specified row. + The to arrange. + The arranged rectangle. + + + + Starts resizing of a column from the UI + + The to resize + + + + Finishes the resizing of a column + + + + + Changes the size of an already choosen column by using the specified delta + + + + + + Invalidates the RenderColumns collection + + + + + Invalidates the row layout + + + + + Determines the actual row height. + + The desired . + The actual row height, if successfull. + + + + Measures the pinned columns. + + The data provider. + + + + + Ensures that the row layout is calculated + + + + + Gets or sets the GridViewTemplate that owns this view definition. + + + + + Gets the desired row size. + + + + + Gets the desired row size for group rows. + + + + + Gets the render columns. + + + + + Gets the scrollable columns + + + + + Gets the first data column. + + + + + Gets the last data column. + + + + + Gets the actual column width + + An instance of . + The actual column width, when successfull. + + + + Initializes the IGridRowLayout with the specified table element. + + The to associate with this object + + + + Measures the space required by the cells. + + The size that is available for grid rows. + The size required by the row element. + + + + Arranges the cells in the row. + + The size that is available for the specified row. + The to arrange. + The arranged rectangle. + + + + Starts resizing of a column from the UI + + The to resize + + + + Finishes the resizing of a column + + + + + Changes the size of an already choosen column by using the specified delta + + + + + + Invalidates the RenderColumns collection + + + + + Invalidates the row layout + + + + + Determines the actual row height. + + The desired . + The actual row height, if successfull. + + + + Measures the pinned columns. + + The data provider. + + + + + Gets or sets the GridViewTemplate that owns this view definition. + + + + + Gets the desired size for the row when using the specified layout. + + + + + Gets the desired size for the group row when using the specified layout. + + + + + Gets all columns currently visible on screen. + Gets a generic list containing all objects that are currently visible. + + + + + Gets the scrollable columns + + + + + Gets the first data column. + + + + + Gets the last data column. + + + + + Contains possible grid layout contexts + + + + + Grid content is displayed on screen. + + + + + Grid content renders on printer. + + + + + Adding value to DistinctValuesTable. It only adds the value if it is unique and is not null or empty. + + + + + + Check if a given value is contained in any of the ArrayLists value collections, bound to every string key. + + + + + + + Check if the collection conteins a given string key. + + Must be a string + + + + Gets the menu item that holds the tree view. + + + + + Gets the menu item that holds the OK and Cancel buttons. + + + + + Gets the menu item that holds the text box. + + + + + Provides static methods for creating strings to represent FilterDescriptors in text format. + + + + + Creates a string representation of filter descriptor. + Takes into account current localization provider and lookup value for lookup column. + + + + + + + Creates a string representation of filter descriptor. + Takes into account current localization provider and lookup value for lookup column. + + Given filter descriptor + Lookup column reference. Provide null if the column has not lookup value structure. + Filter string representation + + + + Creates a string representation of filter descriptor. + Takes into account current localization provider and lookup value for lookup column. + + Given filter descriptor. + Lookup column reference. Provide null if the column is not a lookup column. + Max text length. + Filter string representation + + + + Element containing hyperlink. + + + + + Gets or sets a value indicating if the link has been opened by the user. + + + + + Cell containing hyperlink element. + + + + + Initializes a new instance of the class. + + An instance of . + An instance of . + + + + Gets or sets the element containing hyperlink. + + + + + Gets or sets the text of the content element. + + + + + Gets or sets the image of the content element. + + + + + Creates the page view element. + + The context. + + + + + Creates the page view item. + + The context. + + + + + Creates the page view element. + + The context. + + + + + Creates the page view item. + + The context. + + + + + Creates the page view element. + + The context. + + + + + Creates the page view item. + + The context. + + + + + Creates the page view element. + + The context. + + + + + Creates the page view item. + + The context. + + + + + Best Fit All Columns Request + + + + + Requests the best fit columns. + + + + + Enqueues the best fit columns. + + The mode. + + + + Requests the best fit column. + + The column. + + + + Removes and returns the object at the beginning of the queue + + Returns BestFitRequest + + + + Dequeues the specified column's request from the queue + + The column's request that should be removed + Returns BestFitReques + + + + Represents BestFitRequest type + + + + + BestFit Operation for specified column + + + + + BestFit Operation for all columns + + + + + Represent best fit request + + + + + Initializes a new instance of the class. + + The operation. + The column. + + + + Initializes a new instance of the class. + + The operation. + + + + Initializes a new instance of the class. + + The operation. + The mode. + + + + Compares the current instance to the specified request. + + The request. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the operation. + + The operation. + + + + Gets the auto size mode. + + + + + Gets the column. + + The column. + + + + Ensures that the specified cell is visible. + + A GridViewRowInfo that specifies the cell's row + A GridViewColumn that specifies the cell's column + + + + Ensures that the specified row is visible. + + A GridViewRowInfo that specifies the row + + + + Ensures the row visible core. + + The row info. + + + + + Ensures the row visibility at top. + + The row rect. + The client rect. + The inner client rect. + The verical scroll bar. + The scroll value. + + + + Ensures the row visibility at bottom. + + An instance + if set to true [is last row]. + The row's client rectangle. + The inner client rectangle. + The verical scroll bar. + The scroll bar's value. + + + + Represents the virtualized stack container that holds the grid columns. + + + + + Initializes the fields. + + + + + Removes the element. + + The position. + + + + Gets the element context. + + + + + + Begins the measure. + + The available Size. + + + + + Ends the measure. + + + + + + Measures the element. + + The element. + + + + + Arranges the to its final location. + The element must call the Arrange method of each of its children. + + The size that is available for element. + In this method call to the Arrange method of each child must be made. + + The rectangle occupied by the element. Usually . Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion. + + + + + Determines whether the specified item is visible. + + The item. + true if item is visible; otherwise, false. + + + + Gets the discrete scroll offset. + + + + + + Gets or sets the context. + + The context. + + + + Gets or sets the scroll columns. + + The scroll columns. + + + + Returns an enumerator that iterates through the collection. + + + A that can + be used to iterate through the collection. + + + + + Inserts the specified index. + + The index. + The item. + + + + Removes the item + at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + The + is read-only. + + + + Returns the index of the specified column. + + The value. + + + + + Adds the specified item. + + The item. + + + + Removes all items from the . + + The + is read-only. + + + + Removes the specified item. + + The item. + + + + + Determines whether the specified columns is contained. + + The value. + + + + + Copies to the specified array starting at the specified index of the target array. + + The array. + The index. + + + + Gets or sets the right to left mode. + + The right to left. + + + + Gets the number of elements contained in the . + + The number of elements contained in the . + + + + + + Gets a value indicating whether the + is read-only. + + true if the + is read-only; otherwise, false. + + + + + Initializes a new instance of the class. + + The collection. + + + + Performs application-defined tasks associated with freeing, releasing, + or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + The collection was modified + after the enumerator was created. + + true if the enumerator was successfully advanced to the next element; + false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first + element in the collection. + + The collection was modified + after the enumerator was created. + + + + Gets the element in the collection at the current position of the enumerator. + + The element in the collection at the current position of the enumerator. + + + + + + Represents an lines that links expander cell + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The table element. + + + + Gets or sets the size of the arrow. Used to calculate pixel-perfect results. + + + + + Gets or sets a value determining the shape of the link + + + + + Gets or sets a value determining the style of the link lines + + + + + Defines the differen link styles + + + + + Initializes a new instance of the class. + + + + + Represents a service that manages drag and drop actions in + + + + + Initializes a new instance of the class. + + The grid view element. + + + + Gets the grid view element. + + The grid view element. + + + + Initializes a new instance of the class. + + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Raises the event. + + The owner control. + An instance of containing event data. + + + + Raises the event. + + The row that needs formatting. + A instance containing event data. + + + + + + Raises the event. + + The row that needs formatting. + A instance containing event data. + + + + + + Raises the event + + The cell that needs formatting. + A instance containing event data. + + + + + + Raises the event + + The grid cell that needs formatting. + A instance containing event data. + + + + + + Raises the event + + A instance containing event data. + + + + Returns an instance of GridViewEditManager that + defines how to initialize and create cells and editors. + + An instance of GridViewEditManager + + + + Puts the current cell in edit mode. + + Returns true if the process is successful. + + + + Commits any changes and ends the edit operation on the current cell. + + true on success. + + + + Close the currently active editor and discard changes. + + true on successful cancellation. + + + + Ends the edit operation without committing the changes + + true on success. + + + + Shows the for the columns of the master view template. + + + + + + + Shows the . + + The template which columns will be shown for. + + + + + + Hides the + + + + + + + Gets the drag drop service. + + + + + + Gives access to label element used for the title. + + + + + Gets or set the text of the grid title. + + + + + Gets or sets a value indicating the position of the title. + + + + + Gets or set a value indicating the animation effect that will be used when expanding/collapsing groups. + + + + + Gets the group panel element + + + + + Gets or sets a value indicating whether the group panel will show scroll bars or it will expand to show all group headers. + + + + + Gets the paging panel element + + + + + Gets or sets a value indicating whether to use dedicated vertical scrollbars in hierarchy. + + + + + Gets or sets an instance of or the instance that implements IGridBehavior interface. + + + + + + + Gets or sets a value indicating whether row height in a RataGridView + will expand for multiline cell text + + + + + Gets the instance of + + + + + + Gets or sets value indicating how user begins editing a cell. + + + + + Gets a value indicating whether the cell is in edit mode. + + + + + Gets or sets the current row of the currently active view containing the current cell. + + + + + Gets or sets the current column of the currently active view containing the current cell. + + + + + Gets or the currently active cell in the grid. + + + + + Gets or sets a value indicating whether the selected item in the control + remains highlighted when the control loses focus. + + Returns: + true if the selected item does not appear highlighted when the control loses + focus; false if the selected item still appears highlighted when the control + loses focus. The default is true. + + + + + + Gets or sets value indicating whether the is visible. + + + + + Gets or sets a value indicating whether the PaintCell and PaintRow events are enabled. + + + + + Gets an instance of used to navigate between rows and cells in grid. + + + + + + + Gets or sets value indicating the behavior when the user presses Enter while adding new row. + + + + + Gets or sets value indicating the behavior when the user presses Enter while adding new row. + + + + + Gets or sets a value indicating whether to show cell errors. + + + + + Gets or sets a value indicating whether to show row errors. + + + + + Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order + rather than moving focus to the next cell in the control. + + + + + Gets or sets a value indicating how to split RadGridView. + + + + + Gets or sets the text to use when there is no data. + + + + + Gets or sets whether when changing the current row in one split view the same row in the other split view will be brought into view. + + + + + Fires when a cell needs to be created. + + + + + Fires when a row needs to be created. + + + + Fires when a data row is invalidated and needs to be formatted. + + + void radGridView1_RowFormatting(object sender, RowFormattingEventArgs e) + { + if (e.RowElement.RowInfo.Cells.Count > 0 && (string)e.RowElement.RowInfo.Cells[0].Value == "3") + e.RowElement.Font = strikeoutFont; + else + e.RowElement.Font = SystemFonts.DialogFont; + } + + + + + + + Fires when a grid row is invalidated and needs to be formatted. + + + + + + Fires when the content of a data cell needs to be formatted for display. + + + + + + + Fires when the content of any grid cell needs to be formatted for display. + + + + + + + Fires when the current view in RadGridView has changed. + + + + + Fires when a ColumnChooserCreated is created. + + + + + Gets an instance of GridViewEditManager that + defines how to initialize and create cells and editors. + + + + + Gets the active editor + + + + + Gets or sets the column chooser sort order. + + + The column chooser sort order. + + + + + Gets the current column chooser + + + + + Gets an instance of or the instance that implements IContextMenuManager interface. + + + + + Displays a list with column chooser items, associated with columns. + + + + + Creates a new instance of the ColumnChooserForm class. + + An instance of the . + + + + Creates a new instance of the ColumnChooserForm class. + + + + + Gets the used in the form. + + + + + Gets a generic list containing all objects available in the form. + + + + + Gets or sets the sort order of the columns. + + + The sort order. + + + + + Gets or sets a value indicating whether the filter text box is visible. + + + + + Gets the filter text box of this column chooser + + + + + Occurs when a new item element is being created. The created item is then added to the Column chooser. + + + + + This is a form containing the hidden columns in RadGridView + + + + + Represent the basic element of all elements in ColumnChooser + + + + + Initializes a new instance of the ColumnChooserElement class. + + + + + Initializes with new instance of the . + + An instance of the . + + + + + Uninitializes the associated instance of the in . + + + + + Updates the child elements collection of the . + + + + + Fires the event. + + + + + Gets an instance of the class + that represents the layout panel which holds the column chooser + items. + + + + + Gets or sets the associated with this column chooser + + + + + Gets list of objects contained in the + + + + + Gets or sets the sort order of the columns. + + + The sort order. + + + + + Gets the scroll viewer. + + The scroll viewer. + + + + Gets or sets a value indicating whether the filter text box is visible. + + + + + Gets the filter text box of this column chooser element + + + + + Gets or sets the GridVisualElement that owns this view. + + + + + Occurs when a new item element is being created. The created item is then added to the Column chooser. + + + + + Represents a column header in the column chooser form + + + + + Initializes a new instance of the ColumnChooserElement class. + + + + + Initializes a new instance of the ChoosenColumnElement class. + + An instance to GridViewDataColumn + + + + + Wries the events of the column. + + + + + Unwires the events of the column. + + + + + The associated with this item + + + + + Displays a form used to manage columns + + + + + Initializes a new instance of the GridViewColumnChooser class. + + + + + Initializes a new instance of the ColumnChooserForm class. + + The object, owner of this form + + + + Initializes a new instance of the GridViewColumnChooser class. + + The object, owner of this form + The object + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required designer variable. + + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the associated with this form. + + + + + Gets or sets the sort order of the columns. + + + The sort order. + + + + + Gets or sets a value indicating whether the filter text box is visible. + + + + + Gets the associated with this form. + + + + + Gets list of objects contained in the form. + + + + + Gets or sets the associated instance of + + + + + Allows inheritors to provide custom logic when processing drop of group field. + + The drop location. + + + + + Represent a group expression element in a + + + + + Initializes a new instance of the GroupElement class. + + An instance of . + An instance of the . + + + + Gets a collection of which are children of the GroupElement. + + + + + Represent a group field element in a + + + + + Initializes a new instance of the GridGroupByField class. + + An instance of . + An instance of . + An instance of the . + + + + Gets the associated instance of type + + + + + Represent a link element among in . + + + + + Represent a group panel element in a . + + + + + Initializes with new instance of the . + + An instance of the . + + + + + Uninitializes the associated instance of the in . + + + + + Updates the child elements collection of the . + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where an field will be dropped after a drag operation. + + + + + Gets or sets an instance of used by the control. + + + + + Gets or sets a value indicating whether the group panel will show scroll bars or it will expand to show all group headers. + + + + + Gets or sets the GridVisualElement that owns this view. + + + + + Gets the GridViewInfo that this view represents. + + + + + Initializes a new instance of the GridGroupHeaderItem class. + + The for the item. + The for the item. + + + + Gets the associated with this item. + + + + + Gets the associated with this item. + + + + + Gets the associated with this item. + + + + + Represents a button element used in GridGroupHeaderItem + + + + + Initializes a new instance of the GridGroupHeaderItemButtonElement class. + + + + + Initializes a new instance of the GridGroupHeaderItemButtonElement class. + + the text for the button. + + + + Updates the content of this list. + + Gets the , associated with this list. + true if the update process was successfull. + + + + Gets or sets the grouping lines color. + + + + + Gets the for the list. + + + + + Represents a collection containing GridGroupHeaderList items. + + + + + Initializes a new instance of the GridGroupHeaderListsCollection class. + + The , owner of this collection./> + + + + Returns the index of an element in the collection. + + The template to search for + The index in that template + The count + The index of the element + + + + Returns the index of an element in the collection. + + The template to search for + The index of the element + + + + Returns the index of an element in the collection. + + The template to search for + The index in that template + The index of the element + + + + Changes the place of an element in the collection. + + The old element index. + The new index. + + + + Removes elements from the collection's tail + + the starting index. + + + + Removes all elements in range. + + the starting index + the number of the elements to remove + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents a hierarchy of template group elements that is associated with specified . + + + + + Initializes a new instance of the TemplateGroupsElement class. + + An instance of . + An instance of . + + + + Recreates the child elements hierarchy depending on the associated . + + + + + Determines whether the specified drag object [can be drag over] this instance. + + The drag object. + + true if the specified drag object [can drag over]; otherwise, false. + + + + + Sets the group links offset + + + + + Sets the group links position + + + + + Sets the separator's width between two consecutive GridFieldElements + + + + + Sets the vertical and horizontal distance between two consecutive GroupElements + + + + + Sets the vertical and horizontal distance between two consecutive GroupElements + + + + + Sets the vertical offset between two consecutive child TemplateGroupsElements + + + + + Gets a read only collection of child elements of type + + + + + Gets a read only collection of child elements of type + + + + + Gets the group panel element. + + The group panel element. + + + + Gets the GridViewTemplate. + + The view template. + + + + A helper class that process best fitting of columns + + + + + Initializes a new instance of the class. + + The table element. + + + + Performs best fit for specified column + + An instance of that will be best fitted + + + + Performs best fit for all columns + + + + + Bests the fit columns. + + The mode. + + + + Process all best fit column requests + + + + + Performs best fit for all columns + + + + + Performs best fit for specified column + + An instance of that will be best fitted + The mode. + + + + Determines whether the instance of can be best fitted. + + The row. + + true if the instance of can be best fitted ; otherwise, false. + + + + + Gets the desired cell's width + + An instance of + Returns the desired cell's with + + + + Sets 's width + + An instance of . + The desired width + + + + Gets the table element. + + The table element. + + + + Gets the best fit requests. + + The best fit requests. + + + + Displays a cell with a checkbox inside, used with GridViewBooleanColumn + + + + + Initializes a new instance of the GridCheckBoxCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Gets the group column info. + + The group column info. + + + + Displays a cell with a combo box inside, used with GridVewComboBoxColumn + + + + + Initializes a new instance of the GridComboBoxCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Cell element used to present differend kind of commnad elements + + + + + Initializes a new instance of the GridCommandCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + + + + Gets an instance of the class + that represents the button in the command cell. + + + + + This is a cell with data and time formatting + + + + + Initializes a new instance of the GridDateTimeCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + This cell contains a child view table + + + + + Initializes a new instance of the GridDetailViewCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Gets the GridTableElement child element + + + + + Gets the RadPageViewElement which contains the child view for this cell element. + + + + + Gets the details row info associated with this cell element + + + + + Gets the hierarchy row, parent for this child view + + + + + Represent a filter checkbox cell element + + + + + Initializes a new instance of the class. + + + + + + + A button used inside filter cells in RadGridView. + + + + + Represents a group header content cell + + + + + Initializes a new instance of the GridGroupContentCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Displays a sign indicating that the row can be expanded/collapsed + + + + + Initializes a new instance of the GridFilterRowHeaderCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Represents an indent cell inside header row + + + + + Represents an indent cell + + + + + Initializes a new instance of the GridIndentCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Initializes a new instance of the GridHeaderIndentCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Represents a cell containing an image + + + + + Initializes a new instance of the GridImageCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Represents the row header cell + + + + + Initializes a new instance of the GridRowHeaderCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successfull. + + + + Creates the column pinning menu items. + + The context menu. + + + + Displays a cell containing summary info + + + + + Initializes a new instance of the GridSummaryCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Determines if the cell can BestFit for the specified column BestFit mode. + + + + + Gets the unformatted values represented by this cell. + + + + + Represents the top left cell of the grid + + + + + Initializes a new instance of the GridTableHeaderCellElement class. + + An instance of the GridViewColumn + An instance of the GridRowElement + + + + Represents an layout that is performed in self-referencing for the first data cell + + + + + Initializes a new instance of the class. + + The row element. + + + + Creates the self-referencing cell's elements. + + The data cell. + + + + Disposes all managed resources - such as Bitmaps, GDI+ objects, etc. + + + + + Detaches the cell elements. + + + + + Disposes the link elements. + + + + + Updates the associated instance of expander primitive + + Value that indiacted whether the row is first one. + + + + Updates links + + + + + Creates or deletes links + + + + + Updates link types in the specified data cell. + + + + + Determines whether [is last child row] [the specified parent]. + + The parent. + The row. + + true if [is last child row] [the specified parent]; otherwise, false. + + + + + Determines whether [is first child row] [the specified parent]. + + The parent. + The row. + + true if [is first child row] [the specified parent]; otherwise, false. + + + + + Gets the traverser for concrete instance of . + + An instance of . + + + + + Caches the link item. + + The item. + + + + Gets the link item. + + + + + + Binds the row properties. + + + + + Unbinds the row properties. + + + + + Gets a value that indicates the row assiciated with the layout + + + + + Gets a value that indicates the row element assiciated with the layout + + + + + Gets a value that indicates the expander element assiciated with the layout + + + + + Gets the stack layout element. + + The stack layout element. + + + + Gets the data cell. + + The data cell. + + + + Gets or sets the witdh of the group indent column. + + + + + Gets a value that indicates the links count + + + + + Gets a collection that contains all links + + + + + Represents a collection that stores visual cell elements. + + + + + Initializes a new instance of the class. + + The row. + + + + Returns the index of the specified cell element. + + The item. + + + + + Determines whether the specified cell element is contained in the collection. + + The item. + + + + + Returns an enumerator that iterates through the collection. + + + A that can + be used to iterate through the collection. + + + + + Gets the number of elements contained in the . + + The number of elements contained in the . + + + + + + Gets a value indicating whether the + is read-only. + + true if the + is read-only; otherwise, false. + + + + + Represents a collection of visual row elements. + + + + + Initializes a new instance of the class. + + The container. + + + + Returns the index of specific row element. + + The item. + + + + + Inserts the row element at the specified index. + + The index. + The item. + + + + Removes the item + at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + The + is read-only. + + + + Determines whether the specified row element is contained in the collection. + + The item. + + + + + Removes the specified item. + + The item. + + + + + Returns an enumerator that iterates through the collection. + + + A that can + be used to iterate through the collection. + + + + + Gets the number of elements contained in the . + + The number of elements contained in the . + + + + + + Gets a value indicating whether the + is read-only. + + true if the + is read-only; otherwise, false. + + + + + Enumerator for the visual row elements. + + + + + Initializes a new instance of the class. + + The visual rows collection. + + + + Performs application-defined tasks associated with freeing, releasing, + or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + The collection was modified + after the enumerator was created. + + true if the enumerator was successfully advanced to the next element; + false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first + element in the collection. + + The collection was modified + after the enumerator was created. + + + + Gets the element in the collection at the current position of the enumerator. + + The element in the collection at the current position of the enumerator. + + + + + + Returns the number of rows displayed to the user. + + true to include partial rows in the displayed row count; otherwise, false. + The number of rows displayed to the user. + + + + Returns the number of columns displayed to the user. + + true to include partial columns in the displayed column count; otherwise, false. + The number of columns displayed to the user. + + + + Gets the row's visual element based on the corresponding GridViewRowInfo + + The corresponding GridViewRowInfo + An instance to a GridRowElement if successfull, null othervise + + + + Gets a cell based on corresponding GridViewRowInfo and GridViewColumn + + The corresponding GridViewRowInfo + The corresponding GridViewColumn + An instance to a GridCellElement if successfull, null othervise + + + + Invalidates a row + + The GridViewRowInfo to invalidate + + + + Invalidates a single cell + + The corresponding GridViewRowInfo + The corresponding GridViewColumn + + + + Ensures that the specified row is visible. + + A GridViewRowInfo that specifies the row + + + + Ensures that the specified cell is visible. + + A GridViewRowInfo that specifies the cell's row + A GridViewColumn that specifies the cell's column + + + + Gets a value indicating whether the row is visible + + The GridViewRowInfo to check for visibility + Returns true if the row is visible + + + + Begins batch update of the items. + + + + + Ends batch update of the items. + + Tells the view to perform update + + + + Ends batch update of the items. + + + + + Gets a collection containing all visible child views + + + + + Gets the current GridCellElement + + + + + Gets the current GridRowElement + + + + + Gets the addreess of the current GridCellElement + + + + + Gets the rows currently visible on screen + + + + + Gets the number of rows displayed to the user. + + + + + Gets a value indicating whether the view is current + + + + + Begins batch update of the items. + + + + + Ends batch update of the items. + + + + + Ends batch update of the items. + + Tells the view whether an update is required or not. + + + + Returns the number of rows displayed to the user. + + true to include partial rows in the displayed row count; otherwise, false. + The number of rows displayed to the user. + + + + Returns the number of columns displayed to the user. + + true to include partial columns in the displayed column count; otherwise, false. + The number of columns displayed to the user. + + + + Gets the row's visual element based on the corresponding GridViewRowInfo + + The corresponding GridViewRowInfo + An instance to a GridRowElement if successful, null otherwise + + + + Gets a cell based on corresponding GridViewRowInfo and GridViewColumn + + The corresponding GridViewRowInfo + The corresponding GridViewColumn + An instance to a GridCellElement if successful, null otherwise + + + + Invalidates a row + + The GridViewRowInfo to invalidate + + + + Invalidates a single cell + + The corresponding GridViewRowInfo + The corresponding GridViewColumn + + + + Ensures that the specified row is visible. + + A GridViewRowInfo that specifies the row + + + + Ensures that the specified cell is visible. + + A GridViewRowInfo that specifies the cell's row + A GridViewColumn that specifies the cell's column + + + + Gets a value indicating whether the row is visible + + The GridViewRowInfo to check for visibility + Returns true if the row is visible + + + + Widens / shrinks a column based on the space required by the text in the columns. + + The column. + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + The mode. + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets the default row height. + + + + + Gets or sets the column headers row height. + + + + + Gets or sets the group header row height. + + + + + Gets or sets the height of the filter row. + + + + + Gets or sets the height of the search row. + + + + + Gets or sets the row height of the child rows in a hierarchical grid. + + + + + Gets or sets the cell spacing. + + + + + Gets or sets the row spacing. + + + + + Gets or sets the width of the row header column. + + + + + Gets or sets the width of the group indent column. + + + + + Gets or sets the value that determines the indent width among expander primitives in self-reference hierarchy. + + + + + Gets or sets a value indicating the alternating row color for odd rows. + + + + + Gets or sets an image for the row header cell of the row. + + + + + Gets or sets an image for the row header cell of the row. + + + + + Gets or sets the color that will be used for highlighting search matches. + + + + + Gets or sets an image for the row header cell of the current row indicating it is currently in edit mode. + + + + + Gets or sets an image for the row header cell of the row with error. + + + + + Gets or sets an image for the row header cell of the current row. + + + + + Gets or sets a value indicating whether the vertical scrollbar should be extended to encompass the upper right corner. + + + + + Gets or sets a value indicating whether the hottracking behavior is enabled. + + + + + Gets or sets a value indicating the name of the theme for the context menu in the current GridTableElement. + + + + + Gets or sets a value indicating the name of the theme for the context menu in the current GridTableElement. + + + + + Gets a value indicating that the user interface is updating now. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a row will be dropped after a drag operation. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a column will be dropped after a drag operation. + + + + + Gets or sets the PageViewProvider used in the child views. + + + + + Gets or sets the page view mode used in child views. + + + + + Gets or sets a value indicating whether to show lines in self reference mode. + + + + + Get or set reference to filter popup in order to allow additional interaction implementation. + + + + + Gets the current GridCellElement in the GridTableElement. + + + + + Gets a value indicating whether the view is current + + + + + Gets the current in the GridTableElement. + + + + + Gets the address of the current GridCellElement + + + + + Gets a containing the rows currently visible on screen. + + + + + Gets the number of rows displayed to the user. + + + + + This is the visual element responsible for presenting all of the data rows + + + + + Applies or resets alternating row color of the current row. + + + + + This is the visual element responsible for presenting child tables + + + + + This is the visual element responsible for presenting the filtering row + + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successfull. + + + + Gets a value indicating that conditional formatting can be applied + + + + + This is the visual element responsible for presenting group headers + + + + + Gets or sets a value indicating whether the row is selected. + + + + + Gets or sets a value indicating whether the row is selected. + + + + + Gets a value indicating that conditional formatting can be applied + + + + + This is the visual element responsible for presenting the "add new row" row + + + + + Merges the context menu. + + The to merge with. + merge parameters. + The merged context menu, if successful. + + + + Gets a value indicating that conditional formatting can be applied + + + + + This is the visual element responsible for presenting summaries in groups + + + + + This is the visual element responsible for presenting column headers + + + + + Calculates and applies the best width for a given column + + An instance of the GridViewColumn to fit + + + + Gets a value indicating that conditional formatting can be applied + + + + + Initializes a new instance of the class. + + The row view. + + + + Creates the element for the specific data row. + + The data. + The context. + + + + + Gets the element for the specific data row. + + The data. + The context. + + + + + Gets the size of the element. + + + + + + + Gets the element height by the row type. + + The item. + + + + + Determines whether the specified element is compatible with concrete data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Represents a collection containing objects. Used in . + + + + + Represents a collection containing objects. Used in . + + + + + Represents a collection containing objects. Used in . + + + + + Represents an auto-complete box editor in RadVirtualGrid. + + + + + Represents a textbox editor in RadVirtualGrid. + + + + + Initializes the editor. Used internally in RadVirtualGrid. + + The that will host this editor. + The initial value of the editor. + + + + Validates the value currently entered in the editor. + + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Translates system key down events to the owner element. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Translates mouse wheel events to the owner element. + + A System.Windows.Forms.MouseEventArgs that contains the event data. + + + + Gets a value indicating that the editor should close when grid loses focus. + + + + + Gets a value indicating whether the cell should clear its text when adding an editor. + + + + + Gets the type of the editor value + + + + + Initializes a new instance of the class. + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Ends the edit. + + + + + + Creates a new editor element. + + a if successful + + + + Translates system key down events to the owner element. + + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets the text box. + + The text box. + + + + Gets or sets the value. + + The value. + + + + Gets the type of the editor value. + + + + + + Gets or sets the null value for the editor. + + + + + Indicates if all charactes should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Initializes a new instance of the class. + + + + + Creates a new editor element. + + a if successful + + + + Represents a browse editor in RadVirtualGrid. + + + + + Creates a new editor element. + + a if successful + + + + Begins the edit operation. + + + + + Ends the edit operation. + + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the editor's value. + + + + + Represents a calculator editor in RadVirtualGrid. + + + + + Creates a new editor element. + + a if successful + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Translates system key down events to the owner element. + + + + + + Handles key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the editor's value. + + + + + Represents a color editor in RadVirtualGrid. + + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Creates the editor element. + + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the editor's value. + + + + + Represents a date time editor in RadVirtualGrid. + + + + + Initializes a new instance of the RadDateTimeEditor class. + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Creates a new editor element. + + a if successful + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Determines whether the current value is a valid date. + + + + + + Translates system key down events to the owner element. + + + + + + Handles key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the value. + + The value. + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Gets or sets the minimum date and time that can be selected in the editor. + + + + + Gets or sets the maximum date and time that can be selected in the editor. + + + + + Gets or sets the custom date/time format string. + + + + + Gets the type of the editor value + + + + + + Gets if the editor is modified. + + The is modified. + + + + Represents a DropDownList editor in RadVirtualGrid. + + + + + Initializes a new instance of the RadDropDownListEditor class. + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Translates system key down events to the owner element. + + + + + + Handles key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Creates a new editor element. + + a if successful + + + + Gets or sets whether the item selection is allowed. + + The allow item selection. + + + + Gets or sets the value. + + The value. + + + + Gets or sets a value specifying the style of the DropDownList. + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, veritcal or a combination of them. + + + + + Represents a spin editor in RadVirtualGrid. + + + + + Initializes a new instance of the VirtualGridSpinEditor class. + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Ends the edit. + + + + + + Validates the spin editor. + + + + + + Initializes the editor. Used internally in RadVirtualGrid. + + The that will host this editor. + The initial value of the editor. + + + + Translates system key down events to the owner element. + + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Creates a new editor element. + + a if successful + + + + Gets or sets the value. + + The value. + + + + Gets or sets the minimum value that could be set in the editor. + + + + + Gets or sets the maximum value that could be set in the editor. + + + + + Gets or sets the value which is added to/subtracted from the current value of the editor. + + + + + Gets or sets the number of decimal places to display in the editor. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the editor. + + + + + Gets or sets the type of the value to use in the editor. + + + + + Gets the type of the editor value + + + + + + Represents a masked editbox editor in RadVirtualGrid. + + + + + Initializes a new instance of the VirtualGridMaskedEditBoxEditor class. + + + + + Clears the editor value if needed. + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Translates system key down events to the owner element. + + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Creates a new editor element. + + a if successful + + + + Gets or sets the value. + + The value. + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text. + + + + + Gets the instance of this editor. + + + + + Gets the type of the editor value + + + + + + Represents a textbox editor in RadVirtualGrid. + + + + + Initializes a new instance of the RadTextBoxEditor class. + + + + + Creates a new editor element. + + a if successful + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Starts the editing process. Used internally in RadGridView. + + + + + Ends the edit. + + + + + + Translates system key down events to the owner element. + + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the value. + + The value. + + + + Gets or sets the null value for the editor. + + + + + Indicates if all characters should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets whether the editor accepts the tab key in multiline mode + + + + + Gets or sets whether the editor accepts the tab key in multiline mode + + + + + Gets the type of the editor value. + + + + + + Gets a value indicating whether the editor value is modified. + + + + + + Gets a value indicating whether the cell should clear its text when adding an editor. + + + + + + Represents a time picker editor in RadVirtualGrid. + + + + + Starts the editing process. Used internally in RadGridView. + + + + + Ends the edit. + + + + + + Creates a new editor element. + + a if successful + + + + Gets or sets the value. + + The value. + + + + Gets the type of the editor value + + + + + + Calculates the column widths. + + Size of the available. + + + + Starts the column resize. + + The column. + + + + Resizes the column. + + The delta. + + + + + Ends the resize column. + + + + + Resets the cache. + + + + + Calculates the column widths. + + Size of the available. + + + + Starts the column resize. + + The column. + + + + Resizes the column. + + The delta. + + + + + Ends the resize column. + + + + + Resets the cache. + + + + + Gets the element context. + + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes the offset. + + + + + Gets or sets the row element. + + The row element. + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Determines whether the specified item is visible. + + The item. + true if item is visible; otherwise, false. + + + + Measures the element with the available size. + + The element. + Size of the available. + + + + + Arranges the to its final location. + The element must call the Arrange method of each of its children. + + The size that is available for element. + In this method call to the Arrange method of each child must be made. + + The rectangle occupied by the element. Usually . Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion. + + + + + Updates the element at concrete position + + The position. + The data. + + + + + Gets or sets the top offset. + + The top offset. + + + + Gets or sets the table element. + + The table element. + + + + Initializes a new instance of the class. + + The owner. + + + + Returns whether an update operation should be performed. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with its data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Initializes a new instance of the class. + + State of the view. + + + + Scrolls to item. + + The item. + if set to true scroll visibility is checked before processing scrolling. + + + + + Scrolls down with the specified step. + + The step. + + + + + Scrolls up. + + The step. + + + + + Updates the scroll range. + + + + + Updates the scroll range with concrete range. + + The width. + if set to true [update scroll value]. + + + + Gets the height of the scroll. + + The item. + + + + + Gets the item offset. + + The item. + + + + + Represents the table element of RadVirtualGrid. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Suspends layout updates. + + + + + Resumes layout updates. + + + + + Sets the height of the row at the specified row index in the current view info. + + The index of the row. + The new height of the row. + + + + Sets the height of the rows at the specified row indices in the master view info. + + The new height of the rows. + The indices of the rows. + + + + Gets the height of the row at the given row index. + + The index of the row. + The height of the row. + + + + Gets the height of the column at the given column index. + + The index of the column. + The height of the column. + + + + Sets the width of the column. + + Index of the column. + The width. + + + + Sets the width of the columns at the specified column indices in the master view info. + + The new width of the columns. + The indices of the columns. + + + + Sets the pin position of the specified row. + + The index of the row. + The new pin position. + + + + Sets the pin position of the specified column. + + The index of the column. + The new pin position. + + + + Determines whether the row at the specified index is pinned. + + The index of the row. + True if the row is pinned, otherwise false. + + + + Determines whether the column at the specified index is pinned. + + The index of the column. + True if the column is pinned, otherwise false. + + + + Expands the specified row. + + The row index to expand. + True if the operation is successful, otherwise false. + + + + Collapses the specified row. + + The row index to collapse. + True if the operation is successful, otherwise false. + + + + Returs a value indicating whether the specified row is expanded. + + The index of the row. + True if the row is expanded, otherwise false. + + + + Gets the child view info. + + Index of the row. + + + + + Scrolls with the specified delta. + + The delta. + + + + Scrolls with the specified delta. + + The delta. + The scroll bar. + + + + Synchronizes the rows. + + + + + Synchronizes the rows. + + Indicates if it is recursive. + + + + Synchronizes the rows. + + The recursive. + Content of the update. + + + + Synchronizes the row. + + Index of the row. + Content of the update. + + + + Called when the view info property is changed. + + The sender. + The instance containing the event data. + + + + Triggers when the view info is changed. + + + + + Updates the no data text. + + + + + Triggered when the scale is changed. + + The scale factor. + + + + Measures the elements with the available size. + + The available size. + + + + + Arranges the elements in the available size. + + The final size. + + + + + Gets or sets an image for the indent cell of a row that is indicating the row is busy. + + + + + Gets or sets an image for the indent cell of a row containing a data error. + + + + + Gets or sets an image for the indent cell of the current row. + + + + + Gets or sets an image for the indent cell of a row that is currently in edit mode. + + + + + Gets or sets the color of the alternating row. + + The color of the alternating row. + + + + Gets or sets a value indicating whether there is a visual indication for the row currently under the mouse. + + + + + Gets or sets the height of the filtering row. + + + + + Gets or sets the height of the add new row. + + + + + Gets or sets the height of the header row. + + + + + Gets or sets the default height of data rows. + + + + + Gets or sets the width of the indent column. + + + + + Gets an instance of which allows the user to navigate between pages when paging is enabled. + + + + + Gets an instance of which can be used as a busy indicator for this table element. + + + + + Gets or sets the view info containing the settings for this table element. + + + + + Gets an containing information and settings for the currently displayed rows. + + + + + Gets an containing information and settings for the currently displayed columns. + + + + + Gets or sets the number of rows displayed in the table element. + + + + + Gets or sets the number of columns displayed in the table element. + + + + + Gets or sets the default column width. + + + + + Gets or sets the + + + + + Gets or sets the cell spacing. + + The cell spacing. + + + + Gets or sets the column layout. + + The column layout. + + + + Gets the row scroller. + + The row scroller. + + + + Gets the column scroller. + + The column scroller. + + + + Gets the grid element. + + The grid element. + + + + This property is used internally to help with scrolling of hierarchical grids. + + + + + Represents the traverser. + + + + + Initializes a new instance of the class. + + State of the view. + + + + Moves the previous. + + + + + + Moves to end. + + + + + + Performs application-defined tasks associated with freeing, releasing, + or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + The collection was modified + after the enumerator was created. + + true if the enumerator was successfully advanced to the next element; + false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first + element in the collection. + + The collection was modified + after the enumerator was created. + + + + Returns an enumerator that iterates through a collection. + + + An object that can be + used to iterate through the collection. + + + + + Gets or sets the position. + + The position. + + + + Gets the element in the collection at the current position of the enumerator. + + The element in the collection at the current position of the enumerator. + + + + + + Represents the container of the virtual row elements. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Measures the space required by the + Used by the layout system. + + The size that is available to the . The available size can be infinity (to take the full size of the element) + In this method call to the Measure method of each child must be made. + + The minimum size required by the element to be completely visible. Cannot be infinity. + + + + + Arranges the to its final location. + The element must call the Arrange method of each of its children. + + The size that is available for element. + In this method call to the Arrange method of each child must be made. + + The rectangle occupied by the element. Usually . Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion. + + + + + Updates the element spacing. + + + + + Gets the row elements. + + + + + + Gets the row element. + + Index of the row. + + + + + Gets or sets the table element. + + The table element. + + + + Gets the scrollable rows. + + The scrollable rows. + + + + Gets the top pinned rows. + + The top pinned rows. + + + + Gets the bottom pinned rows. + + The bottom pinned rows. + + + + Represents the provider for the virtual row elements. + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates the element. + + The data. + Type of the row. + The context. + + + + + Gets the element. + + The data. + The context. + + + + + Caches the element. + + The element. + + + + + Returns whether the provider should be updated. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with its data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Gets the size of the element. + + The data. + + + + + Gets the size of the element. + + The element. + + + + + Clears the cached elements. + + + + + Tries to get element with the child view. + + The data. + The context. + The element. + + + + + Tries to get element without the child view. + + The data. + The context. + The element. + + + + + Gets or sets the default size of the element. + + The default size of the element. + + + + Represents the detail view cell in RadVirtualGrid. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Represents a cell element in RadVirtualGrid. + + + + + Initializes a new instance of the class. + + + + + Initializes the specified owner. + + The owner. + + + + Attaches the specified data. + + The data. + The context. + + + + Attaches the specified data. + + The data. + The context. + The synchronize. + + + + Detaches the cell element. + + + + + Synchronizes this instance. + + + + + Synchronizes the specified update content. + + Content of the update. + + + + Updates the info. + + The instance containing the event data. + + + + Synchronizes the specified context. + + The context. + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Gets the editor element associated with this cell element. + + The editor which element we search. + An instance of RadItem that represents the editor element. Null if there is no editor element. + + + + Determines whether point is in resize location. + + The point. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Paints the element. + + The graphics. + The angle. + The scale. + + + + Measures the element with the available size. + + Size of the available. + + + + + Arranges the elements in the final size. + + The final size. + + + + + Arranges the editor element. + + The final size. + The client rect. + + + + Gets the associated data. + + The data. + + + + Gets the view info. + + The view info. + + + + Gets or sets the format string. + + The format string. + + + + Gets or sets the name of the field. + + The name of the field. + + + + Gets the row element. + + The row element. + + + + Gets or sets the value. + + The value. + + + + Gets the index of the column. + + The index of the column. + + + + Gets the index of the row. + + The index of the row. + + + + Gets the table element. + + The table element. + + + + Gets whether the cell can be edited. + + The can edit. + + + + Gets or sets a value indicating whether the cell is pinned. + + + + + Gets or sets whether the cell is selected. + + The is selected. + + + + Gets or sets whether the cell is sorted. + + The is sorted. + + + + Gets or sets whether the cell is in an odd row. + + The is odd row. + + + + Gets or sets whether the cell is current. + + The is current. + + + + Gets or sets whether the column is current. + + The is current column. + + + + Gets or sets whether the row is current. + + The is current row. + + + + Gets the editor. + + The editor. + + + + Represents the expander item in RadVirtualGrid. + + + + + A button used inside filter cells in RadGridView. + + + + + Defines columns auto size mode. + + + + + The column widths do not automatically adjust. + + + + + The column widths adjust so that the widths of all columns exactly fill the display area of the control + + + + + Defines the possible states that the virtual grid is in during selection. + + + + + A new selection begins. + + + + + The selection is cleared + + + + + The selection is clear due to a new selection being started. + + + + + The selection is extended. + + + + + All cells are selected. + + + + + Provides data for the CellPaint event. + + + + + Provides data for cell element related events. + + + + + Provides data for view info related events. + + + + + Initializes a new instance of the class. + + The view info. + + + + Gets the view info. + + + + + Initializes a new instance of the class. + + The cell element. + The view info. + + + + Gets the cell element. + + + + + Initializes a new instance of the class. + + The cell element. + The view info. + The graphics. + + + + Gets the graphics object used for drawing to the screen. + + + + + Provides data for the RowPaint event. + + + + + Provides data for row element related events. + + + + + + Initializes a new instance of the class. + + The row element. + The view info. + + + + Gets the row element. + + + + + Initializes a new instance of the class. + + The row element. + The view info. + The graphics. + + + + Gets the graphics object used for drawing to the screen. + + + + + Provides data for the CellEditorInitialized event. + + + + + Provides data for cell related events. + + + + + Initializes a new instance of the class. + + Index of the row. + Index of the column. + The view info. + + + + Gets the row index of the cell. + + + + + Gets the column index of the cell. + + + + + Initializes a new instance of the class. + + The active editor. + Index of the row. + Index of the column. + The view info. + + + + Gets the active editor. + + + + + Provides data for the CellMouseMove event. + + + + + Initializes a new instance of the class. + + The cell element. + The view info. + The instance containing the event data. + + + + Gets the mouse event arguments. + + + + + Provides data for events that cen be canceled. + + + + + Provides data for cell related events. + + + + + + Initializes a new instance of the class. + + The cell info. + + + + Gets the cell info. + + + + + Initializes a new instance of the class. + + The cell info. + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Provides data for the CellValidating event. + + + + + Initializes a new instance of the class. + + Index of the row. + Index of the column. + The view info. + The new value. + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Gets the new cell value. + + + + + Provides data for the CellValueNeeded event. + + + + + Initializes a new instance of the class. + + Index of the row. + Index of the column. + The view info. + + + + Gets or sets the name of the field that the cell will display. + + + + + Gets or sets the format string of the cell. + + + + + Gets or sets the value of the cell. + + + + + Provides data for the CellValuePushed event. + + + + + Initializes a new instance of the class. + + The value. + Index of the row. + Index of the column. + The view info. + + + + Gets the value that was input in the cell. + + + + + Provides data for the Copying, Cutting and Pasting events. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The cancel. + + + + Initializes a new instance of the class. + + The cancel. + The view info. + + + + Initializes a new instance of the class. + + The cancel. + The data object. + The view info. + + + + Initializes a new instance of the class. + + The cancel. + The format. + The data object. + The view info. + + + + Gets the view info. + + + + + Provides data for column related events. + + + + + Initializes a new instance of the class. + + Index of the column. + The view info. + + + + Gets the index of the column. + + + + + Provides data for the ColumnWidthChanging event. + + + + + Initializes a new instance of the class. + + Index of the column. + The old width. + The new width. + The view info. + + + + Gets the old column width. + + + + + Gets the new column width. + + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Provides data for the ContextMenuOpening event. + + + + + Initializes a new instance of the class. + + Index of the row. + Index of the column. + The view info. + The context menu. + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Gets or sets the context menu. + + + + + Provides data for the CreateCellElement event. + + + + + Initializes a new instance of the class. + + Index of the column. + Index of the row. + Type of the cell. + The view info. + + + + Gets the column index of the cell. + + + + + Gets the row index of the cell. + + + + + Gets the view info of the cell. + + + + + Gets or sets the type of the cell. + + + + + Gets or sets the cell element. + + + + + Provides data for the CreateRowElement event. + + + + + Initializes a new instance of the class. + + Index of the row. + Type of the row. + The view info. + + + + Gets the index of the row. + + + + + Gets the view info of the row. + + + + + Gets or sets the type of the row. + + + + + Gets or sets the row element. + + + + + Provides data for the EditorRequired event. + + + + + Initializes a new instance of the class. + + The editor. + Index of the row. + Index of the column. + The view info. + + + + Gets or sets the editor to be used. + + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Provides data for the UserAddedRow event. + + + + + Initializes a new instance of the class. + + The new values. + + + + Gets the values entered in the new row cells. + + + + + Provides data for the PageChanging event. + + + + + Initializes a new instance of the class. + + The old index. + The new index. + The view info. + + + + Gets the old паге index. + + + + + Gets the new паге index. + + + + + Gets the view info. + + + + + Provides data for the QueryHasChildRows event. + + + + + Provides data for row related events. + + + + + Initializes a new instance of the class. + + Index of the row. + The view info. + + + + Gets the index of the row. + + + + + Initializes a new instance of the class. + + Index of the row. + The view info. + + + + Gets or sets a value indicating whether the row has child rows. + + + + + Provides data for the RowExpanded event. + + + + + Initializes a new instance of the class. + + Index of the row. + The child view info. + The view info. + + + + Gets the child view info of the row. + + + + + Provides data for the RowExpanding event. + + + + + Initializes a new instance of the class. + + Index of the row. + The child view info. + The view info. + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Provides data for the RowHeightChanging event. + + + + + Initializes a new instance of the class. + + Index of the row. + The old height. + The new height. + The view info. + + + + Gets the old row height. + + + + + Gets the new row height. + + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Provides data for rows related events. + + + + + Initializes a new instance of the class. + + The row indices. + The view info. + + + + Gets the row indices of the affected rows. + + + + + Provides data for the RowValidating event. + + + + + Initializes a new instance of the class. + + Index of the row. + The view info. + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Provides data for the SelectionChanging event. + + + + + Initializes a new instance of the class. + + The selection action. + Index of the row. + Index of the column. + The view info. + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Gets the selection action that triggered the change. + + + + + Provides data for the ViewInfoPropertyChanged event. + + + + + Initializes a new instance of the class. + + The view info. + Name of the property. + + + + Gets the name of the changed property. + + + + + Represents an empty selection region where all properties are set to -1. + + + + + Initializes a new instance of the struct. + + The top index. + The left index. + The bottom index . + The right index . + The view info. + + + + Determines whether the selection region contains the specified cell. + + The cell row index. + The cell column index. + + + + + Determines whether the selection region contains the specified row. + + The row index. + True if the row is contained in the selection region, otherwise false. + + + + Determines whether the selection region contains the specified column. + + The column index. + True if the column is contained in the selection region, otherwise false. + + + + Gets the row index where the selection region starts. + + + + + Gets the column index where the selection region starts. + + + + + Gets the row index where the selection region ends. + + + + + Gets the column index where the selection region ends. + + + + + Gets the view info of the selection region. + + + + + Creates the specific states. + + + + + + Represents the filter cell in RadVirtualGrid. + + + + + Initializes a new instance of the class. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes the fields. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Determines whether cell element is compatible with the specified data. + + The data. + The context. + + + + + Determines whether the point is in resize location. + + The point. + + + + + Creates the filter menu. + + + + + + Initializes the menu items text. + + + + + Removes the filter descriptor. + + [TRUE] if succeed, otherwise [FALSE] + + + + Sets the filter descriptor. + + The descriptor. + + + + + Sets the filter operator. + + The filter operator. + + + + + Sets the selected filter operator text. + + + + + Updates the info. + + The instance containing the event data. + + + + Measures the elements according to the available size. + + Size of the available. + + + + + Arranges the elements in the final size. + + The final size. + + + + + Arranges the editor element. + + The element. + The editor rect. + The client rect. + + + + Gets the filter button for the cell. + + + + + Gets the filter operator for the cell. + + + + + Gets or sets the spacing between elements in filter cell + + + + + Gets whether a filter is applied. + + The is filter applied. + + + + Gets the can edit. + + The can edit. + + + + Gets the filter descriptor associated with this cell + + The filter descriptor. + + + + Represents the filter row in RadVirtualGrid. + + + + + Represents the row element of RadVirtualGrid. + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + + + + Creates the left pinned columns container. + + + + + + Creates the right pinned columns container. + + + + + + Creates the scrollable columns container. + + + + + + Creates the detail view cell element container. + + + + + + Initializes the specified table element. + + The table element. + + + + Invalidates the pinned columns. + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches the row element. + + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Synchronizes the row element. + + + + + Synchronizes the specified update content. + + Content of the update. + + + + Synchronizes the indent cell. + + + + + Synchronizes the cells. + + + + + Synchronizes the cells. + + Content of the update. + + + + Disposes the managed resources. + + + + + Gets the cell elements. + + + + + + Raises the event. + + The instance containing the event data. + + + + Measures the space required by the + Used by the layout system. + + The size that is available to the . The available size can be infinity (to take the full size of the element) + In this method call to the Measure method of each child must be made. + + The minimum size required by the element to be completely visible. Cannot be infinity. + + + + + Measures the height of the row. + + Size of the available. + + + + + Measures the elements. + + Size of the available. + Size of the client. + The border thickness. + + + + + Arranges the to its final location. + The element must call the Arrange method of each of its children. + + The size that is available for element. + In this method call to the Arrange method of each child must be made. + + The rectangle occupied by the element. Usually . Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion. + + + + + Gets the details element. + + The details element. + + + + Gets whether the alternating color can be applied. + + The color of the can apply alternating. + + + + Gets the left pinned cell container. + + The left pinned cell container. + + + + Gets the right pinned cell container. + + The right pinned cell container. + + + + Gets whether the row element has child rows. + + The has child rows. + + + + Gets the cell container. + + The cell container. + + + + Gets the table element. + + The table element. + + + + Gets or sets whether the hot tracking is enabled for this row element. + + The hot tracking. + + + + Gets or sets whether the row is in edit mode. + + The is in edit mode. + + + + Gets or sets if the row element is odd. + + The is odd. + + + + Gets or sets if the row element is current. + + The is current. + + + + Gets or sets whether the row element is selected. + + The is selected. + + + + Gets or sets whether the row element contains the current cell. + + The contains current cell. + + + + Gets or sets the contains selected cells. + + The contains selected cells. + + + + Gets if the child view is initialized. + + The is child view initialized. + + + + Gets the index of the row. + + The index of the row. + + + + Gets the associated data. + + The data. + + + + Gets the view info. + + The view info. + + + + Gets if the child view is visible. + + The is child view visible. + + + + Initializes a new instance of the class. + + + + + Measures the height of the row. + + Size of the available. + + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets whether the alternating color can be applied. + + The color of the can apply alternating. + + + + Initializes a new instance of the class. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes the fields. + + + + + Synchronizes the header cell. + + + + + Updates the arrow state. + + + + + Gets the column sort order. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Determines whether the point is in resize location. + + The point. + + + + + Gets whether the sort order is ascending. + + The is sorted ascending. + + + + Gets whether the sort order is descending. + + The is sorted descending. + + + + Gets the sort order. + + The sort order. + + + + Gets the arrow. + + The arrow. + + + + Initializes a new instance of the class. + + + + + Measures the height of the row. + + Size of the available. + + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets whether the alternating color can be applied. + + The color of the can apply alternating. + + + + Represents indent cells in RadVirtualGrid. + + + + + Initializes a new instance of the class. + + + + + Updates the info. + + The instance containing the event data. + + + + Updates the image. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Attaches the specified data. + + The data. + The context. + The synchronize. + + + + Detaches the indent cell element. + + + + + Determines whether the cell is compatible with the specified data. + + The data. + The context. + + + + + Measures the elements according to the available size. + + Size of the available. + + + + + Gets or sets the is waiting. + + The is waiting. + + + + Gets or sets the has error. + + The has error. + + + + Gets or sets whether the row is in edit mode. + + The is row in edit mode. + + + + Gets the expander item. + + The expander item. + + + + Gets or sets the show expander item. + + The show expander item. + + + + Represents a cell element for the new row in RadVirtualGrid. + + + + + Initializes a new instance of the class. + + + + + Updates the info. + + The instance containing the event data. + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Represents the new row element in RadVirtualGrid. + + + + + Initializes a new instance of the class. + + + + + Measures the space required by the + Used by the layout system. + + The size that is available to the . The available size can be infinity (to take the full size of the element) + In this method call to the Measure method of each child must be made. + + The minimum size required by the element to be completely visible. Cannot be infinity. + + + + + Measures the height of the row. + + Size of the available. + + + + + Synchronizes the row element. + + + + + Updates the content visibility. + + The show cells. + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets whether the alternating color can be applied. + + The color of the can apply alternating. + + + + Represents the virtual grid's waiting bar element. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Starts the waiting. + + + + + Stops the waiting. + + + + + Gets the waiting bar element. + + The waiting bar element. + + + + Specifies how a user starts cell editing in the RadVirtualGrid control. + + + + + Editing begins when the cell receives focus. This mode is useful when pressing + the TAB key to enter values across a row, or when pressing the ENTER key to + enter values down a column. + + + + + Editing begins when any alphanumeric key is pressed while the cell has focus. + + + + + Editing begins when any alphanumeric key or F2 is pressed while the cell has focus (default value). + + + + + Editing begins when F2 is pressed while the cell has focus. This mode places the + selection point at the end of the cell contents. + + + + + Editing begins only when the RadVirtualGrid.BeginEdit() method is called. + + + + + Specifies the behavior when the user presses Enter while editing a row. + + + + + Pressing Enter key saves the value in the cell and the cell remains selected. + + + + + Pressing Enter key saves the value in the cell moves focus to the next cell and opens its editor. + + + + + Pressing Enter key saves the value in the cell moves focus to the next row and opens editor of the cell bellow current. + + + + + Defines the selection modes of RadVirtualGrid. + + + + + One or more individual cells can be selected. + + + + + The entire row will be selected by clicking its row's header or a cell contained in that row. + + + + + Represents the context menu of RadVirtualGrid. + + + + + Initializes a new instance of the class. + + The grid element. + + + + Initializes the children. + + + + + Initializes the menu items text. + + + + + Initializes the menu items. + + The cell. + + + + Initializes the row context menu. + + + + + Initializes the filter cell context menu. + + + + + Initializes the new row context menu. + + + + + Initializes the header cell context menu. + + The cell. + + + + Initializes the data cell context menu. + + + + + Called when the clear sort item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the sort descending item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the sort ascending item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the pin at right item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the pin at left item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the pin at bottom item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the pin at top item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the unpin row item is clicked. + + The sender. + The instance containing the event data. + + + + Called when unpin column item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the delete row item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the clear value item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the edit item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the paste item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the cut item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the copy item is clicked. + + The sender. + The instance containing the event data. + + + + Called when the best fit item is clicked. + + The sender. + The instance containing the event data. + + + + Gets the grid element. + + The grid element. + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usage of the control. + + + + + + Initializes a new instance of the class. + + The grid element. + + + + Selects the cell defined with the row and column parameters in the grid master view info. Clears previous selection. + + The row index. + The column index. + + + + Selects the cell defined with the row and column parameters in the provided view info. Clears previous selection. + + The row index. + The column index. + The view info. + + + + Selects the cell defined with the row and column parameters in the provided view info. Extends or clears the previous selection based on the shift and ctrl parameters. + + The row index. + The column index. + Determines if the selection should be extended as if the Shift key is pressed. + Determines if the selection should be extended as if the Ctrl key is pressed. + The view info. + + + + Selects the next control. + + if set to true [forward]. + + + + + Gets the last scrollable row. + + The table element. + + + + + Gets the first scrollable row. + + The table element. + + + + + Handles the mouse down. + + The instance containing the event data. + + + + + Handles the mouse double click. + + The instance containing the event data. + + + + + Handles the mouse move. + + The instance containing the event data. + + + + + Handles the mouse up. + + The instance containing the event data. + + + + + Handles the mouse wheel. + + The instance containing the event data. + + + + + Handles the key down. + + The instance containing the event data. + + + + + Handles the key up. + + The instance containing the event data. + + + + + Handles the key press. + + The instance containing the event data. + + + + + Processes keys that are not handled by HandleKeyDown methoes + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Escape key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Enter key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Space key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the F2 key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Up key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Down key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Left key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Right key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Tab key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Add key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Subtract key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Delete key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Home key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the End key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the Insert key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the alpha-numeric keys + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handles the PageUp key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Handle the PageDown key + + The KeyPressEventArgs containing data related to this event + Returns true if the event is processed + + + + Gets a value indicating whether a selection operation is underway. + + + + + Gets a value indicating whether a resize operation is underway. + + + + + Gets a value indicating whether a column resize operation is iunderway. + + + + + Gets a value indicating whether a row resuze operations is underway. + + + + + Gets the instance this behavior is assigned to. + + + + + Initializes a new instance of the class. + + + + + Begins a new selection operation. + + The row index of the cell to begin the selection from. + The column index of the cell to begin the selection from. + The view info of the cell to begin the selection from. + Determines whether old selection should be kept or discarded. + + + + Adds a new to the selection. + + The selection region to add. + + + + Removes all s. + + + + + Extends the current selection region to the provided cell. + + The cell row index. + The cell column index. + + + + Returns a value indicating whether the provided cell is selected. + + The row index of the cell. + The column index of the cell. + The view info of the cell. + + + + + Returns a value indicating whther the provided row has selected cells in it. + + The row index. + The view info of the row. + + + + + Returns a value indicating whther the provided column has selected cells in it. + + The column index. + The view info of the row. + + + + + Clears all selected cells. + + + + + Selects all cells in the grid. + + + + + Fires the event. + + + + + Fires the event. + + + + + Gets or sets a value indicating whether multiple cells can be selected simultaneously. + + + + + Gets or sets a value indicating how cells are selected. + + + + + Gets the current selected region. + + + + + Gets all selected regions. + + + + + Gets the current view info. + + + + + Gets a value indicating whether there are selected cells. + + + + + Gets the index of the current row. + + + + + Gets the index of the current column. + + + + + Gets the row index of the row where the current selection starts. + + + + + Gets the row index of the row where the current selection ends. + + + + + Gets the column index of the row where the current selection starts. + + + + + Gets the column index of the row where the current selection ends. + + + + + Occurs after the selection of the grid is changed. + + + + + Occurs before the selection of the grid is changed. + + + + + Initializes a new instance of the class. + + The grid view element. + The view info. + + + + Initializes the fields of the current instance. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the buttons strip element child elements. + + + + + Creates the text box strip element child elements. + + + + + Wires the buttons and text box events. + + + + + Unwires the buttons and text box events. + + + + + Disposes the managed resources of this instance. + + + + + Updates the visibility of the paging panel. + + + + + Updates the buttons strip element. Called when an update notification arrives. + + + + + Updates the text box strip element. Called when an update notification arrives. + + + + + Explicitly synchronizes the view with its owner. + + + + + Raises the standard .NET PropertyChanged event. + + + + + + Measures the space required by the + Used by the layout system. + + The size that is available to the . The available size can be infinity (to take the full size of the element) + In this method call to the Measure method of each child must be made. + + The minimum size required by the element to be completely visible. Cannot be infinity. + + + + + Gets the theme. + + The type of the theme effective. + + + + Gets the VirtualGridTableElement which owns this view. + + + + + Gets the GridViewInfo that this view represents. + + + + + Gets or sets the number of buttons with numbers in the paging panel. + + + + + Gets or sets the image of the button that navigates to the first page. + + + The first page button image. + + + + + Gets or sets the image of the button that navigates to the previous page. + + + The previous page button image. + + + + + Gets or sets the image of the button that navigates next page. + + + The next page button image. + + + + + Gets or sets the image of the button that navigates to the last page. + + + The last page button image. + + + + + Gets the command bar element. + + + The command bar. + + + + + Gets the command bar row element. + + + The command bar row element. + + + + + Gets the buttons strip element. + + + The buttons strip element. + + + + + Gets the button that navigates to the first page. + + + The first button. + + + + + Gets the button that navigates to the previous page. + + + The previous button. + + + + + Gets the button that navigates fast in the backward direction. + + + The fast back button. + + + + + Gets the button that navigates fast in the forward direction. + + + The fast forward button. + + + + + Gets the button that navigates to the next page. + + + The next button. + + + + + Gets the button that navigates to the last page. + + + The last button. + + + + + Gets the text box strip element. + + + The text box strip element. + + + + + Gets the label that shows the "Page" text. + + + The page label. + + + + + Gets the text box that shows the current page. + + + The page number text box. + + + + + Gets the label that shows the "of" text. + + + The of pages label. + + + + + Gets the label that shows the total number of pages. + + + The number of pages label. + + + + + Gets or sets whether the button that navigates to the first page is visible. + + + true if the button that navigates to the first page is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates to the previous page is visible. + + + true if the button that navigates to the previous page is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates fast backward is visible. + + + true if the button that navigates fast backward is visible; otherwise, false. + + + + + Gets or sets whether the buttons that navigate to a concrete page are visible. + + + true if the buttons that navigate to a concrete page are visible; otherwise, false. + + + + + Gets or sets whether the button that navigates fast forward is visible. + + + true if the button that navigates fast forward is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates to the next page is visible. + + + true if the button that navigates to the next page is visible; otherwise, false. + + + + + Gets or sets whether the button that navigates to the last page is visible. + + + true if the button that navigates to the last page is visible; otherwise, false. + + + + + Gets or sets whether the strip element holding the page navigation buttons is visible. + + + true if the strip element holding the page navigation buttons is visible; otherwise, false. + + + + + Gets or sets whether the strip element holding the page navigation text box is visible. + + + true if the strip element holding the page navigation text box is visible; otherwise, false. + + + + + RadVirtualGrid is complex control that allows you to display and edit tabular data from any kind of data source. + + + + + Creates the child items. + + The parent. + + + + Creates the element. + + + + + + Suspends layout updates. + + + + + Resumes layout updates. + + + + + Selects all cells in the grid. + + + + + Selects the cell defined with the row and column parameters in the grid master view info. Clears previous selection. + + The row index. + The column index. + + + + Selects the cell defined with the row and column parameters in the specified view info. Clears previous selection. + + The row index. + The column index. + The view info. + + + + Widens / shrinks all columns based on the space required by the text in the cells. + + + + + Widens / shrinks all columns in the specified view info based on the space required by the text in the cells. + + + + + Starts the editing process for the current cell. + + + + + Ends the editing process and tries to commit any changes made to the edito value. Returns a value indicating whther the operation succeeded. + + Returns true if the operation is successfull. Returns false if the operation is not successfull e.g. validation fails or the grid was not in edit mode. + + + + Ends the editing process without committing any changes. Returns a value indicating whther the operation succeeded. + + Returns true if the operation is successfull. Returns false if the operation is not successfull e.g. the grid was not in edit mode. + + + + Raises the event. + + + + + + Raises the event. + + A that + contains the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the + event. + + An that contains + the event data. + + + + Raises the event. + + An that contains + the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + A that contains + the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether the specified key data is an input key. + + The key data. + + + + + Processes a dialog key. + + One of the values + that represents the key to process. + true if the key was processed by the control; otherwise, false. + + + + Gets the default serialization info for RadVirtualGrid used by Save/Load loyout methods to persist grid settings to/from XML. + + + You can use the serialization info to include/exclude properties of RadVirtualGrid and related objects from XML serialization. + Example:
+ ComponentXmlSerializationInfo serializationInfo = radVirtualGrid1.info.SerializationMetadata.Add(); +
+ +
+ + + Stores RadVirtualGrid properties, sub-objects and their properties in XML format, using the serialization information specified by the property + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadVirtualGrid properties, sub-objects and their properties in XML format, using the serialization information specified by the property + + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores to a file RadVirtualGrid properties, sub-objects and their properties in XML format, using the serialization information specified by the property + + + + + Loads RadVirtualGrid properties, sub-objects and their properties from XML file, using the serialization information specified by the property + + + + + Loads RadVirtualGrid properties, sub-objects and their properties from XML stream, using the serialization information specified by the property + + + + + Loads RadVirtualGrid properties, sub-objects and their properties from XML reader, using the serialization information specified by the property + + + + + Called when the layout is loaded. + + The sender. + The instance containing the event data. + + + + Gets or sets a value indicating whether users can resize columns through the grid UI. + + + + + Gets or sets a value indicating whether users can resize rows through the grid UI. + + + + + Gets or sets a value indicating whether the header row is visible. + + + + + Gets or sets a value indicating whether the add new row is visible. + + + + + Gets or sets a value indicating whether the filter row is visible. + + + + + Gets or sets a value indicating whether users can sort columns by clicking the header or through the header context menu. + + + + + Gets or sets a value indicating whether the users can sort by more than one column. + + + + + Gets or sets a value indicating whether users can edit the values in data cells. + + + + + Gets or sets a value indicating whether users can delete rows. + + + + + Gets or sets a value indicating whether the Cut option in the context menu and the Ctrl+X shortcut will be available to the user. + + + + + Gets or sets a value indicating whether the Copy option in the context menu and the Ctrl+C shortcut will be available to the user. + + + + + Gets or sets a value indicating whether the Paste option in the context menu and the Ctrl+V shortcut will be available to the user. + + + + + Gets or sets a value indicating whether event and odd rows will have a different back color. + + + + + Gets or sets a value indicating whether right-clicking on a header cell will show the default header cell context menu. + + + + + Gets or sets a value indicating whether right-clicking on a data cell will show the default data cell context menu. + + + + + Gets a object which provides an API for manipulating the selection. + + + + + Gets or sets the current cell. + + + + + Gets or sets a value indicating how cells are selected. + + + + + Gets or sets a value indicating whether multiple cells can be selected simultaneously. + + + + + Gets or sets value indicating whether child views have fixed size [true] or depend on the number of rows they contain [false]. + + + + + Gets the total number of pages when paging is enabled. + + + + + Gets or sets a value indicating whether data is presented in chunks (pages) to the user. + + + + + Gets or sets the number of rows shown per page when paging is enabled. + + + + + Gets or sets the index of the page currently presented in the grid. + + + + + Gets or sets the total number of rows to be displayed in the grid. + + + + + Gets or sets the total number of columns to be displayed in the grid. + + + + + Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order + rather than moving the focus to the next cell in the control. + + + + + Gets or sets a value indicating whether a message should be displayed in the grid when no data is loaded. + + + + + Gets or sets a value indicating how column widths are determined. + + + + + + Gets or sets a value indicating whether there is a visual indication for the row currently under the mouse. + + + + + Gets the sort descriptors currently applied to the grid. + + + + + Gets the filter descriptors currently applied to the grid. + + + + + Gets the default size of the control. + + The default of the control. + + + + + Gets the instance of . + This instance is wrapped by this control and is the main element in the element tree. It encapsulates the actual functionality of . + + + + + + Gets an instance of which holds all rows and columns. + + + + + Gets the main instance of the grid. + + + + + RadVirtualGrid consists of multiple visual elements and separate settings are specified to customize their appearance. + Current BackColor property might be ignored. + + + + + RadVirtualGrid consists of multiple visual elements and separate settings are specified to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Gets or sets the method for entering edit mode. + + + + + Gets or sets the behavior of the Enter key when pressed while in edit mode. + + + + + Gets a value indicating whether the grid is in edit mode. + + + + + Gets the currently active editor when the grid is in edit mode. + + + + + Occurs when a cell is displayed and its content should be updated. + + + + + Occurs when a row is updated and needs formatting. + + + + + Occurs when a cell is updated and needs formatting. + + + + + Occurs before a row is expanded. + + + + + Occurs before a row is collapsed. + + + + + Occurs before the current cell changes. + + + + + Occurs after the current cell changes. + + + + + Occurs when the sort descriptors collection changes. + + + + + Occurs when the filter descriptors collection changes. + + + + + Occurs when a user deletes a row. + + + + + Occurs when a user adds a row. + + + + + Occurs after the current page index changes. + + + + + Occurs before the current page index changes. + + + + + Occurs when a new row element has to be created. + + + + + Occurs when a new cell element has to be created. + + + + + Occurs when the editor of a cell is initialized. + + + + + Occurs when an editor for a cell is required. + + + + + Occurs when a cell value is edited and should be stored in the data source. + + + + + Occurs before the value of a cell is changed. + + + + + Occurs after the value of a cell has been changed. + + + + + Occurs when the context menu is about to be opened. + + + + + Occurs before the selection changes. + + + + + Occurs after the selection changes. + + + + + Occurs after a row is expanded. + + + + + Occurs after a row is collapsed. + + + + + Occurs before the width of a column changes. + + + + + Occurs after the width of a column changes. + + + + + Occurs before a row height changes. + + + + + Occurs after a row height changes. + + + + + Occurs when a cell is clicked. + + + + + Occurs when a cell is double clicked. + + + + + Occurs when the mouse is moved over a cell. + + + + + Occurs after a cell is painted allowing users to draw on top of it. + + + + + Occurs after a row is painted allowing users to draw on top of it. + + + + + Occurs before a cell is validated. + + + + + Occurs before a row is validated. + + + + + Occurs after a row is validated. + + + + + Occurs when the content of cell(s) is copyed. Allows users to modify the operation or content. + + + + + Occurs when the content of cell(s) is about to be pasted. Allows users to modify the operation or content. + + + + + Occurs when a property of the view info changes. + + + + + Occurs when a row has to determine if it has child rows. + + + + + Gets the serialization info for RadVirtualGrid used by Save/Load loyout methods to persist grid settings to/from XML. + By default, or when this property is set to null, the ComponentXmlSerializationInfo specified by GetDefaultXmlSerializationInfo() will be used. + + + + + Represent the main element of RadVirtualGrid. + + + + + Initializes a new instance of the class. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the table element. + + The virtual grid element. + The view info. + + + + + Disposes the managed resources. + + + + + Suspends layout updates. + + + + + Resumes layout updates. + + + + + Commits the value in the new row by firing the event. + + + + + Deletes the currently selected row. + + True if the operations is successful, otherwise false. + + + + Deletes the rows specified in the first parameter from the specified view info. + + The indices of the rows to delete. + The view info from which to delete the rows. + + + + Gets the height of the row at the given row index. + + The index of the row. + The height of the row. + + + + Sets the height of the row at the specified row index in the master view info. + + The index of the row. + The new height of the row. + + + + Sets the height of the rows at the specified row indices in the master view info. + + The new height of the rows. + The indices of the rows. + + + + Gets the height of the column at the given column index. + + The index of the column. + The height of the column. + + + + Sets the width of the column at the specified column index in the master view info. + + The index of the column + The new width of the column. + + + + Sets the width of the columns at the specified column indices in the master view info. + + The new width of the columns. + The indices of the columns. + + + + Sets the pin position of the specified row. + + The index of the row. + The new pin position. + + + + Sets the pin position of the specified column. + + The index of the column. + The new pin position. + + + + Returs a value indicating whether the specified row is pinned. + + The index of the row. + True if the row is pinned at top or bottom, otherwise false. + + + + Returs a value indicating whether the specified column is pinned. + + The index of the column. + True if the column is pinned at left or right, otherwise false. + + + + Expands the specified row. + + The row index to expand. + True if the operation is successful, otherwise false. + + + + Collapses the specified row. + + The row index to collapse. + True if the operation is successful, otherwise false. + + + + Returs a value indicating whether the specified row is expanded. + + The index of the row. + True if the row is expanded, otherwise false. + + + + Fires when the DPI scale is changed. + + The scale factor. + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The view info. + + + + Raises the event. + + The view information. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The new row values. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The source of the event. + The instance containing the event data. + + + + Raises the event. + + The source of the event. + The instance containing the event data. + + + + Raises the event. + + The cell info. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The cell. + The g. + + + + Raises the event. + + The row. + The g. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The view info. + Name of the property. + + + + Raises the event. + + The index of the row. + The view info of the row. + + + + + Starts the editing process for the current cell. + + + + + Starts the editing process for the specified cell. + + The cell to open for editing. + True if the operation is successful, otherwise false. + + + + Initializes the editor for editing. Allows settings of the editor to be modified. Fires the event. + + The editor that is being initialized. + The cell that will be edited. + + + + Gets an editor based on the column data type. + + The data type of the column. + The editor to be used for editing the specified data type. + + + + Gets an editor based on a cell value. Used when column data types are not defined. + + The value of the cell. + The editor to be used for editing the specified value. + + + + Attempts to find a visual cell element that represents the data on the specified row and column indices. + + The row index of the cell. + The column index of the cell. + The view info of the cell. + The cell element if it is visible, otherwise null. + + + + Returns a value indicating whether the current editor can be closed. + + True if the editor can be closed, otherwise false. + + + + Ends the editing process without committing any changes. Returns a value indicating whther the operation succeeded. + + Returns true if the operation is successfull. Returns false if the operation is not successfull e.g. the grid was not in edit mode. + + + + Ends the editing process and tries to commit any changes made to the edito value. Returns a value indicating whther the operation succeeded. + + Returns true if the operation is successfull. Returns false if the operation is not successfull e.g. validation fails or the grid was not in edit mode. + + + + Sets the value of a given cell to the specified value. + + The new value for the cell. + The row index of the cell. + The column index of the cell. + The view info of the cell. + + + + Sets the specified cell as the current cell. + + The cell to mark as current. + True if the operation is successful, otherwise false. + + + + Moves the current cell to the left of its current position. + + Determines if the current selection should be kept or discarded. + True if the operation is successful, otherwise false. + + + + Moves the current cell to the right of its current position. + + Determines if the current selection should be kept or discarded. + True if the operation is successful, otherwise false. + + + + Moves the current cell to the one below its current position. + + Determines if the current selection should be kept or discarded. + True if the operation is successful, otherwise false. + + + + Moves the current cell to the one above its current position. + + Determines if the current selection should be kept or discarded. + True if the operation is successful, otherwise false. + + + + Moves the current cell to the one defined by the row and column indices. + + The new current cell row index. + The new current cell column index. + Determines if the current selection should be kept or discarded. + + + + + Ensures the row at the specified row index is visible in the current view. + + The index of the row. + + + + Ensures the row at the specified row index is visible in the current view. + + The index of the row. + The view info of the row. + + + + Ensures the row at the specified row index is visible in the current view. + + The index of the row. + The table element of the row. + + + + Ensures the cell defined by the row and column indices is visible in the current view. + + The row index of the cell. + The column index of the cell. + + + + Ensures the cell defined by the row and column indices is visible in the current view. + + The row index of the cell. + The column index of the cell. + The view info of the cell. + + + + Ensures the cell defined by the row and column indices is visible in the current view. + + The row index of the cell. + The column index of the cell. + The table element of the row. + + + + Gets the scroll offset from the beginning of the rows in the specified view to the top edge of the specified row. + + The index of the row. + The view info of the row. + The distance to the row. + + + + Gets the scroll offset from the beginning of the rows in the specified view to the top edge of the specified row. + + The index of the row. + The table element of the row. + The distance to the row. + + + + Gets the scroll offset from the beginning of the columns in the specified view to the left edge of the specified column. + + The index of the column. + The view info of the column. + The distance to the column. + + + + Gets the scroll offset from the beginning of the columns in the specified view to the left edge of the specified column. + + The index of the column. + The table element of the column. + The distance to the column. + + + + Gets the table element displaying the info of the specified view info.. + + The view info. + The table element, if found, otherwise null. + + + + Gets the row element for the specified row index and view info. + + The index of the row. + The view info of the row. + The row element displaying the data for the row, if found, otherwise null. + + + + Gets the row element for the specified row index and view info. + + The index of the row. + The table element of the row. + The row element displaying the data for the row, if found, otherwise null. + + + + Gets the cell element for the specified row and column indices and view info. + + The row index of the cell. + The column index of the cell. + The view info of the cell. + Teh cell element, if found, otherwise false. + + + + Gets the cell element for the specified row and column indices and view info. + + The row index of the cell. + The column index of the cell. + The tabke element of the cell. + Teh cell element, if found, otherwise false. + + + + Widens / shrinks the column at the specified index in the specified view info based on the space required by the text in the cells. + + The index of the column. + + + + Widens / shrinks the column at the specified index in the specified view info based on the space required by the text in the cells. + + The index of the column. + The view info to perform the operation on. + + + + Widens / shrinks all columns based on the space required by the text in the cells. + + + + + Widens / shrinks all columns in the specified view info based on the space required by the text in the cells. + + The view info to perform the operation on. + + + + Cuts the content of the selected cells. + + True if the operation was successful, otherwise false. + + + + Copies the content of the selected cells. + + True if the operation was successful, otherwise false. + + + + Copies the content of the specified cell region to the clipboard. + + The index of the row where the content copy should start. + The index of the column where the content copy should start. + The index of the row where the content copy should end. + The index of the column where the content copy should end. + The view info of the cell region. + + + + Copies the content of the specified cell region to the clipboard. + + The index of the row where the content copy should start. + The index of the column where the content copy should start. + The index of the row where the content copy should end. + The index of the column where the content copy should end. + The view info of the cell region. + Determines whether only selected cells are copied. + Determines whether cell values should be cleard after the copy. + + + + Processes the content of the cells in the specified region and returns a string to be places in the clipboard. + + The format of the data that should be returned. + The index of the row where the content processing should start. + The index of the column where the content processing should start. + The index of the row where the content processing should end. + The index of the column where the content processing should end. + The view info of the cell region. + Determines whether only selected cells are processed. + Determines whether cell values should be cleard after they are processed. + + + + + Pastes the content of the clipboard into starting from the current cell and going on until either the available cells or the clipboard conent ends. + + True if the operatrion is successful, otherwise false. + + + + Gets or sets a value indicating whether users can resize columns through the grid UI. + + + + + Gets or sets a value indicating whether users can resize rows through the grid UI. + + + + + Gets or sets a value indicating whether the header row is visible. + + + + + Gets or sets a value indicating whether the add new row is visible. + + + + + Gets or sets a value indicating whether the filter row is visible. + + + + + Gets or sets a value indicating whether users can sort columns by clicking the header or through the header context menu. + + + + + Gets or sets a value indicating whether the users can sort by more than one column. + + + + + Gets or sets a value indicating whether users can edit the values in data cells. + + + + + Gets or sets a value indicating whether users can delete rows. + + + + + Gets or sets a value indicating whether the Cut option in the context menu and the Ctrl+X shortcut will be available to the user. + + + + + Gets or sets a value indicating whether the Copy option in the context menu and the Ctrl+C shortcut will be available to the user. + + + + + Gets or sets a value indicating whether the Paste option in the context menu and the Ctrl+V shortcut will be available to the user. + + + + + Gets or sets a value indicating whether event and odd rows will have a different back color. + + + + + Gets or sets a value indicating whether right-clicking on a header cell will show the default header cell context menu. + + + + + Gets or sets a value indicating whether right-clicking on a data cell will show the default data cell context menu. + + + + + Gets or sets the default context menu. + + + + + Gets an instance of which holds all rows and columns. + + + + + Gets the main instance of the grid. + + + + + Gets or sets an instance of which handles user input. + + + + + Gets the currently active editor when the grid is in edit mode. + + + + + Gets a object which provides an API for manipulating the selection. + + + + + Gets or sets the current cell. + + + + + Gets or sets a value indicating how cells are selected. + + + + + Gets or sets a value indicating whether multiple cells can be selected simultaneously. + + + + + Gets or sets value indicating whether child views have fixed size [true] or depend on the number of rows they contain [false]. + + + + + Gets the total number of pages when paging is enabled. + + + + + Gets or sets a value indicating whether data is presented in chunks (pages) to the user. + + + + + Gets or sets the number of rows shown per page when paging is enabled. + + + + + Gets or sets the index of the page currently presented in the grid. + + + + + Gets or sets the total number of rows to be displayed in the grid. + + + + + Gets or sets the total number of columns to be displayed in the grid. + + + + + Gets the sort descriptors currently applied to the grid. + + + + + Gets the filter descriptors currently applied to the grid. + + + + + Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order + rather than moving the focus to the next cell in the control. + + + + + Gets or sets a value indicating whether a message should be displayed in the grid when no data is loaded. + + + + + Occurs when a cell is displayed and its content should be updated. + + + + + Occurs when a row is updated and needs formatting. + + + + + Occurs when a cell is updated and needs formatting. + + + + + Occurs when the sort descriptors collection changes. + + + + + Occurs when the filter descriptors collection changes. + + + + + Occurs when a user deletes a row. + + + + + Occurs when a user adds a row. + + + + + Occurs after the current page index changes. + + + + + Occurs before the current page index changes. + + + + + Occurs when a new row element has to be created. + + + + + Occurs when a new cell element has to be created. + + + + + Occurs when the editor of a cell is initialized. + + + + + Occurs when an editor for a cell is required. + + + + + Occurs when a cell value is edited and should be stored in the data source. + + + + + Occurs before the value of a cell is changed. + + + + + Occurs after the value of a cell has been changed. + + + + + Occurs before the current cell changes. + + + + + Occurs after the current cell changes. + + + + + Occurs when the context menu is about to be opened. + + + + + Occurs before the selection changes. + + + + + Occurs after the selection changes. + + + + + Occurs before a row is expanded. + + + + + Occurs after a row is expanded. + + + + + Occurs before a row is collapsed. + + + + + Occurs after a row is collapsed. + + + + + Occurs before the width of a column changes. + + + + + Occurs after the width of a column changes. + + + + + Occurs before a row height changes. + + + + + Occurs after a row height changes. + + + + + Occurs when a cell is clicked. + + + + + Occurs when a cell is double clicked. + + + + + Occurs when the mouse is moved over a cell. + + + + + Occurs after a cell is painted allowing users to draw on top of it. + + + + + Occurs after a row is painted allowing users to draw on top of it. + + + + + Occurs before a cell is validated. + + + + + Occurs before a row is validated. + + + + + Occurs after a row is validated. + + + + + Occurs when the content of cell(s) is copyed. Allows users to modify the operation or content. + + + + + Occurs when the content of cell(s) is about to be pasted. Allows users to modify the operation or content. + + + + + Occurs when a property of the view info changes. + + + + + Occurs when a row has to determine if it has child rows. + + + + + Gets or sets the method for entering edit mode. + + + + + Gets or sets the behavior of the Enter key when pressed while in edit mode. + + + + + Gets a value indicating whether the grid is in edit mode. + + + + + Creates the specific states. + + + + + + Adds the default visible states. + + The state manager. + + + + Creates the specific states. + + + + + + Adds the default visible states. + + The state manager. + + + + Creates the enabled states. + + + + + + Creates the specific states. + + + + + + Adds the default visible states. + + The sm. + + + + Represents the data cell in RadVirtualGrid. + + + + + Initializes a new instance of the class. + + Index of the row. + Index of the column. + The view info. + + + + Gets the index of the row. + + The index of the row. + + + + Gets the index of the column. + + The index of the column. + + + + Gets the view info. + + The view info. + + + + Stores information about row sizes and provides methods for fast scrolling among millions of rows. + The class only stores the sizes of rows which have been resized and uses additional structures to + allow fast calculation of target state when scrolling with large amounts. + + + + + Keeps the sizes only of the resized items + + + + + Keeps the partial sum of sizes up to a given item i.e. the scroll distance from the beginning + to the bottom of the specified item. The key is the index of the item, the value is the sum of item sizes up to + the bottom of that item. Has entries only for the resized items. Allows to quickly + calculate the distance between two resized items. Keeps the entries sorted in an increasing order + of items' indices (allows for quick lookup via binary search). Updated when the itemSizes dictionary changes. + + + + + Initializes a new instance of the class. + + The item count. + Default size of the item. + The item spacing. + The supports paging. + + + + Suspends calling UpdateOnItemSizeChanged() + + + + + Resumes calling UpdateOnItemSizeChanged(), forces an update. + + + + + Sets a custom size to the item with a given index. + + The index of the item. + The custom size to set. + + + + Returns a read-only collection of the sizes of the item. + + Returns a read-only collection of the sizes of the item. + + + + Gets the currently set size of an item with a given index. Checks if the item is pinned or expanded. + Return 0 for pinned items and the total expanded size for expanded items. + + The index of the item. + The size of the item. + + + + Gets the currently set size of an item with a given index. Checks if the item is pinned or expanded. + Return 0 for pinned items and the total expanded size for expanded items. + + The index of the item. + Determines if an item should be considered pinned if it is pinned. + The size of the item. + + + + Gets the currently set size of an item with a given index. Checks if the item is pinned or expanded. + Return 0 for pinned items and the total expanded size for expanded items. + + The index of the item. + Determines if an item should be considered pinned if it is pinned. + Determines if an expanded row should include its child view size. + The size of the item. + + + + Sets the size of the item when it is expanded. + + The index of the item. + The size. + + + + Resets the size of the item when it is expanded. + + The index of the item. + + + + Updates the internal structures when the size of an item changes. Needed for proper calculations of scroll offsets. + See the description of [partialItemSizes] and [itemSizes] for more info. + + + + + Calculates the total size of all items, using the ItemCount, DefaultItemSize, ItemSpacing, and considering the resized items. + Used to calculate the maximum for the scrollbar. + + The total item size. + + + + Calculates and returns the scroller position and offset if scrolled down from the bottom of item [startIndex] with [scrollOffset]. + + The current item from the scroller (the scroll operation starts from the bottom of this item). + The amount to scroll with. + Returns the index of the item which should be set as Current to the scroller. + Return the new scroll offset which should be set to the scroller after the Current has been set. + + + + Calculates and returns the scroller position and offset if scrolled up from the bottom of item [startIndex] with [scrollOffset]. + + The current item from the scroller (the scroll operation starts from the bottom of this item). + The amount to scroll with. + Returns the index of the item which should be set as Current to the scroller. + Return the new scroll offset which should be set to the scroller after the Current has been set. + + + + Finds a resized item with an index, larger than [startIndex]. Uses binary search to quickly lookup the index. + If there are no resized items after [startIndex], returns -1. + + The index after which resized items should be searched. + Returns the index of the found item in [partialItemSizes] for future use. + Returns the index of the found resized item, or -1 if no such item is found after [startIndex]. + + + + Finds a resized item with an index, smaller than [startIndex]. Uses binary search to quickly lookup the index. + If there are no resized items before [startIndex], returns -1. + + The index before which resized items should be searched. + Returns the index of the found item in [partialItemSizes] for future use. + Returns the index of the found resized item, or -1 if no such item is found after [startIndex]. + + + + Finds the last resized item which is after [startIndexInArray] in the [partialItemSizes] list and also fits entirely + into the scrollOffset. This means that, starting from the top of the item at [startIndexInArray], the distance to + the found item's bottom should be less than or equal to the scrollOffset. After the method completes, the [startIndex] + must be set to the found resized item's index, and the [scrollOffset] must be updated with the remainder as if we scrolled + to the bottom of the found item. + + The index of the start item in the [partialItemSizes]. + The offset to scroll with. Should be updated when a new target item is found. + This variable should be updated with the index of the found item. + + + + Finds the first resized item which is before [startIndexInArray] in the [partialItemSizes] list and also fits entirely + into the scrollOffset. This means that, starting from the top of the item at [startIndexInArray], the distance to + the found item's top should be less than or equal to the scrollOffset. After the method completes, the [startIndex] + must be set to the found resized item's index, and the [scrollOffset] must be updated with the remainder as if we scrolled + to the top of the found item. + + The index of the start item in the [partialItemSizes]. + The offset to scroll with. Should be updated when a new target item is found. + This variable should be updated with the index of the found item. + + + + Determines whether the item at the specified index is pinned. + + The index of the item. + True if the item is pinned, otherwise false. + + + + Sets the pin position of the specified item. + + The index of the item. + The pin position. + + + + Gets the pin position of the specified item. + + The index of the item. + The pin position of the specified item. + + + + Gets the total offset from the beginning of the items to the top edge of the specified item. + The method does not consider if paging is enabled. + + The index of the item. + The total offset. + + + + Gets the scroll offset from the beginning of the items in the current view to the top edge of the specified item. + The method considers if paging is enabled. + + The index of the item. + The total offset. + + + + Resets the collections with sized items. + + + + + Fires when the DPI scaling is changed. + + The scale. + + + + Fires the event. + + The old value. + The new value. + + + + + Fires the event. + + + + + Gets a value indicating whether paging is supported by this instance. + + + + + Gets the total number of pages when paging is enabled. + + + + + Gets or sets a value indicating whether data is presented in chunks (pages) to the user. + + + + + Gets or sets the number of rows shown per page when paging is enabled. + + + + + Gets or sets the index of the page currently presented in the grid. + + + + + Gets a read only collection of all the items pinned at the top of the view. + + + + + Gets a read only collection of all the items pinned at the bottom of the view. + + + + + Gets or sets the total number of items to be displayed. + + + + + Gets or sets the default size of items which have never been resized. + + + + + Gets or sets the spacing between adjucent items. + + + + + Gets the current DPI scale factor. + + + + + Occurs before the page index changes. + + + + + Occurs after the page index changes. + + + + + This property is only used for serialization purposes. + + + + + This property is only used for serialization purposes. + + + + + This property is only used for serialization purposes. + + + + + This property is only used for serialization purposes. + + + + + Represents the view info. + + + + + Initializes a new instance of the class. + + The parent view info. + Index of the parent row. + + + + Initializes a new instance of the class. + + The grid element. + + + + Initializes the view info. + + + + + Expands the specified row. + + The row index to expand. + True if the operation is successful, otherwise false. + + + + Collapses the specified row. + + The row index to collapse. + True if the operation is successful, otherwise false. + + + + Returs a value indicating whether the specified row is expanded. + + The index of the row. + True if the row is expanded, otherwise false. + + + + Sets the height of the row at the specified row index in the master view info. + + The index of the row. + The new height of the row. + + + + Gets the height of the row at the given row index. + + The index of the row. + The height of the row. + + + + Gets the height of the column at the given column index. + + The index of the column. + The height of the column. + + + + Sets the width of the column at the specified column index in the master view info. + + The index of the column + The new width of the column. + + + + Sets the pin position of the specified row. + + The index of the row. + The new pin position. + + + + Gets the row pin position. + + Index of the row. + + + + + Sets the pin position of the specified column. + + The index of the column. + The new pin position. + + + + Gets the column pin position. + + Index of the column. + + + + + Returs a value indicating whether the specified row is pinned. + + The index of the row. + True if the row is pinned at top or bottom, otherwise false. + + + + Returs a value indicating whether the specified column is pinned. + + The index of the column. + True if the column is pinned at left or right, otherwise false. + + + + Gets the child view info for the specified row. + + The index of the row. + The child view info if it exists, otherwise null. + + + + Gets the child view info for the specified row. + + The index of the row. + Determines if a new child view info should be created if one does not exist. + The child view info if it exists, otherwise null. + + + + Creates a child view info for the specified row. + + The index of the row. + A new instance of . + + + + Moves the current view to the specified page index. + + The index of the page. + + + + Moves the current view to the first page. + + + + + Moves the current view to the previous page index. + + + + + Moves the current view to the next page index. + + + + + Moves the current view to the last page. + + + + + Sets the row error text for the specified row. Setting the error text to null has the same effect as calling + + The index of the row. + The error text. + + + + Returns a value indicating whether the row has error text assigned to it. + + The index of the row. + True if the row has error text assigned to it, otherwise false. + + + + Returns the error text for the specified row. + + The index of the row. + The error text if the row has one, otherwise null. + + + + Clears the error text of the specified row. + + The index of the row. + + + + Marks the specified row as waiting. This will display a waiting indicator in the row indent cell. + + The index of the row. + + + + Removes the mark of the specified row as waiting. This will hide the waiting indicator in the row indent cell. + + Index of the row. + + + + Returns a value indicating whether the specified row is marked as waiting. + + The index of the row. + True if the row is marked as waiting, otherwise faslse. + + + + Sets the data type of the column. This affects the editors in the column and the available filter options. + + The index of the column. + The type of the data in the column. + + + + Sets the specified data types as the data type of the columns in the view info. The assignment starts from the first column and ends where the specified data types end. + Data types affect the editors in the columns and the available filter options for each column. + + The data types. + + + + Gets the data type of the specified column. + + The index of the column. + The data type of the column if one is assigned to it, otherwise null. + + + + Registers the column as one containing custom cells. This prevents default cells from being displayed in that column. + + The index of the column. + Returns true if the registration is successful, otherwise false. + + + + Removes the column registration as one containing custom cells. + + The index of the column. + Returns true if the registration removal is successful, otherwise false. + + + + Returns a value indicating whether the specified column is registerd as custom. + + The index of the column. + True if the column is registered as custom, otherwise false. + + + + Resets the view states of the view. Resets row heights, pin positions, expanded state, column widths and column pin positions. + + + + + Binds the properties. + + The source. + + + + Unbinds the properties. + + The source. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Handles the property change. + + Name of the property. + + + + Gets the total height of the row. + + + + + + Gets or sets a value indicating whether users can edit the values in data cells. + + + + + Gets or sets a value indicating whether users can delete rows. + + + + + Gets or sets a value indicating whether the Cut option in the context menu and the Ctrl+X shortcut will be available to the user. + + + + + Gets or sets a value indicating whether the Copy option in the context menu and the Ctrl+C shortcut will be available to the user. + + + + + Gets or sets a value indicating whether the Paste option in the context menu and the Ctrl+V shortcut will be available to the user. + + + + + Gets or sets a value indicating whether event and odd rows will have a different back color. + + + + + Gets or sets a value indicating whether right-clicking on a header cell will show the default header cell context menu. + + + + + Gets or sets a value indicating whether right-clicking on a data cell will show the default data cell context menu. + + + + + Gets or sets a value indicating whether users can resize columns through the grid UI. + + + + + Gets or sets a value indicating whether users can resize rows through the grid UI. + + + + + Gets or sets a value indicating whether users can sort columns by clicking the header or through the header context menu. + + + + + Gets or sets a value indicating whether the users can sort by more than one column. + + + + + Gets or sets the minimum height a data row can be. + + + + + Gets or sets the minimum width a column can be. + + + + + Gets or sets the of the horizontal scroll bar. + + + + + Gets or sets the of the vertical scroll bar. + + + + + Gets or sets a value indicating how column widths are determined. + + + + + + Gets or sets the amount of padding to be applied to child views. + + + + + Gets or sets a value indicating whether the header row is visible. + + + + + Gets or sets a value indicating whether the filter row is visible. + + + + + Gets or sets a value indicating whether the add new row is visible. + + + + + Gets or sets the height of the filter row. + + + + + Gets or sets the height of the add new row. + + + + + Gets or sets the height of the header row. + + + + + Gets or sets the default height of the data rows. + + + + + Gets or sets the space between adjucent rows. + + + + + Gets or sets a value indicating whether the busy indicator of the current view is visible. + + + + + Gets a dictionary containing a cache of the values entered in the filter row. The key is the column index. + + + + + Gets a dictionary containing a cache of the values entered in the new row. The key is the column index. + + + + + Gets an instance of which is the main element of this control. + + + + + Gets the sort descriptors currently applied to the grid. + + + + + Gets the filter descriptors currently applied to the grid. + + + + + Gets the index of the parent row when the current view is a child view. + + + + + Gets a value indicating whether this view's parent row is expanded. + + + + + Gets or sets the name of the view. + + + + + Gets or sets an object used for storing any user data. + + + + + Gets the total number of pages when paging is enabled. + + + + + Gets or sets a value indicating whether data is presented in chunks (pages) to the user. + + + + + Gets or sets the number of rows shown per page when paging is enabled. + + + + + Gets or sets the index of the page currently presented in the grid. + + + + + Gets the parent view info when the current view info is a child view info. + + + + + Gets the hierarchy level of the current view. + + + + + Gets or sets the height of the current view when it is a child view and UseScrollbarsInHierarchy is set to true. + + + + + Gets an containing information and settings for the currently displayed rows. + + + + + Gets an containing information and settings for the currently displayed columns. + + + + + Gets or sets the total number of rows to be displayed in the grid. + + + + + Gets or sets the total number of columns to be displayed in the grid. + + + + + Gets or sets the default column width. + + + + + Gets or sets the distance betwween adjucent cells. + + + + + This property is only used for serialization purposes. + + + + + This property is only used for serialization purposes. + + + + + This class extends the default table layout in RadGridView with column groups. + + + + + This class implements the default table layout in RadGridView. + + + + + This interface defines methods used to layout the grid view + + + + + Creates a new visual element for the grid + + The object that owns the visual element. + If successfull, the new . + + + + Initializes a new instance of the class. + + + + + Creates the view UI element. + + The view info. + + + + + Gets the collection containing column groups. + + + + + Represents a column group in RadGridView with a ColumnGroupsViewDefinition. + Each group can either have subgroups or rows which contain data columns. + + + + + Initializes a new instance of the GridViewColumnGroup class. + + + + + Initializes a new instance of the GridViewColumnGroup class. + + The text displayed in the group. + + + + Initializes a new instance of the class. + + The text displayed in the group. + The name of the group. + + + + Finds the GridViewTemplate which owns this group. The method will return non-null value + only when the group has been added to a view definition hierarchy and the view definition + has been set to a template. + + + + + + Gets or sets a value indicating whether group header is visible. + Works only for top level groups. + + true if the group header is visible; otherwise, false. + + + + Gets a collection containing the subgroups of the current group. + + + + + Gets a collection containing the rows of the current group. + + + + + Gets or sets the column group text. + + + + + Gets or set the vertical span of the group (the height) in pixels. + + + + + Gets the parent column group. + + + + + Gets the root column group. + + + + + Gets the ViewDefinition of the group. Has value only on root groups. + + + + + Gets or sets a value indicating whether the column group is pinned + and cannot be moved from its location when a user scrolls horizontally. + Only the root column groups can be pinned. + + + + + Gets or sets the pin position for the row. When the column is pinned, + it cannot be moved from its location when a user scrolls horizontally. + + + + + Gets or sets a value indicating whether the group is visible. + + + + + Gets or sets value indicating whether the user can hide the group. + + + + + Gets or sets a value indicating whether the group will be visible in . + + + Use this property if you want to hide groups from the user. + + + + + Gets or sets value indicating whether the user can reorder the group using mouse. + + + + + Gets or sets the name of the group. + + + + + Gets or sets the tag of the group. + + + + + Represents a row in a column group in a RadGridView with ColumnGroupsViewDefinition set. + + + + + A collection containing the names of the columns in this row. The actual rows will be resolved + when the view definition is asigned to a template. + + + + + Gets or sets the minimum height of the row. If the property is not set, + the row height will be equal to the maximum RowSpan of the columns in that row. + + + + + Collection of s that will be contained in a . + + + + Gets the that owns this collection. + + + + Collection of s that will be contained in a . + + + + + Calls the NotifyListenersCollectionChanged method with the provided arguments if not in a batch update. + + + + + + Gets the that owns this collection. + + + + + This class contains information that specifies how to arrange and display a single cell in the + when a is used. + + + + + Initializes a new instance of the class using default values. + + + + + Initializes a new instance of the class using specified unique name. + + The unique name for the column that will be presented by this cell + + + + Initializes a new instance of the class. + + The unique name for the column that will be presented by this cell + The desired width of this CellDefinition. + The desired column span value + The desired row span value + + + + Gets the that owns this . + + + + + Gets the row index of this CellDefinition. + + + + + Gets the column index of this CellDefinition. + + + + + Gets or sets the unique name of the column related with this . + + + + + Gets or sets the desired width of this . + + + + + Gets or sets the cell span value of this CellDefinition. + + + + + Gets or sets the row span value of this CellDefinition. + + + + + Gets or sets the background color of this . + + + + + Gets or sets the border width for this . + + + + + This class contains information that specifies how to arrange and display a single row in the + when a is used. + + + + + Initializes a new instance of the class using the default height. + + + + + Initializes a new instance of the class. + + The desired height of this RowDefinition. + + + + Gets the that owns this . + + + + + Gets a collection that contains all the cell definitions in the . + + + + + Gets the at the specified index. + + The zero based index of the cell to get + The at the specified index. + + + + Gets or sets the desired height of this . + + + + + Gets or sets the background color of this . + + + + + This class contains information that specifies how to arrange and display rows in the . + + + + + Initializes a new instance of the class. + + + + + Reads XML data into the using the specified file. + + The filename (including the path) from which to read. + + + + Reads XML data into the using the specified System.IO.Stream. + + The Stream from which to read. + + + + Writes the current contents of the as XML using the specified file. + + The file to which to write the XML data. + + + + Writes the current contents of the as XML using the specified Stream. + + The stream to which the data will be written. + + + + Gets a collection that contains all the row definitions in the . + + + + + Gets the at the specified index. + + The zero based index of the row to get + The at the specified index. + + + + Gets the at the specified row and column + + The zero based row index of the row containing the cell + The zero based column index of the column containing the cell + The at the spfecified row and column + + + + Gets or sets the cell spacing for this . + + + + + Gets or sets the cell padding for this . + + + + + Gets or sets the border width for this . + + + + + Reads XML data into the using the specified file. + + The filename (including the path) from which to read. + + + + Reads XML data into the using the specified System.IO.Stream. + + The Stream from which to read. + + + + Gets or sets a the row template that specifies how to visualize the rows in this template. + + + + + This interface defines methods used to change the currently selected row and column + + + + + Initializes the IGridNavigator with the specified RadGridView + + The RadGridViewElement to associate with this object + + + + Begins grid selection + + An instance of . + + + + Ends selection + + + + + Selects the sepcified row as current and specified column as current + + An instance of . + An instance of . + + + + Selects the first row as current column in grid + + true if successfull. + + + + Selects the last row as current column in grid + + true if successfull. + + + + Selects the specified row as current row in grid + + The GridViewRowInfo to be selected + true if successfull. + + + + Selects the row at specified distance after the current position as current row in grid + + The distance to the row + true if successfull. + + + + Selects the row at specified distance before the current position as current row in grid + + The distance to the row + true if successfull. + + + + Checks whether the specified row is the last one. + + the row to check + true if this is the last row + + + + Checks whether the specified row is the first one. + + the row to check + true if this is the first row + + + + Selects the first column as current column in grid + + true if successfull. + + + + Selects the last column as current column in grid + + true if successfull. + + + + Selects the next column as current column in grid + + true if successfull. + + + + Selects the previous column as current column in grid + + true if successfull. + + + + Checks whether the specified column is the last one. + + the column to check + true if this is the last column + + + + Checks whether the specified column is the first one. + + the column to check + true if this is the first column + + + + Checks whether the specified column is the last editable one. + + the column to check + true if this is the last editable column + + + + Checks whether the specified column is the first editable one. + + the column to check + true if this is the first editable column + + + + Deletes the selected rows. + + + + + Clears the selection + + + + + Select all rows and cells + + + + + Gets the master gridelement associated with this navigator + + + + + Provides localization services for RadGridView + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Click here to add a new row. + + + + + Looks up a localized string similar to Best Fit. + + + + + Looks up a localized string similar to Clear Sorting. + + + + + Looks up a localized string similar to ColumnInfo Chooser. + + + + + Looks up a localized string similar to Drag a column header from the\ngrid here to remove it from\nthe current view.. + + + + + Looks up a localized string similar to ColumnInfo Chooser. + + + + + Looks up a localized string similar to Add. + + + + + Looks up a localized string similar to Apply. + + + + + Looks up a localized string similar to Cancel. + + + + + Looks up a localized string similar to OK. + + + + + Looks up a localized string similar to Remove. + + + + + Looks up a localized string similar to Custom Formatting Condition Editor. + + + + + Looks up a localized string similar to Apply to row. + + + + + Looks up a localized string similar to Conditions. + + + + + Looks up a localized string similar to Properties. + + + + + Looks up a localized string similar to ColumnInfo:. + + + + + Looks up a localized string similar to Name:. + + + + + Looks up a localized string similar to Type:. + + + + + Looks up a localized string similar to Value 1:. + + + + + Looks up a localized string similar to Value 2:. + + + + + Looks up a localized string similar to Conditional Formatting. + + + + + Looks up a localized string similar to Copy. + + + + + Looks up a localized string similar to Cancel. + + + + + Looks up a localized string similar to OK. + + + + + Looks up a localized string similar to RadGridView Custom Filter Dialog. + + + + + Looks up a localized string similar to Show rows where:. + + + + + Looks up a localized string similar to And. + + + + + Looks up a localized string similar to Or. + + + + + Looks up a localized string similar to Custom. + + + + + Looks up a localized string similar to Delete RowInfo. + + + + + Looks up a localized string similar to Edit. + + + + + Looks up a localized string similar to Between. + + + + + Looks up a localized string similar to Contains. + + + + + Looks up a localized string similar to Custom. + + + + + Looks up a localized string similar to Does not contain. + + + + + Looks up a localized string similar to Ends with. + + + + + Looks up a localized string similar to Equals. + + + + + Looks up a localized string similar to Greater than. + + + + + Looks up a localized string similar to Greater than or equal to. + + + + + Looks up a localized string similar to Is empty. + + + + + Looks up a localized string similar to Is null. + + + + + Looks up a localized string similar to Less than. + + + + + Looks up a localized string similar to Less than or equal to. + + + + + Looks up a localized string similar to No filter. + + + + + Looks up a localized string similar to Not between. + + + + + Looks up a localized string similar to Not equal to. + + + + + Looks up a localized string similar to Is not empty. + + + + + Looks up a localized string similar to Is not null. + + + + + Looks up a localized string similar to Starts with. + + + + + Looks up a localized string similar to Group by this column. + + + + + Looks up a localized string similar to Hide ColumnInfo. + + + + + Looks up a localized string similar to Paste. + + + + + Looks up a localized string similar to Pin ColumnInfo. + + + + + Looks up a localized string similar to Sort Ascending. + + + + + Looks up a localized string similar to Sort Descending. + + + + + Looks up a localized string similar to Ungroup this column. + + + + + Looks up a localized string similar to Unpin ColumnInfo. + + + + + Represents localization provider for RadGridView that uses the project resources. + + + + + Initializes a new instance of the . + + + + + Creates the resource manager. + + + + + Gets the + + + + + Represents localization strings in RadGridView. + + + + + This class determines the anchored position during navigation + + + + + Initializes a new instance of the class. + + + + + + + Gets or sets the anchored row position + + + + + Gets or sets the anchored column + + + + + This class defines methods used to change the currently selected row and column + + + + + Initializes the IGridNavigator with the specified RadGridView + + The RadGridViewElement to associate with this object + + + + Select all rows and cells + + + + + Clears the selection + + + + + Deletes the selected rows. + + + + + Begins grid selection + + An instance of . + + + + Ends selection + + + + + Selects the sepcified row as current and specified column as current + + An instance of . + An instance of . + + + + Selects the override. + + The row. + The column. + + + + + Returns a boolean value indicating whether the full row is selected. + + The old current row. + The row. + + + + + Does the multi select. + + The old row. + The old column. + The row. + The column. + + + + + Does the multi select core. + + + + + + Selects the first row as current column in grid + + true if successfull. + + + + Selects the last row as current row in grid + + true if successfull. + + + + Selects the specified row as current row in grid + + The GridViewRowInfo to be selected + true if successfull. + + + + Selects the row at specified distance after the current position as current row in grid + + The distance to the row + true if successfull. + + + + Selects the row at specified distance before the current position as current row in grid + + The distance to the row + true if successfull. + + + + Checks whether the specified row is the last one. + + the row to check + true if this is the last row + + + + Checks whether the specified row is the first one. + + the row to check + true if this is the first row + + + + Selects the first column as current column in grid + + true if successfull. + + + + Selects the last column as current column in grid + + true if successfull. + + + + Selects the next column as current column in grid + + true if successfull. + + + + Selects the previous column as current column in grid + + true if successfull. + + + + Checks whether the specified column is the last one. + + the column to check + true if this is the last column + + + + Checks whether the specified column is the first one. + + the column to check + true if this is the first column + + + + Checks whether the specified column is the first editable one. + + the column to check + true if this is the first editable column + + + + Checks whether the specified column is the last editable one. + + the column to check + true if this is the last editable column + + + + The RadGridViewElement associated with this navigator + + + + + The MasterTemplate associated with this navigator + + + + + Gets the GridViewInfo associated with the CurrentView in grid + + + + + Gets the GridViewTemplate associated with the CurrentView in grid + + + + + Gets the render columns associated with the CurrentView in grid + + + + + Gets grid's current row + + + + + Gets grid's current column + + + + + Gets the column index of the current column in grid + + + + + Gets a value that indicates whether Mouse Selection is performed + + + + + Gets a value that indicates whether right mouse button is performed + + + + + Gets a value that indicates whether the SHIFT button is performed + + + + + Gets a value that indicates whether the CONTROL button is performed + + + + + Gets a value indicating whether the grid is in right-to-left mode + + + + + A class that represents basic logic for grid editor + + + + + Initializes a new instance of the class. + + An instance of that determines the input device + An instance of indicating which of mouse buttons is in pressed state + An instance of indicating which of the modifier keys (SHIFT, CONTROL and ALT) is in pressed state + + + + Gets the type of the input. + + The type of the input. + + + + Gets a value indicating which of mouse buttons is in pressed state + + + + + Gets a value indicating which of the modifier keys (SHIFT, CONTROL and ALT) is in pressed state + + + + + + + + + + + + + + + + + + + + + + + + + Represents an expander that is drawn in expander cells + + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Represents an expander that is drawn in expander cells in self-referencing mode + + + + + Initializes an instance of . + + + + + Implements scrolling logic for a grid's rows + + + + + Initialize an instance of . + + The associated instance of . + + + + Fired when ToolTip needs text + + Event sender + An instance of . + + + + Gets the associated instance of . + + Returns the associated instance of .. + + + + Initializes a new instance of the class. + + The item. + + + + Initializes the drag hint. + + + + + + Sets the element tree. + + The value. + + + + Determines whether the element may be dragged. + + + + + + + Gets the context, associated with a drag operation. + + + + + + Gets the image to be used as a hint when this element is being dragged. + + + + + + Gets the item. + + The item. + + + + Represents the rectangle which surrounds the element bounds after the rotation caused by setting the AngleTransform property to some degree. The rectangle is in control coordinates. + + + + + + Gets a reference to the tree object, that contains information about the scene where the element is currently visualized. + + + + + + An animation factory used for rows animations in RadGridView. + + + + + Gets the expand animation related with the specified animation type. + + The table element. + + + + + Abstract class that defines methods used to animate rows in RadGridView. + + + + + Initializes a new instance of the class. + + The table element. + + + + Raises the event. + + The instance containing the event data. + + + + Stats expand animation for group rows in RadGridView. + + The desired + the offset + the row index + + + + Starts collapse animation for group rows in RadGridView. + + The desired + the offset + the row index + + + + Occurs when an update of the view is needed. + + + + + Gets the table element. + + The table element. + + + + Gets or sets whether it is animating. + + The is animating. + + + + Implements accordion annimation for group rows in RadGridView. + + + + + Initializes a new instance of the class. + + The table element. + + + + Starts expand animation for group rows in RadGridView. + + + the offset + the row index + + + + Starts collapse animation for group rows in RadGridView. + + The desired + the offset + the row index + + + + Implements fade animation for group rows in RadGridView. + + + + + Initializes a new instance of the class. + + The table element. + + + + Starts expand animation for group rows in RadGridView. + + + the offset + the row index + + + + Starts collapse animation for group rows in RadGridView. + + The desired + the offset + the row index + + + + Implements fade animation setting for group rows in RadGridView. + + + + + Initializes a new instance of the class. + + The property. + The animation start value. + The animation end value. + The number of frames. + The interval. + + + + Gets or sets the index of the row. + + The index of the row. + + + + Implements gradient wipe annimation for group rows in RadGridView. + + + + + Initializes a new instance of the class. + + The table element. + + + + Stats expand animation for group rows in RadGridView. + + + the offset + the row index + + + + Starts collapse animation for group rows in RadGridView. + + The desired + the offset + the row index + + + + Implements slide annimation for group rows in RadGridView. + + + + + Initializes a new instance of the class. + + The table element. + + + + Stats expand animation for group rows in RadGridView. + + + the offset + the row index + + + + Starts collapse animation for group rows in RadGridView. + + The desired + the offset + the row index + + + + Implements a host item that holds RadGridView inside. + + + + + Initializes a new instance of the . + + + + + Gets the hosted + + + + + This class represents a RadGridView control that is + used in the RadMultiColumnComboBox control. + + + + + Represents a popup form containing RadGridView. + + + + + Initializes the class. + + + + + Initializes a new instance of the . + + + + + + Initializes the editor element + + + + + Finds the first item in the list box that starts with the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Finds all items in the list box that starts with the specified string. + + The string to search for. + Collection of items that match the criteria. + + + + Finds the first item in the list box that matches the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Finds the first item in the list box that matches the specified string. + + The string to search for. + The field name to be used for the search. + The zero-based index of the first item found; returns null if no match is found. + + + + Gets the editor element (an instance of ) contained in the form + + + + + Gets or sets whether the nested RadGridView content will be filtered by the DisplayMember + field automatically. This property clears the contents of the filtering collections of RadGridView. + + + + + Gets the owner combobox associated with this popup form. + + + + + Gets the editor control (an instance of ) contained in the form + + + + + This enumerator defines the states of a Popup Editor. + This enumerator is used internally in a Popup Editor + to differentiate between states and thus properly + manage the user input. + + + + + The Popup editor is ready for user input. + + + + + The user types in the text editor of the control. + + + + + A complete match of the user input is found in the data and + displayed in the text editor of the control. + + + + + The user selects the next item in the control by double + clicking on the text editor. + + + + + The user selects an item from the popup of the editor. + + + + + Represents a multi column combo box control. + + + + + Initializes the class. + + + + + Initializes a new instance of the . + + + + + Wires all events. + + + + + Unwires all events. + + + + + Raises the CaseSensitiveChanged event. + + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosed event. + + + + + Raises the DropDownClosing event. + + An instance of the RadPopupClosingEventArgs which contains information about the event. + + + + Raises the DropDownOpening event. + + An instance of the CancelEventArgs which contains information about the event. + + + + Raises the DropDownStyleChanged event. + + + + + Raises the SelectedIndexChanged event. + + + + + Raises the SelectedValueChanged event. + + + + + Raises the SortedChanged event. + + + + + Ends the initialization of a RadComboBox control that is used on a form or used by another component. + The initialization occurs at run time. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. Applies only on the visible rows. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + Determines whether to adjust drop-down size according to columns width + Determines whether to calculate the optimal with by iterating all rows (including non-visible rows). + + + + Gets or set the value in Milliseconds indicating delay between last key press and filtering operation + + + + + Determines whether the drop-down portion of the control will be auto-sized to best fit all columns. + + + + + Specifies the mode for the Text clearing if the text does not match the text in the DisplayMembar column. + + + + + Specifies the mode for the automatic completion feature used in the MultiColumnComboBox. + + + + + Gets a collection that contains all the columns in the grid contained in the drop down. + + + + Gets or sets displayed text., + + + + Rotate items on double click in the edit box part + + + + + Gets or sets a boolean value determining whether the user can scroll through the items + when the popup is closed by using the mouse wheel. + + + + + Gets the hosted RadMultiColumnComboBoxElement. + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, vertical or a combination of them. + + + + + Gets or sets the text that is displayed when the Text property contains empty string or is null. + + + + + + + + The input control hosted in the popup form. In the case of + RadMultiColumnComboBox the control is a RadGridView. + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value specifying the style of the combo box. + + + + + Determines whether the drop-down portion of the control will be auto-sized to best fit all columns. + The DropDownWidth property must be set to its default value (-1) to allow this setting to work properly. + + + + + Determines whether the drop-down height will be auto-sized when filtering is applied. + + + + + Gets or sets the minimum size allowed for the drop-down of the + control. + + + + + Gets or sets the maximum size allowed for the drop-down of the + control. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Occurs when the data binding process finishes. + + + + + Occurs when the CaseSensitive property has changed. + + + + + Occurs before the drop-down window appears. + + + + + Occurs when the drop-down window has closed. + + + + + Occurs when the drop-down window is about to close. + + + + + Occurs when the drop-down window is about to open. + + + + + Occurs when the DropDownStyle property has changed. + + + + + Occurs when the SelectedIndex property has changed. + + + + Fires when the selected value is changed. + + + + Occurs when the Sorted property has changed. + + + + + Represents a multi column combo box element. The RadMultiColumnComboBox + class is a simple wrapper for the RadMultiColumnComboBoxElement class. The + RadMultiColumnComboBox acts to transfer events to and from its + corresponding RadMultiColumnComboBoxElement instance. The RadMultiColumnComboBoxElement which is + essentially the RadMultiColumnComboBox control may be nested in + other telerik controls. The RadMultiColumnComboBoxElement class implements all logical and UI + functionality. + + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Wires the popup form events. + + The popup. + + + + Unwires the popup form events. + + The popup. + + + + Initializes the provider. + + value to be pre-loaded inside the initialized editor. + + + + Call BeginUpdate at the beginning of a block that makes many modifications in the GUI + + + + + + Call BeginUpdate at the end of a block that makes many modifications in the GUI + + + + + + Ends the initialization of a RadComboBoxElement control that is used on a form or used by another component. + The initialization occurs at run time. + + + + + Call the GetItemHeight member function to retrieve the height of list items in a combo box. + + Specifies the item of the combo box whose height is to be retrieved. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. Applies only on the visible rows. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + Determines whether to adjust drop-down size according to columns width + Determines whether to calculate the optimal with by iterating all rows (including non-visible rows). + + + + Processes the filter descriptor. + + The descriptor. + The text to search. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Notifies for a change in the Parent value. + + The previous parent element (if any) + + + + Raises the DoubleClick event. + + + + + + Processes the key down. + + The sender. + The instance containing the event data. + + + + Processes the text key up. + + The sender. + The instance containing the event data. + + + + Processes the page up down keys. + + The instance containing the event data. + + + + Processes the delete key. + + The instance containing the event data. + + + + Processes the Escape key + + An instance of + true if the event is processed, false otherwise + + + + Processes the Enter key + + An instance of + + + + Processes the text changed. + + The sender. + The instance containing the event data. + + + + Sets the current state of the control to a provided one. + + The state which to set the control to. + + + + Reset the state of the control to Ready. + + + + + Scrolls to home. + + + + + Scrolls the item into view. + + The item. + + + + Sets the append auto complete. + + The instance containing the event data. + + + + Selects the previous item. + + + + + Selects the next item. + + + + + Selects the first row. + + + + + Sets the active item. + + The item. + + + + Sets the active item. + + The text. + + + + Allows previewing of an event that is about to be dispatched. + + + + + + + Core entry point for receiving and processing an event. + + + + + + + Allows additional processing of an event that has been just dispatched. + + + + + + + Specifies the mode for the Text clearing if the text does not match the text in the DisplayMembar column. + + + + + Specifies the mode for the automatic completion feature used in the ComboBox + and the TextBox controls. + + + + + Gets a value from the + enumerator that represents the current state + of the MultiColumnComboBox control. + + + + + The input control hosted in the popup form. In the case of + RadMultiColumnComboBoxElement the control is a RadGridView. + + + + + Gets a collection that contains the all columns in the . + + + + + Gets a collection that contains the all rows in the . + + + + + + + + Determines whether the drop-down portion of the control will be auto-sized to best fit all columns. + The DropDownWidth property must be set to its default value (-1) to allow this setting to work properly. + + + + + Determines whether the drop-down portion of the control will be auto-sized to best fit all columns. + The DropDownWidth property must be set to its default value (-1) to allow this setting to work properly. + + + + + Determines whether the drop-down height will be auto-sized when filtering is applied. + + + + + The popup form that hosts the RadGridView. + + + + + Gets or sets the value. + + The value. + + + + + + + Base class implementation, not applicable in the case of RadMultiColumnComboBox. Use + the Rows collection instead. + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + + + + + + + + + + + + + Gets a value whether the current row is being changed at the moment. + + + + + Gets the event type(s) this listener needs to process. + + + + + + Gets the priority of the current instance. + + + + + + Gets the event process mode for this instance. + + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Creates the specific states. + + + + + + Adds the default visible states. + + The sm. + + + + Creates the specific states. + + + + + + Creates the specific states. + + + + + + Adds the default visible states. + + The sm. + + + + Creates the enabled states. + + + + + + Adds the default visible states. + + The sm. + + + + Creates the specific states. + + + + + + Adds the default visible states. + + The state manager. + + + + Creates the specific states. + + + + + + Adds the default visible states. + + The state manager. + +
+
diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.Scheduler.dll b/HexcalMC/bin/x64/Debug/Telerik.WinControls.Scheduler.dll new file mode 100644 index 0000000..c85d969 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/Telerik.WinControls.Scheduler.dll differ diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.Scheduler.xml b/HexcalMC/bin/x64/Debug/Telerik.WinControls.Scheduler.xml new file mode 100644 index 0000000..b0897aa --- /dev/null +++ b/HexcalMC/bin/x64/Debug/Telerik.WinControls.Scheduler.xml @@ -0,0 +1,13082 @@ + + + + Telerik.WinControls.Scheduler + + + + + Represents an appointment object. + + + + + Represents a base class for schedule event objects. + + + + + Represents a interface that an object should implement in order to be used as a schedule object in RadScheduler. + + + + + Creates a occurrence of this event. + + The start date of the occurrence. + + + + + Creates a occurrence of this event. + + The start date of the occurrence. + Determine whether the occurence is exception. + + + + + Makes the specified occurrence an exception. + + The occurrence which will be made an exception. + Indicates whether the start date of the occurrence + should be added to the ExceptionDates of the recurrence rule. + + + + Gets or sets the start of the event. + + The start of the event. + + + + Gets or sets the end of the event. + + The end of the event. + + + + Gets or sets the duration of the event. + + The duration of the event. + + + + Gets or sets the summary. + + The summary. + + + + Gets or sets the description. + + The description. + + + + Gets or sets the location. + + The location. + + + + Gets or sets the tool tip text. + + The tool tip text. + + + + Gets or sets a value indicating whether this is visible. + + true if visible; otherwise, false. + + + + Gets or sets a value indicating whether this event can be deleted. + + true if this event can be deleted; otherwise, false. + + + + Gets or sets a value indicating whether this event can be edited. + + true if this event can be edited; otherwise, false. + + + + Gets or sets the resource id. + + The resource id. + + + + Gets or sets the unique id of this event. + + The unique id of this event. + + + + Gets or sets the background id. + + The background id. + + + + Gets or sets the status id. + + The status id. + + + + Gets or sets the recurrence rule. + + The recurrence rule. + + + + Gets the occurrences. + + The occurrences. + + + + Gets the exceptions. + + The exceptions. + + + + Gets or sets the culture info provider. + + The culture info provider. + + + + Gets the master event. + + The master event. + + + + Gets or sets a value indicating whether this event is an all day event. + + + + + Gets or sets the time zone for this event. + + + + + Gets or sets the recurrent Id date for this event. + + + + + Gets the remind identifier used for identifying the reminder of this event. + + The remind identifier. + + + + Gets the start date time of this remind object. + + The start date time. + + + + Gets the subject of this remind object. This text is usually displayed when visualizing a reminder. + + The subject. + + + + Gets or sets a value indicating whether the reminder of this is dismissed. + + true if dismissed; otherwise, false. + + + + Gets or sets a time span indicating the amount of time the reminder of this is snoozed for. + + The snoozed time. + + + + Gets or sets a time span value indicating how much time before the start of this the reminder should be triggered. + + The reminder. + + + + Gets the occurrences in a given period. + + Start of the period. + End of the period. + + + + + Creates a occurrence of this event. + + The start date of the occurrence. + + + + + Creates a occurrence of this event. + + The start date of the occurrence. + + + + + + Suspends property change notifications. + + + + + Resumes property notifications if they have been previously suspended. + + + + + Gets or sets the start of the event. + + The start of the event. + + + + Gets or sets the end of the event. + + The end of the event. + + + + Gets or sets the duration of the event. + + The duration of the event. + + + + Gets or sets the summary. + + The summary. + + + + Gets or sets the description. + + The description. + + + + Gets or sets the recurrence Id date. + + The recurrence Id date. + + + + Gets or sets the location. + + The location. + + + + Gets or sets the tool tip text. + + The tool tip text. + + + + Gets or sets a value indicating whether this is visible. + + true if visible; otherwise, false. + + + + Gets or sets a value indicating whether this event can be deleted. + + + true if this event can be deleted; otherwise, false. + + + + + Gets or sets a value indicating whether this event can be edited. + + + true if this event can be edited; otherwise, false. + + + + + Gets or sets the resource id. + + The resource id. + + + + Gets the resource ids. + + The resource ids. + + + + Gets or sets the unique id of this event. + + The unique id of this event. + + + + Gets or sets the background id. + + The background id. + + + + Gets or sets the status id. + + The status id. + + + + Gets or sets the recurrence rule. + + The recurrence rule. + + + + Gets the occurrences. + + The occurrences. + + + + Gets the exceptions. + + The exceptions. + + + + Gets or sets the culture info provider. + + The culture info provider. + + + + Gets the master event. + + The master event. + + + + Gets or sets a value indicating whether this is an all-day event. + + + + + Gets the snooze time for each recurring appointments. + + The snoozed appointments. + + + + Gets the dismissed state of recurring appointments. + + The dismissed appointments. + + + + Gets the reminder state of recurring appointments. + + The reminder appointments. + + + + Gets a value indicating whether property change notification are suspended. + + + + + Gets the remind identifier used for identifying the reminder of this event. + + The remind identifier. + + + + Gets the start date time when this IRemindObject starts. + + The start date time. + + + + Gets the subject of this remind object. This text is usually displayed when visualizing a reminder. + + The subject. + + + + Gets or sets a value indicating whether the reminder of this is dismissed. + + true if dismissed; otherwise, false. + + + + Gets or sets a time span indicating the amount of time the reminder of this is snoozed for. + + The snoozed time. + + + + Gets or sets a time span value indicating how much time before the start of this the reminder should be triggered. + + The reminder. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the new appointment. + The duration of the new appointment. + + + + Initializes a new instance of the class. + + The start of the new appointment. + The duration of the new appointment. + The summary of the new appointment. + + + + Initializes a new instance of the class. + + The start of the new appointment. + The duration of the new appointment. + The summary of the new appointment. + The description of the new appointment. + + + + Initializes a new instance of the class. + + The start of the new appointment. + The duration of the new appointment. + The summary of the new appointment. + The description of the new appointment. + The location of the new appointment. + + + + Initializes a new instance of the class. + + The start of the new appointment. + The end of the new appointment. + + + + Initializes a new instance of the class. + + The start of the new appointment. + The end of the new appointment. + The summary of the new appointment. + + + + Initializes a new instance of the class. + + The start of the new appointment. + The end of the new appointment. + The summary of the new appointment. + The description of the new appointment. + + + + Initializes a new instance of the class. + + The start of the new appointment. + The end of the new appointment. + The summary of the new appointment. + The description of the new appointment. + The location of the new appointment. + + + + Gets a value indicating whether this instance has occurrences. + + + true if this instance has occurrences; otherwise, false. + + + + + Gets a value indicating whether this instance has exceptions. + + + true if this instance has exceptions; otherwise, false. + + + + + Provides access and information for manipulating data stores in a RadScheduler component. + + + + + Returns the data store used to persist event instances. + + data store that contains the event instances. + + + + Returns the data store used to persist resource instances. + + data store that contains the resource instances. + + + + Returns the data store used to persist AppointmentBackgroundInfo instances. + + data store that contains the AppointmentBackgroundInfo instances. + + + + Returns the data store used to persist AppointmentStatusInfo instances. + + data store that contains the AppointmentStatusInfo instances. + + + + Returns the data store used to persist AppointmentReminderInfo instances. + + data store that contains the AppointmentReminderInfo instances. + + + + Gets the type of grouping. + + + + + Represents the inerface which all data store implementations must implement. + + + + + + Gets the item with the specified ID. + + The ID of the item to get. + The item with the specified ID. + + + + Gets a object by id. + + The id of the to search for. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + [true] if the appointment was created inline, [false] if it was created via the EditAppointmentDialog. + + + + + The added appointment. + + + + + Exports the specified data. + + The data. + The stream. + + + + Exports the specified data. + + The data. + + + + + Imports the specified data. + + The data. + The stream. + + + + Imports the specified data. + + The ISchedulerData instance in which the data will be imported. + The string that contains data that is to be imported. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Scheduler view navigation step types + + + + + One minute navigation. + + + + + One hour navigation. + + + + + One day navigation. + + + + + One week navigation. + + + + + One month navigation. + + + + + One year navigation. + + + + + Gets the property of the appointment that was changed. + + + + + The added appointment. + + + + + Initializes a new instance of the class. + + The graphics. + The bounds. + The appointment. + + + + Gets the graphics. + + The graphics. + + + + Gets the appointment. + + The appointment. + + + + Gets the render element. + + The render element. + + + + Gets the bounds. + + The bounds. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + + + + + + Gets the appointment. + + The appointment. + + + + Gets or sets the recurrence edit dialog. + + The recurrence edit dialog. + + + + + + + + + Gets or sets the text that will be drawn. + + + + + Gets the context of the current operation. + + + + + Gets the time which will be formatted. + + + + + The id of the resource in which the selection is going to be performed. + + + + + The start date of the range that is going to be selected. + + + + + The end date of the range that is going to be selected. + + + + + Gets the cell that is being selected. + + + + + Indicates whether this selection operation will extend the current selection + (e.g. when selecting cells when holding Shift down). + + + + + Represents the event arguments for the ContextMenuOpening event of RadScheduler + + + + + Initializes a new instance of the class. + + The element for which the menu will be opened. + The context menu that will be opened. + + + + Gets the element over which the menu is showing. + + + + + Gets or sets the context menu that is being opened. + + + + + Date for the Holidays (time part will be ignored). + + + + + Location of the holiday. + + + + + Name of the Holiday + + + + + Fires when Date or Holiday Name or Location changed. + + + + + Check if the specific date is contained in the Holidays collection. + + Date to check. + true if holidays collection contains the date + + + + Return all holidays for the specific date (if any) + + Date to check + Collection with holidays - may be null if there is not holidays for this date + + + + Add holiday to the holidays collection. + + the holiday object + if true this will create an all day appointment + + + + Add holiday to the holidays collection. + + Collection with holidays + if true this will create an all day appointment + + + + Clear the Holidays collections. This does not affect already created appointments. + + + + + Get all locations from the stream + + The input file + List with the locations + + + + Get all location from the stream + + The input stream + List with the locations + + + + Read the holidays information and create Holidays objects in the holidays collection. Optionally can create also and all day appointments for the holidays. + + File name. File must be in HOL format. + If true this will be create an appointments for each holidays. + + + + Read the holidays information and create Holidays objects in the holidays collection only for holidays in the specific locations. Optionally can create also and all day appointments for the holidays. + + File name. File must be in HOL format. + If true this will be create an appointments for each holidays. + Collection with locations. + + + + Read the holidays information and create Holidays objects in the holidays collection. Optionally can create also and all day appointments for the holidays. + + stream must be in HOL format. + If true this will be create an appointments for each holidays. + + + + Read the holidays information and create Holidays objects in the holidays collection only for holidays in the specific locations. Optionally can create also and all day appointments for the holidays. + + File name. File must be in HOL format. + If true this will be create an appointments for each holidays. + Collection with locations. + + + + Represents the internal collection with Holidays + + + + + Contains properties used by RadScheduler for reminder representation. + + + + + Gets or sets the Id by which this instance is identified. + + + + + Gets or sets the time span this instance represents. + + + + + Gets or sets the visual string representation of this instance. + + + + + Gets or sets the Id by which this instance is identified. + + The identifier. + + + + Gets or sets the time span this instance represents. + + The value. + + + + Gets or sets the visual string representation of this instance. + + The display name. + + + + Initializes a new instance of the AppointmentResizedEventArgs. + + + + + + Gets the resized appointment. + + + + + Gets the current feedback. + + + + + Gets the scheduler instance. + + + + + Gets the current view. + + + + + Gets the initialized feedback. + + + + + Gets the cell that is hovered by the mouse pointer. + + + + + Gets the container that owns the dragged feedback element. + + + + + Gets the moved appointment. + + + + + Gest the new date. + + + + + Gets the id of the target resource. + + + + + Gets the cell that is hovered by the mouse pointer. + + + + + Gets the container that owns the dragged feedback element. + + + + + Gets the moved appointment. + + + + + Gets the new date. + + + + + Gets the id of the target resource. + + + + + Gets the resized appointment. + + + + + Initializes a new instance of the class. + + The old date. + The new date. + The resize direction. + + + + Gets the resize direction. + + The resize direction. + + + + Gets the old date. + + The old date. + + + + Gets the new date. + + The new date. + + + + Gets or sets the resize mode. + + + + + Gets or sets the resize start offset. + + + + + Gets or sets the minutes which are added after resizing. + + + + + Represents the default context menu shown for RadScheduler elements. + + + + + Creates a new instance of the class. + + The this menu is associated with. + + + + Creates the menu items and sub items for the menu. + + + + + Adds all menu items and sub items to the menu. + + + + + Add subscriptions for all menu items to their corresponding event handlers. + + + + + Removes the subscription for all menu items events. + + + + + Sets the visibility of all menu items to the provided visibility value. + + The new visibility for the menu items. + + + + Sets the menu item holding the provided timescale as selected. + + The value to select. + + + + Called when the users clicks on the "Edit appointment" menu item. + + The menu item that was clicked. + The event arguments. + + + + Called when the users clicks on the "New appointment" menu item. + + The menu item that was clicked. + The event arguments. + + + + Called when the users clicks on the "New recurring appointment" menu item. + + The menu item that was clicked. + The event arguments. + + + + Called when the users clicks on the "Next view" menu item. + + The menu item that was clicked. + The event arguments. + + + + Called when the users clicks on the "Previous view" menu item. + + The menu item that was clicked. + The event arguments. + + + + Called when the users clicks on one of the scale range menu items. + + The menu item that was clicked. + The event arguments. + + + + Called when the users clicks on one of the timescale menu item. + + The menu item that was clicked. + The event arguments. + + + + Gets the scheduler element this menu is associated with. + + + + + Gets the selected time interval from the associated if such exist. + + + + + Gets the appointment the context menu is opened for. + + + + + Gets the the context menu is opened for. + + + + + Gets the menu item for adding a new appointment. + + + + + Gets the menu item for adding a new recurring appointment. + + + + + Gets the menu item for changing the ruler to 60 minutes. + + + + + Gets the menu item for changing the ruler to 30 minutes. + + + + + Gets the menu item for changing the ruler to 15 minutes. + + + + + Gets the menu item for changing the ruler to 10 minutes. + + + + + Gets the menu item for changing the ruler to 6 minutes. + + + + + Gets the menu item for changing the ruler to 5 minutes. + + + + + Gets the menu item holding the options for the of a + + + + + Gets the menu item for changing the of a to year. + + + + + Gets the menu item for changing the of a to month. + + + + + Gets the menu item for changing the of a to week. + + + + + Gets the menu item for changing the of a to day. + + + + + Gets the menu item for changing the of a to hour. + + + + + Gets the menu item for changing the of a to thirty minutes. + + + + + Gets the menu item for changing the of a to fifteen minutes. + + + + + Gets the menu item for navigating to the next view. + + + + + Gets the menu item for navigating to the previous view. + + + + + Gets the menu item for opening an appointment for edit. + + + + + Represents a menu item in the context menu of a . + + + + + Creates a new instance of the . + + A command used for distinguishing different menu items. + The text to be displayed in the menu item. + + + + Gets the command set to this item. + + + + + Represents a menu item in the context menu of a with add property. + + + + + Creates a new instance of the . + + A command used for distinguishing different menu items. + The text to be displayed in the menu item. + The this item would set to the ruler. + + + + Gets the set for this menu item. + + + + + Represents a menu item in the context menu of a with add property. + + + + + Creates a new instance of the . + + A command used for distinguishing different menu items. + The text to be displayed in the menu item. + The this item would set to the . + + + + Gets the set for this menu item. + + + + + Gets or sets the format in which the times will be shown when ShowHours is true. + + + + + Gets or sets whether appointment's start and end hours should be displayed. + Should be set after the print element has been associated with an appointment. + + + + + Gets or sets the width of the status idicator. + + + + + Gets or sets the appointment which this element represents. + + + + + Gets the start date of the appointment according to the selected timezone. + + + + + Gets the end date of the appointment according to the selected timezone. + + + + + Sets a date as special e.g. its number will be drawn bold. + + The date to set. + + + + Sets a date as regular e.g. its number will be drawn regular. + + The date to unset. + + + + Gets or sets a date that indicates which month should be displayed. + + + + + Gets or sets a DateTimeFormatInfo instance which indicates the format of the calendar. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents a print style which prints on each page appointments in a single day. + + + + + Represents a base class for different print styles of RadScheduler. + + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Sets the RadScheduler which is the source of the appointments to be printed. + + The source RadScheduler + + + + Draws the page inside a given graphics area. + + The graphics used for drawing. + The area in which the page should be drawn. + One-based consecutive number of the page to be drawn. + + + + Returns the potential number of pages. + + The bounds of the page. + The graphics object. Only used for measurement purposes. + + + + + Draws an area for handwritten notes. + + The graphics used for drawing. + The area in which the notes should be drawn. + 1-based consecutive number of the page to be drawn in. + The bounds of the notes area. + + + + Gets the date that corresponds to a given page. + + The page number. + The date. + + + + Gets the resource that correponds to a given page. + + The page number. + The resource. + + + + Draws the page heading. + + The area in which the heading should be drawn. + The graphics used for drawing. + The number of the page. + The bounds of the top area. + + + + Draws a RadPrintElement. + + The element. + The graphics used for drawing. + The bounds of the element. + + + + Draws a RadPrintElement. + + The element. + The graphics used for drawing. + The bounds of the element. + + + + Draws a AppointmentPrintElement. + + The element. + The graphics used for drawing. + The bounds of the element. + + + + Draws a AppointmentPrintElement. + + The element. + The graphics used for drawing. + The bounds of the element. + + + + Draws a SchedulerPrintCellElement. + + The element. + The graphics used for drawing. + The bounds of the element. + + + + Draws a SchedulerPrintCellElement. + + The element. + The graphics used for drawing. + The bounds of the element. + + + + Draws the content area of the page. + + The bounds of the area. + The graphics used for drawing. + One-based number of the current page. + + + + Gets the appointments of the current source that are inside + the time interval specified by the DateStartRange and DateEndRange properties. + + A list of appointments. + + + + Gets the appointments of the current source that a given date contains. + + The date. + A list of appointments. + + + + Gets the appointments of the current source that a given date contains. + + The date. + Indicate whether all-day appointments should be included. + A list of appointments. + + + + Gets the appointments of the current source that are inside a specified time interval. + + The start date of the interval. + The end date of the interval. + A list of appointments. + + + + Gets a time rounded to the cells of the day view table. + + The time to round. + If true time will rounded up, otherwise it will be rounded down. + + + + + Fires when a print element is being formatted before it is painted. + + + + + Fires when a cell element is being formatted before it is painted. + + + + + Fires when an appointment element is being formatted before it is painted. + + + + + Fires when a print element is painted. + + + + + Fires when a cell element is painted. + + + + + Fires when an appointment element is painted. + + + + + Gets or sets the groping mode of the printed document. + + + + + Gets or sets a value indicating whether the current timezone should be printed inside page title area. + + + + + Gets or sets the height of the heading area. + + + + + Gets or sets the width of the notes area. + + + + + Gets or sets whether a page title should be printed. + + + + + Gets or sets whether a calendar should be printed inside the title area. + + + + + Gets or sets whether an area for handwritten notes should be printed. + + + + + Gets or sets whether a lined area for handwritten notes should be printed. + + + + + Gets or sets the font of the date headers. + + + + + Gets or sets the font of the appointments. + + + + + Gets or sets the font of the page heading. + + + + + Gets or sets the start date of the date range which describes which appointments should be printed. + + + + + Gets or sets the end date of the date range which describes which appointments should be printed. + + + + + Gets or sets the start time of the time interval which describes which appointments should be printer for every single date. + + + + + Gets or sets the end time of the time interval which describes which appointments should be printer for every single date. + + + + + Gets the RadScheduler that is beeing printed. + + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Gets or sets the height of the appointments in the AllDay area. + + + + + Gets or sets the maximum height that the AllDay area can occupy. + + + + + Gets or sets the width of the hours column. + + + + + Gets or sets whether two pages should be printer for a single date. + + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Gets or sets the image that is printed at the bottom of a cell when there are more appointments than can be shown. + + + + + Gets or sets a value indiating whether the nonworking days should be printed. + + + + + Gets or sets a value indicating whether a single page should be printed on two pages. + + + + + Gets or sets the first day to be printed. + + + + + Gets or sets the height of the appointments. + + + + + Gets or sets the start date of the date range which describes which appointments should be printed. + + + + + Gets or sets the end date of the date range which describes which appointments should be printed. + + + + + Breaks the current page when there is no more space on it. + + + + + Breaks the current page on each new day. + + + + + Breaks the current page on each new week. + + + + + Breaks the current page on each new month. + + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Gets or sets the string that will be printed instead of date for all-day appointments + + + + + Gets or sets the string that will be printed to indicate that the appointment is all-day and + its description has been previously printed + + + + + Gets or sets the conndition under which the printing should continue on a new page. + + + + + Gets or sets the width of the area which displays appointments' date. + + + + + Gets or sets the height of appointments' summary. + + + + + Gets or sets the height of the element that displays the current date. + + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Gets or sets the image that is printed at the bottom of a cell when there are more appointments than can be shown. + + + + + Gets or sets a value indicating whether the nonworking days should be printed. + + + + + Gets or sets the number of weeks that should be printed on each page when PrintExactlyOneMonth is false. + + + + + Gets or sets whether each month should be printed on a single separate page. + + + + + Gets or sets whether a single month should be printed on two pages. + + + + + Gets or sets the height of the appointments. + + + + + Gets or sets the width of the vertical header which displays the week ranges. + + + + + Gets or sets the height of the header of each cell. + + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Gets or sets thefont of the header area cells. + + + + + Gets or sets the height of the header area. + + + + + Gets or sets the width of the hours column. + + + + + Gets or sets the height of the appointments in the AllDay area. + + + + + Gets or sets the maximum height that the AllDay area can occupy. + + + + + Represents a print style which prints appointments + + + + + Creates a new instance of the class. + + + + + Creates a new instance of the class. + + The start date of the printing range. + The end date of the printing range. + + + + Gets or sets how the day cells should be arranged. + + + + Represents event data of the + AlarmFormShowing + event. + + + + Gets or sets the alarm form. + + The alarm form. + + + + Handles the FormClosing event of the RadAlarmForm control. + + The source of the event. + The instance containing the event data. + + + + Handles the SelectionChanged event of the radGridViewEvents control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the radButtonSnooze control. + + The source of the event. + The instance containing the event data. + + + + Handles the CellDoubleClick event of the radGridViewEvents control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the radButtonOpenItem control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the radButtonDismiss control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the radButtonDismissAll control. + + The source of the event. + The instance containing the event data. + + + + Snoozes the item. + + The row. + + + + Adds the reminder bindable objects. + + The remind bindable objects. + + + + Updates the title. + + The localization provider. + + + + Localizes the dialog. + + The localization provider. + + + + Creates the default snooze combo box items collection. + + + + + + Enables the buttons. + + + + + Called when item opened. + + The remidable object. + + + + Called when theme changed. + + + + + Determines whether [contains reminder bindable object] [the specified reminder bindable object]. + + The remind bindable object. + + true if [contains reminder bindable object] [the specified reminder bindable object]; otherwise, false. + + + + + Adds the reminder bindable object. + + The reminder bindable object. + + + + Removes the reminder bindable object. + + The reminder bindable object. + + + + + Shows the form. + + + + + Shows the form. + + The owner. + + + + In this override we reset the RootElement's BackColor property + since the DocumentDesigner class sets the BackColor of the + Form to Control when initializing and thus overrides the theme. + + + + + + Updates the dialog localization. + + + + + Hides the form. + + + + + Clears the remind objects. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the remind objects count. + + The reminder bindable objects count. + + + + Gets or sets the start notification. + + The start notification. + + + Represents event data of the + DueIn + event. + + + + Gets or sets the due in text. + + The due in text. + + + + Gets the due in. + + The due in. + + + Represents event data of the + ItemOpened + event. + + + + Gets the remidable object. + + The remidable object. + + + + Provides localization services for RadScheduler + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + + + + + + Handles the Tick event of the timer control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemOpen event of the alarmForm control. + + The source of the event. + The instance containing the event data. + + + + Handles the DueInFormating event of the remiderBindableObject control. + + The source of the event. + The instance containing the event data. + + + + Starts the reminder. + + + + + Stops the reminder. + + + + + Clears the remind objects. + + + + + Adds the remind object. + + The remind object. + + + + + Adds the reminder bindable object. + + The list remind objects. + + + + + Removes the remind object. + + The remind object. + + + + + Determines whether contains the specified remind object. + + The remind object. + + true if contains the specified remind object; otherwise, false. + + + + + Gets the remind objects. + + + + + + Resets to default alarm form. + + + + + Gets the default owner. + + + + + + Check whether the reminder has remind objects fill them to the alarm form and show that form. + + + + + Applies the new alarm form. + + + + + Shows the alarm form. + + + + + Removes the reminder bindable object. + + The reminder bindable object other. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Unwires the reminder bindable objects events. + + + + + Disposes the managed resources. + + + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Gets or sets the time interval that the reminder should check for new remind objects. + + The time interval. + + + + Gets or sets the name of the theme. + + The name of the theme. + + + + Represents the objects that RadReminder is working with. + + + + + Called when [property changed]. + + The info. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Get default image from the assambly resources. + + + + + + Raises the event. + + The instance containing the event data. + + + + Do default format of DueIn property + + + + + + Format DueIn in minutes format. + + + + + + Format DueIn in hours format. + + + + + + Format DueIn the in days format. + + + + + + Format DueIn the in weeks format. + + + + + + Update DueIn property. + + + + + Disposes all MANAGED resources - such as Bitmaps, GDI+ objects, etc. + + + + + Gets the subject. + + The subject. + + + + Gets the due in. + + The due in. + + + + Gets the start date time. + + The start date time. + + + + Gets the image. + + The image. + + + + Gets or sets a value indicating whether this is dismissed. + + true if dismissed; otherwise, false. + + + + Gets or sets the time this object is snoozed for. + + The snoozed. + + + + Gets or sets the time before the start of this object when a notification should be triggered. + + The notification. + + + + Gets the remind object. + + The remind object. + + + + Represents the RadSnoozeObject + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the snooze time. + + The snooze time. + + + + Gets or sets the text. + + The text. + + + + Called when [property changed]. + + The info. + + + + Gets a unique identifier for the item. + + The identifier. + + + + Gets or sets the start date and time for this item. + + The start date time. + + + + Gets or sets the subject of this item. + + The subject. + + + + Gets or sets a value indicating whether this is dismissed. + + true if dismissed; otherwise, false. + + + + Gets or sets the time this item is snoozed for. + + The snoozed. + + + + Gets or sets the time before the start of the item when a notification should be raised. + + The reminder. + + + + + + + + + Initializes a new instance of the class. + + The remind object. + + + + Gets the remind object. + + The remind object. + + + + Start dialog for creation of an appointment + + + + + Represent the abstract SchedurlerCommand class + + + + + Executes the command with the given settings. + + + + + + + Executes the command. + + The scheduler. + + + + Determines whether this instance can execute the specified parameter. + + The parameter. + + true if this instance is a RadScheduler instance; otherwise, false. + + + + + Executes the command. + + The scheduler. + + + + Navigate scheduler backward + + + + + Executes the command. + + The scheduler. + + + + Navigate scheduler forward + + + + + Executes the command. + + The scheduler. + + + + Navigate scheduler to the next view that contains appointments + + + + + Executes the command. + + The scheduler. + + + + Navigate scheduler to the next view + + + + + Executes the command. + + The scheduler. + + + + Executes the command. + + The scheduler. + Type of the navigation step. + The navigation step. + This method will not affect the scheduler view if the view is WeekView or MonthView, where + the navigationStepType is a Day and the NavigationStep is less then 7. + + + + Navigate scheduler to the previous view that contains appointments + + + + + Executes the command. + + The scheduler. + + + + Navigate scheduler to the previous view + + + + + Executes the command. + + The scheduler. + + + + Executes the command. + + The scheduler. + Type of the navigation step. + The navigation step. + This method will not affect the scheduler view if the view is WeekView or MonthView, where + the navigationStepType is a Day and the NavigationStep is less then 7. + + + + Responsible for handling the mouse and the keyboard input from . + + + + + Creates an input behavior for the specified . + + + + + + Handles the MouseDown event from . + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the MouseMove event from . + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the MouseUp event from . + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the KeyDown event from . + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the navigation keys pressed on from . The keys considered as navigation keys are: + Left, Right, Up, Down, F2, Delete, Escape. + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the MouseWheel event from . + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the MouseEnter event from . + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the MouseLeave event from . + + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the CellElementDoubleClick event from . + + The initiator of the event. + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the AppointmentElementDoubleClick event from . + + The initiator of the event. + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Handles the CellElementKeyPress event from . + + The initiator of the event. + The event arguments. + [true] if the event should not be processed further, [false] otherwise. + + + + Deletes the currently selected appointments. + + + + + Returns true when the mouse pointer offset compared to the initial mouse down position + is large enough to begin a drag operation. + + The current mouse pointer location. + [true] if the offset is enough to begin drag, [false] otherwise. + + + + Called when the MouseDown was performed over an . + + The appointment element that was pressed with the mouse. + + + + Called when the MouseDown was performed over a . + + The cell element that was pressed with the mouse. + + + + Releases the managed resources held by this behavior. + + + + + The which owns this behavior. + + + + + Represent reminder for the associated scheduler + + + + + Handles the CollectionChanged event of the Appointments control. + + The source of the event. + The instance containing the event data. + + + + Gets the default owner from the associated RadScheduler. + + null if the associated RadScheduler is null + + + + Removes the appointment. + + The appointment. + + + + Starts the reminder. + + + + + Stops the reminder. + + + + + Adds the appointments to be remided. + + + + + Adds the appointment to be reminded and its recurrent appointments in the reminder interval. + + The appointment. + + + + Unwires the associated scheduler events. + + + + + Wires the associated scheduler events. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Gets or sets the associated scheduler. + + The associated scheduler. + + + + Gets or sets the start reminder interval that reminder check tha appointments collection to the associated RadScheduler. + + The start reminder interval. + + + + Gets or sets the end reminder interval that reminder check tha appointments collection to the associated RadScheduler. + + The end reminder interval. + + + + Performs selection operations and provides information about the current selection of cells and appointments in RadScheduler. + The cell selection in RadScheduler represents a single date interval - it has SelectionStartDate and SelectionEndDate. + A few other parameters help to fully identify the current selection - IsAllDayAreaSelection, SelectedResourceId, CurrentCell. + There are two modes for appointment selection - single selection and multi selection. Use the AllowAppointmentsMultiSelect property + of RadScheduler to switch between them. + + + + + Creates a the selection behavior for the specified RadScheduler. + + The scheduler this behavior belongs to. + + + + Selects a given appointment. + + The appointment to select. + Indicates whether the appointment should be added to the current + selection or not. If this argument is true and the appointment is already selected, it will be + deselected. This argument has no effect if AllowAppointmentsMultiSelect is false. + + + + Removes an appointment from the current selection. + + The appointment to unselect. + + + + Clears the current appointment selection. + + + + + Returns a value indicating whether an appointment is in the current selection. + + The appointment. + [true] if the appointment is selected, [false] otherwise. + + + + Clears the current cell selection. + + + + + Returns a value indicating whether a cell with specified parameters is currently selected. + + The Date of the cell. + The Duration of the cell. + The ResourceId of the cell. + A value indicating whether this is an AllDay cell. + [true] if the cell is selected, [false] otherwise. + + + + Returns a value indicating whether a cell element is selected. + + The cell element. + [true] if the cell is selected, [false] otherwise. + + + + Selects a given cell element. Selecting a cell will reset the appointment selection. + + The cell element to select. + + + + Selects a given cell element. Selecting a cell will reset the appointment selection. + + The cell element to select. + Indicates whether only the specified cell should be selected or + the selection should be extended as if you were holding the Shift key. + + + + Selects all cells in a specified range. + + The start date of the range. + The end date of the range. + + + + Selects all cells in a specified range. + + The start date of the range. + The end date of the range. + The id of the resource in which the selection should be performed. + + + + Gets the logical duration of a cell in the current view. For example: the duration + of an AllDay cell will be 1 day and the duration of a cell in day view with the + default ScaleFactor will be 60 minutes. + + The durration of a cell in the current view. + + + + Gets the date-time interval that is currently selected. If SelectionStartDate is greater + than SelectionEndDate, the method will swap the values and will always return an interval in which + the Start is less than or equal to the End. + + + + + + Clears both appointment selection and cell selection. + + + + + Gets the id of the resource which contains the current selection. + + + + + The this behavior belongs to. + + + + + Gets a value indicating whether the current selection is within the AllDay area + of the . + + + + + Gets the start date of the current selection range. The value of the property + can be greater that the value of SelectionEndRange. Derived classes can set a value. + + + + + Gets the end date of the current selection range. The value of the property + can be less that the value of SelectionStartRange. Derived classes can set a value. + + + + + Gets or sets the coordinates of the current cell. The current cell is the start cell that + will be used when performing navigation with the arrow keys. + + + + + Gets a read-only list which contains the currently selected appointments. + + + + + Gets the last selected appointment. + + + + + Gets the which represents the selected appointment. + + + + + Gets a value indicating whether there is any cell selected. + + + + + Gets a value indicating whether there is any appointment selected. + + + + + Gets the which stands on the coordinates + provided by the CurrentCell property. + + + + + the Appointment Date without time component + + + + + Represents a class for the agenda view in : + + + + + + Represents a base class for the main elements that represent the different view types in : + , , + + + + + Represents a base class for all visual elements in . + Holds a reference to the control that will be using the element and + the associated with the element. + + + + + Initializes a new instance of the class. + + The scheduler that will be using the element. + The view associated with the element. + + + + If the associated view of this element is , returns it. Otherwise returns null. + + + + + + If the associated view of this element is , returns it. Otherwise returns null. + + + + + + If the associated view of this element is , returns it. Otherwise returns null. + + + + + + If the associated view of this element is , returns it. Otherwise returns null. + + + + + + If the associated view of this element is , returns it. Otherwise returns null. + + + + + + Gets the scheduler that uses this element. + + + + + Gets the view associated with this element. + + The view. + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Updates the existing cell elements in all child containers according to the + settings in the currently active . + + + + + Recycles the existing cell elements in all child containers and creates new ones. + + + + + Updates the appointment elements in all child containers by synchronizing them + with their assigned . + + + + + Recycles the existing appointment elements in all child containers and creates new ones. + + + + + Gets all child elements that can contain cells or appointments + (all child elements of type ). + + A list containing the elements + + + + Gets the first visual associated with a specified appointment. + + The specified appointment. + The visual element. + + + + Gets the visual associated with a specified appointment. + + The specified appointment. + A list of visual elements. + + + + Gets all visual which are in the current view. + + A list of visual elements. + + + + Gets all elements from all cell containers whithin the view element. + + A list of cell elements. + + + + Navigates to the next view. + + + + + Navigates to the previous view. + + + + + Creates a temporary appointment with the specified parameters and adds it to the current view. + This method is used for creating appointments inline. + + The subject of the temporary appointment. + The start date of the temporary appointment. + The end date of the temporary appointment. + /// Indicates if the temporary appointment should be an AllDay one. + /// The resource id to associate with the new appointment. + + + + + Gets the row and the column of a specified cell in the current view. + + The specified cell. + A TableLayoutPanelCellPosition object containing the row and column. + + + + Gets the cell on the specified row and column. + + The row of the cell. + The column of the cell. + The cell at the specified position. + + + + Gets the cell element for the given date and resource. + + The date to get a cell for. + + + + + Gets the cell element for the given date and resource. + + The date to get a cell for. + The resource id by which to identify the resource view to get a cell from. + + + + + Scrolls the table with a single row up or down. + + If [true] the table is scrolled up, otherwise it is scrolled down. + + + + Called when the Appointments collection of RadScheduler has changed. + Override to implement any custom updates to the element. + + The that sends the event. + The event arguments. + + + + Called when the Appointments collection of the current view has changed. + Override to implement any custom updates to the element. + + The that sends the event. + The event arguments. + + + + Called when a property of the view has changed + Override to implement any custom updates to the element. + + + + + + + Gets the navigator element that navigates to the next existing appointment. + + + + + Gets the navigator elements that navigates to the previous existing appointment. + + + + + Gets or sets the margin of the appointment elements. This property can be used to set + the spacing between appointment elements in the different views. + + + + + Handles <color=value> + + + + + + + + Represents the cell that displays the resource name for a given child view. + + + + Gets or sets the today cell. + + + Gets or sets the date which that cell is representing. + + + + Gets the resource id of the resource this cell is associated with. + + + + + Represents a base type for views that are grouped by resource and consist of + a set of child views. + + The type of the child view elements. + + + + Represents a base type for all views that are grouped by resource. + + + + + Refreshes the child views. + + + + + Removes all child view elements and creates new ones according to the current resource settings. + + + + + Navigates the grouped view to a resource with a specified index. + + The specified index. + + + + Called when the ResourceStartIndex has changed in order to update the associated + resources of the child views. + + + + + Navigates the grouped view to the next resource. + + + + + Navigates the grouped view to the previous resource. + + + + + Gets the offset of the child view with a specified index compared to the start edge of the first child view. + The offset is either horizontal or vertical depending on the type of the active view. + + The zero-based child view index. + The total space available for resource views. + The offset of the specified child view. + + + + Returns the resource size as set by the SetResourceSize method. The actual size of a resource will be + calculated proportionally according to the values other resources have. The default value for each resource is one. + This means that setting a value of 2 for a given resource will make it twice as large compared to other resources. + To get the size of a resource in pixels use one of the other overloads of this method. + + The zero-based child view index. + The size of the specified resource. + + + + Gets the size of the child view with a specified index. The returned value means + either width or height depending on the type of the active view. + + The zero-based child view index. + The total space available for resource views. + The size of the specified child view. + + + + Gets the total size of a range of child views given their indices. The returned value means + either width or height depending on the type of the active view. + + The index of the first child view in the range. + The index of the last child view in the range. + The total space available for resource views. + The size of the specified child view range. + + + + Sets the size of a child view. The actual size of a child view will be calculated proportionally + according to the values other child views have. The default value of each child view is one. This means + that setting a value of 2 for a given child view will make it twice as large compared to other child views. + + The index of the child view to resize. + The value according to which the actual size will be calculated. + + + + Recycles the existing appointment elements in all child appointment containers + and replaces them with new ones. + + + + + Fires the event. + + + + + Fires the event. + + The resource index that is going to be selected. + [true] if the change should be canceled, [false] otherwise. + + + + Initializes the child elements which are specific to the current view type. + + + + + Called to update the properties of the resources scrollbar. + + + + + Gets the which + contains the resource header cells. + + + + + Gets or sets the current resource index. + + + + + Gets or sets the thickness of the ResourceScrollBar. + + + + + Gets the scrollbar that stands for navigating between resources. + + + + + Gets a list of the child view elements that this view contains. + + The list. + + + + Gets a list of the view separators that are displayed between the child view elements. + + The list. + + + + Called when a new child view is initialized so the overriding members + can set the appropriate settings to the newly created child view. + + The child view. + + + + Called when the parrent view has changed and the child views + need to update according to that change. + + The child view element to synchronize. + The name of the property which caused the synchronization. + + + + Creates a child view element instance. + + The index of the resource that corresponds to this view. + The index of the child view in the current view. + The child . + The newly created child view element. + + + + Creates a child for the specified resource index. + + The resource index. + The newly created child . + + + + Saves all appointment reminders to the provided stream. + + The stream to save the reminders to. + + + + Saves all appointment reminders to the provided file. If the file does not exist it is created otherwise it is overwritten. + + The path to the file to save the reminders to. + + + + Clears the reminders of all appointments. Usually this method is used before LoadReminders is called. + + + + + Loads the reminders from the specified file path. + + The path to the file to load reminders from. + + + + Loads the reminders from the specified stream. + + The steam to load reminders from. + + + + Searches for an appointment with the specified remind id in the Appointments collection of the RadScheduler this behavior is assigned to. + + The remind id to search for. + + + + + Gets the Scheduler this behavior is assigned to. + + + + + Creates a new object that is a copy of the current instance. + + + A new object that is a copy of this instance. + + + + + Called when a property is changed. + + Name of the property. + + + + Gets the scaling factor. + + + + + Gets or sets the displayed cells count. + + The displayed cells count. + + + + Gets the timescale. + + The timescale. + + + + Gets or sets whether the TimeScale is visible. + + + + + Gets the Name + + + + + Gets or sets the format string. + + + + + Occurs when a property is changed. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the minutes. + + The minutes. + + + + Gets the Name + + + + + + Gets the scaling factor. + + + + + + Initializes a new instance of the class. + + + + + Gets the name. + + The name. + + + + Gets the scaling factor. + + The scaling factor. + + + + Adds the format string. + + The format string. + + + + + Removes the format string. + + The format string. + + + + + Inserts a format string. + + The index. + The format string. + + + + + Gets the date time formats. + + + + + + Adds the default formats. + + + + + Initializes a new instance of the class. + + + + + Gets the Name + + + + + + Gets the scaling factor. + + + + + + Initializes a new instance of the class. + + + + + Gets the name. + + The name. + + + + Gets the scaling factor. + + The scaling factor. + + + + Initializes a new instance of the class. + + + + + Gets the Name + + + + + + Gets the scaling factor. + + + + + + Initializes a new instance of the class. + + + + + Gets the scaling factor. + + + + + + Gets the Name + + + + + + Initializes a new instance of the class. + + The year. + The month. + The day. + The hour. + The minute. + The second. + + + + Initializes a new instance of the class. + + + + + Gets or sets the hour. + + The hour. + + + + Gets or sets the day. + + The day. + + + + Gets or sets the month. + + The month. + + + + Gets or sets the year. + + The year. + + + + Gets or sets the minute. + + The minute. + + + + Gets or sets the second. + + The second. + + + + Coerces the maximum. + + + + + Coerces the value. + + + + + Gets or sets the LargeChange value. + + + + + Gets or sets the Maximum value. + + + + + Gets or sets the Minimum value. + + + + + Gets or sets the SmallChange value. + + + + + Gets or sets the Value. + + + + + Gets or sets the format string for hour part of the ruler main sections. If set to null or empty no text will be displayed. + + + + + Gets or sets the format string for minutes part of the ruler main sections. If set to null or empty no text will be displayed. + + + + + Gets or sets the format string for hour part of the ruler main sub-sections. If set to null or empty no text will be displayed. + + + + + Gets or sets the format string for hour part of the ruler main sub-sections. If set to null or empty no text will be displayed. + + + + + Determines the type of text that will be drawn. + + + + + The hour part of a ruler main section. + + + + + The minutes part of a ruler main section. + + + + + The hour part of a ruler sub section. + + + + + The minutes part of a ruler sub section. + + + + + A provider that is used to creating most of the visual elements of . + Extend this class and replace the instance in to replace any of the + visual elements with custom implementations. + + + + + Gets an element of type T from the cache or creates a new one if such is not found. + + The type of the requested element. + The which will be associated with the retrieved element. + The context that requests the element (usually the future parent of the element). + An element of the requested type + + + + Gets an element of type T and a specified from the cache or creates a new one if such is not found. + The method finds all cached elements of type T and tries to find one that matches the specified . + If a match is not found, returns any of the found elements of type T. If there are no cached elements of type T, + creates a new element. + + The type of the requested element. + The which will be associated with the retrieved element. + The of the requested element. + The context that requests the element (usually the future parent of the element). + An element of the requested type + + + + Creates a instance which will be used in the + of DayView and WeekView. + + The owner + The timezone for this ruler. + The newly created ruler primitive. + + + + Creates a which represents will be place inbetween the + view elements when grouping by resource. + + The view to create the element with. + The newly created element. + + + + Creates a new instance of type T with the specified view for the specified context. + Override to provide custom elements. + + The type of the element to be created. + The view that should be associated with the element. + The context that requests the element (usually the future parent of the element). + The newly created element. + + + + Tries to get an element with type T and a specified from the cache. + + The type of the requested element. + The result of the lookup. + The of the requested element. + The which will be associated with the retrieved element. + The context that requests the element (usually the future parent of the element). + [true] if a cached element was found, [false] otherwise. + + + + Indicates whether an element can be added to the cache. + + The element that is trying to get cached. + [true] if the element can be added to the cache and reused later, [false] otherwise. + + + + Removes all cached elements from the cache. + + + + + Adds an element to the cache if this is allows this. + + + + + + + Gets or sets a value indicating whether caching and recycling of elements is allowed. + + + + + The scheduler that owns this provider. + + + + + Respresents the main visual element of RadScheduler when in mode. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes the child elements of this view. + + + + + Creates the element. + Override to replace with a custom one. + + An instance of the element. + + + + Gets the horizontal offset of the column with a specified index compared to the left edge of the first column. + + The zero-based column index. + The total width available for columns. + The offset of the specified column. + + + + Gets the width of the column with a specified index. + + The zero-based column index. + The total width available for columns. + The width of the specified column. + + + + The actual width of a column will be calculated proportionally + according to the values other columns have. The default value of each column is one. This means + that setting a value of 2 for a given column will make it twice as large compared to other columns. + To get the width of a column in pixels use one of the other overloads. + + The zero-based column index. + The width of the specified column. + + + + Gets the total width of a range of columns given their indices. + + The index of the first column in the range. + The index of the last column in the range. + The total width available for columns. + The width of the specified column range. + + + + Sets the width of a column. The actual width of a column will be calculated proportionally + according to the values other columns have. The default value of each column is one. This means + that setting a value of 2 for a given column will make it twice as large compared to other columns. + + The index of the column to resize. + The value according to which the actual width will be calculated. + + + + Sets an explicit value to the horizontal scrollbar. + + + + + Gets the value that the horizontal scrollbar needs to be set with in order + to display the specified date + + The specified date. + The scroll value. + + + + Gets the start date corresponding to a given value of the horizontal scrollbar. + + The value of the horizontal scrollbar. + The date which corresponds to the value. + + + + Called when the value of the horizontal scrollbar has changed. + + + + + Updates the scroll properties of the horizontal scrollbar. + + + + + Gets or sets the width of the vertical scroll bar. + + + + + Gets or sets the height of the appointment elements. + + + + + Gets the vertical scrollbar element. + + The VScroll bar. + + + + Gets or sets the margin between appointments. + + + + + Gets the instance. + + + + + Gets the instance. + + + + + Gets the horizontal scrollbar that stands for navigating between views. + + + + + Gets the view header height. + + + + + Gets the column header height. + + + + + Gets the appointment. + + + + + Gets or sets the proposed bounds. + + + + + Represents the appointments area in . + + + + + A base class for all visual elements in that can contain cells or appointments + (for example , , + , etc.) + + + + + Recycles the existing cell and appointment elements in this container + and replaces them with new ones. + + + + + Recycles the existing cell elements in this container + and replaces them with new ones. + + + + + Fires the CellsRefreshing event. + + The event arguments for the event. + + + + Fires the CellsRefreshed event. + + + + + Creates elements which will be used in this container. + + A collection of the newly created cells. + + + + Updates the existing cell elements according to the current settings of the associated view. + + + + + Overrideable method called by . + + + + + Removes the existing cell elements from the Children collection of the current container + and tries to cache them for reusing in the future. If the caching is not successfull, + the cell is disposed. + + + + + Gets the cell which represents a specified date. + + The specified date. + The corresponding cell. + + + + Recycles the existing appointment elements in this container + and replaces them with new ones. + + + + + Fires the AppointmentsRefreshing event. + + The event arguments for the event. + + + + Fires the AppointmentsRefreshed event. + + + + + Removes the existing appointment elements from the Children collection of the current container + and tries to cache them for reusing in the future. If the caching is not successfull, + the appointment element is disposed. + + + + + Creates elements which will be used in this container. + + A collection of the newly created appointment elements. + + + + Synchronizes all appointment elements in this container with their associated . + + + + + Gets the visual associated with a specified appointment from this container. + + The specified appointment. + The visual element or null if no such element is found. + + + + Called when an appointment element is being arranged. Override to correct the arrange position of the appointment. + + The appointment element that is being arranged. + The calculated arrange rectangle. + The arrange size of the parent container. + The corrected arrange bounds. + + + + Called when a cell element is being arranged. Override to correct the arrange position of the cell. + + The cell element that is being arranged. + The calculated arrange rectangle. + The arrange size of the parent container. + The corrected arrange bounds. + + + + Fired after the appointment elements in this container have been refreshed. + + + + + Fired when the appointment elements in this container are about to be refreshed. Cancelable. + + + + + Fired when the cell element in this container have been refreshed. + + + + + Fired when the cell elements in this container are about to be refreshed. Cancelable. + + + + + Gets the elements that belong to this container. + + + + + Gets the elements that belong to this container. + + + + + Creates a new instance of the class. + + The this presenter belongs to. + The this presenter belongs to. + The this presenter belongs to. + + + + Scrolls the presenter with a single row up or down. + + If [true] the presenter is scrolled up, otherwise it is scrolled down. + + + + Arranges the drag feedback element. + + + + + Arranges the cell elements in the presenter. + + The size passed to the ArrangeOverride method. + + + + Initially the appointments are all aranged in a single row and this method is called + to resolve any overlapping appointment. + + + + + Arranges the appointments in the presenter. + + The size passed to the ArrangeOverride method. + + + + Gets the that owns this presenter. + + + + + Gets or sets the appointment's height. + + + + + If there is an active drag operation and the visual feedback is currently inside the presenter, + returns the visual feedback element. Otherwise returns null. + + + + + Gets or sets the vertical scroll offset of the presenter. + + + + + Respresents the main visual element of RadScheduler when the active view is + and grouping by resource is enabled. + + + + + Gets or sets resource header width. + + + + + Represents the header in which contains + header cells for each column and the header cell displaying the range of the view. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + The which owns this header. + + + + + The cell which displays the range of the view. + + + + + Initializes a new instance of the class. + + + + + Years Timescale + + + + + Months Timescale + + + + + Weeks Timescale + + + + + Days Timescale + + + + + Hours Timescale + + + + + Half hour Timescale + + + + + Minutes Timescale + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + Fired before the CollectionChanged event, stands for internal use. + + + + + Contains objects. + + + + + Gets a object by id. + + The id. + + + + + Adds a range of objects to the collection. + + The event collection. + + + + Overridden. Inserts an item into the collection at the specified index. + + + + + + + Overridden. Removes the item at the specified index of the collection. + + + + + + Overridden. Replaces the element at the specified index. + + + + + + + Overridden. Removes all items from the collection. + + + + + Contains objects. + + + + + Gets a object by id. + + The id. + + + + + Contains objects. + + + + + Gets a object by id. + + The id. + + + + + Adds a range of objects to the collection. + + The resource collection. + + + + Contains objects. + + + + + Gets a object by id. + + The id. + + + + + Export to ICal format. + + + + + Exports the specified ISchedulerData instance to ICalendar format using the specified TextWriter instance. + + + + + Convert Appointment to list of . + + The appointment. + + CalendarParseException. + + + + Convert Appointment to list of . + + The appointment. + The unique id + + CalendarParseException. + + + + Creates a new iCal file. + + The appointments to write to the calendar. + + + + Creates the ICalendar VCALENDAR object with default properties. + + + + + + Writes the additional data for appointment. + + The appointment. + The cal object. + + + + Convert list of object to list of object. + + The time zones. + + + + + Gets or sets the encoding. + + The encoding. + + + + Import from ICalendar format. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The appointment factory. + + + + Initializes a new instance of the class. + + If set to true ignore appointment that can not parse. + + + + Initializes a new instance of the class. + + if set to true ignore appointment that can not parse. + The appointment factory. + + + + Imports iCalendar data form a stream into the specified ISchedulerData implementation. + + + + + Imports iCalendar data from a string into the specified ISchedulerData implementation. + + + + + Imports iCalendar data using the specified TextReader instance into the specified ISchedulerData implementation. + + + + + Gets the appointments from an CalObject instance. + + + + + Gets the parsed appointments from object and stores them into the specified collection. + + CalendarParseException. + + + + Sets the appointment data. + + The appointment. + The cal object. + The time zones. + CalendarParseException. + + + + Writes the additional data for appointment. + + The appointment. + The cal object. + + + + Gets the time zones. + + The calendar. + + + + + Gets or sets the encoding. + + The encoding. + + + + Represents the exception class for iCalendar parser-specific exceptions. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class. + + The stream reader. + + + + Reads the calendar. + + The text reader. + Can not read calendar. + ICalendar VCALENDAR object. + + + + Object type. + + + + + End object type. + + + + + Property type. + + + + + Initializes a new instance of the class. + + + + + A helper class for . + + + + + Initializes the class. + + + + + Gets the name of the appoitment status. + + The status. + Default return is Busy + + + + Gets the appoitment status. + + Name of the status. + Default return is Busy + + + + Gets the name of the appoitment background. + + The background. + Default return is None + + + + Gets the appoitment background. + + Name of the background. + Default return is None + + + + Gets an ICal string representation of the reminder time span. + + The time span. + The string representation. + + + + Gets the reminder time span from its string representation. + + The string representation + The appointment for which to get the reminder time span. + The reminder timespan of null if there is no such + + + + Converts the to string. + + The recurrence rule. + + + + + Converts the to string. + + The recurrence rule. + + + + + + Converts the to string in the format used by RadScheduler for ASP.NET AJAX. + + The recurrence rule. + + + + + Converts the to string in the format used by RadScheduler for ASP.NET AJAX. + + The recurrence rule. + + + + + + Tries to parse recurrence pattern. + + The string to parse. + The result. + + + + + Convert object to . + + The object to convert. + Converted . + Throws NotImplementedException where there are more than 1 standard or daylight. + + + + Provides class for iCal objects. + + + + + Initializes a new instance of the class. + + The name. + + + + Toes the time zone. + + The cal object. + + CalendarParseException. + + + + Verifies the property is not null. + + Name of the property. + + CalendarParseException. + + + + Adds the children. + + The name. + + + + + Adds the property. + + The key. + The value. + + + + + Adds the property. + + The key. + The value. + The parameter key. + The parameter value. + + + + + Determines whether the specified name contains property. + + The name. + + True if the specified name contains property; otherwise, false. + + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + + True if the current object is equal to the parameter; otherwise, false. + + + + + Gets the child by name. + + The name. + + + + + Gets the children objects. + + The children. + + + + Gets the name. + + The name. + + + + Gets the properties. + + The properties. + + + + Gets the with the specified property name. + + + + + + ICalendar Property object. + + + + + Initializes a new instance of the class. + + The name. + The value. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + + True if the current object is equal to the parameter; otherwise, false. + + + + + Gets or sets the property name. + + The name. + + + + Gets or sets the parameters. + + The parameters. + + + + Gets or sets the value. + + The value. + + + + Gets the with the specified key. + + + + + + parser. + + + + + Parses the date. + + The line. + + + + + Parses the local time. + + The line. + + + + + Parses the UTC. + + The line. + + + + + Toes the date string. + + The time. + + + + + Toes the date time string. + + The time. + string. + + + + Toes the UTC string. + + The time. + + + + + Represents a time interval defined by two DateTime values. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the interval. + The end of the interval. + + + + Initializes a new instance of the class. + + The start of the interval. + The duration of the interval. + + + + Determines whether the specified DateTimeInterval is null or empty. + + The interval. + + true if the specified DateTimeInterval is null or empty; otherwise, false. + + + + + Determines whether this interval contains another interval. + + The other. + + true if this inerval contains the other interval; otherwise, false. + + + + + Determines whether the specified date is contained in this interval. + + The date. + + true if this interval contains the specified date; otherwise, false. + + + + + Determines whether this interval intersects with the specified interval. + + The other interval. + + + + + Determines whether this interval intersects with the specified interval. + + The other interval. + + + + + Represents an empty DateTimeInterval value. + + + + + Gets or sets the start the start of the interval. + + The start the interval. + + + + Gets or sets the end of the interval. + + The end of the interval. + + + + Gets or sets the duration of the interval. + + The duration of the interval. + + + + Return the number of days that this interval spans. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Specifies that no background fill is drawn + + + + + Specifies that the important type of background fill should be drawn + + + + + Specifies that the business type background fill should be drawn + + + + + Specifies that the personal type of background fill should be drawn + + + + + Specifies that vacation type of background fill should be drawn + + + + + Specifies that the MustAttend type of background fill should be drawn + + + + + Specifies that the TravelRequired type of background fill should be drawn + + + + + Specifies that the NeedsPreparation type of background fill should be drawn + + + + + Specifies that the Birthday type of background fill should be drawn + + + + + Specifies that the Anniversary type of background fill should be drawn + + + + + Specifies that the PhoneCall type of background fill should be drawn + + + + + Specifies that the a solid brush is used to fill the status area of an appointment + + + + + Specifies that the a gradient brush is used to fill the status area of an appointment + + + + + Specifies that the hatch brush is used to fill the status area of an appointment + + + + + Represents a key value + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The key value. + + + + Gets the key value. + + The key value. + + + + Contains properties used by RadScheduler for background/category representation. + + + + + Gets the id. + + The id. + + + + Gets the display name. + + The display name. + + + + Gets the background color. + + The background color. + + + + Gets the second background color. + + The second background color. + + + + Gets the third background color. + + The third background color. + + + + Gets the fourth background color. + + The fourth background color. + + + + Gets the gradient angle. + + The gradient angle. + + + + Gets the gradient percentage. + + The gradient percentage. + + + + Gets the second gradient percentage. + + The second gradient percentage. + + + + Gets the gradient style. + + The gradient style. + + + + Gets the number of colors. + + The number of colors. + + + + Gets the fore color. + + The fore color. + + + + Gets the border color. + + The border color. + + + + Gets the border color2. + + The border color2. + + + + Gets the border color3. + + The border color3. + + + + Gets the border color4. + + The border color4. + + + + Gets the shadow color. + + The shadow color. + + + + Gets the border gradient style. + + The border gradient style. + + + + Gets the shadow style. + + The shadow style. + + + + Gets the shadow width. + + The shadow width. + + + + Gets the border box style. + + The border box style. + + + + Gets the selected border color. + + The selected border color. + + + + Gets the font. + + The font. + + + + Gets the date time font. + + The date time font. + + + + Gets the date time color. + + The date time color. + + + + Contains properties used by RadScheduler for background/category representation. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a solid gradient. + + The id. + The display name. + The color. + + + + Initializes a new instance of the class with a linear gradient. + + The id. + The display name. + The first gradient color. + The second gradient color. + + + + Initializes a new instance of the class with a linear gradient. + + The id. + The display name. + The first gradient color. + The second gradient color. + The fore color. + The border color. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the display name. + + The display name. + + + + Gets or sets the background color. + + The background color. + + + + Gets or sets the second background color. + + The second background color. + + + + Gets or sets the third background color. + + The third background color. + + + + Gets or sets the fourth background color. + + The fourth background color. + + + + Gets or sets the gradient angle. + + The gradient angle. + + + + Gets or sets the gradient percentage. + + The gradient percentage. + + + + Gets or sets the second gradient percentage. + + The second gradient percentage. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the fore color. + + The fore color. + + + + Gets or sets the border color. + + The border color. + + + + Gets or sets the border2 color. + + The border2 color. + + + + Gets or sets the border color3. + + The border color3. + + + + Gets or sets the border color4. + + The border color4. + + + + Gets or sets the shadow color. + + The shadow color. + + + + Gets or sets the border gradient style. + + The border gradient style. + + + + Gets or sets the shadow style. + + The shadow style. + + + + Gets or sets the shadow width. + + The shadow width. + + + + Gets or sets the border box style. + + The border box style. + + + + Gets or sets the selected border color. + + The selected border color. + + + + Gets or sets the font. + + The font. + + + + Gets or sets the date time font. + + The date time font. + + + + Gets or sets the date time color. + + The date time color. + + + + Contains properties used by RadScheduler for status representaion + + + + + Gets the id. + + The id. + + + + Gets the display name. + + The display name. + + + + Gets the background color. + + The background color. + + + + Gets the second background color. + + The second background color. + + + + Gets the type of the fill. + + The type of the fill. + + + + Gets the appointment border is used for the hatch fore color. + + Determine whether the appointment border is used for the hatch fore color. + + + + Contains properties used by RadScheduler for status representaion. + + + + + Initializes a new instance of the class. + + The id . + The display name. + The background color. + The second background color. + Type of the fill. + + + + Gets or sets the id of the AppointmentStatus that is default to appointments. Appointments with this status do not display the status-associated side color. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the display name. + + The display name. + + + + Gets or sets the background color. + + The background color. + + + + Gets or sets the second background color. + + The second background color. + + + + Gets or sets the type of the fill. + + The type of the fill. + + + + Gets the appointment border is used for the hatch fore color. + + Determine whether the appointment border is used for the hatch fore color. + + + + Defines methods and events to support the CultureInfo used by RadScheduler component. + + + + + Provides information about a specific culture, such as the names of the culture, the writing system, + the calendar used, and how to format dates and sort strings. + + + + + Occurs when CultureInfo instance used by RadScheduler is changed. + + + + + Provides localization services for RadScheduler + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Associates a source properties collection with the corresponding properties collection exposed by the scheduler events. + It is used in common by all RadScheduler data providers. + Contains a collection of SchedulerMapping objects, and is implemented by the + + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in RadScheduler. + The first element that matches the property name, if found. + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in the data store. + The first element that matches the property name, if found. + + + + Loads the Mappings list from an CSV file given its file name or path. + + The name or path of the CSV file that contains mappings definitions. + + + + Loads the Mappings list from a 2-dimentional array. + + a 2-dimentional array that contains the Mappings pairs. + + + + Gets the property name of an item from the data store that corresponds to a property name + of an item in RadScheduler. + + The name of the property of the item inside RadScheduler. + The name of the property of the item inside the data store. + + + + Sets the property name of an item from the data store that corresponds to a property name + of an item in RadScheduler. + + The name of the property of the item inside RadScheduler. + The name of the property of the item inside the data store. + + + + Indicates how data source items map their properties to the RadScheduler items properties. + Returns a list of SchedulerMapping instances that contain the mappings. + + + + + Gets or sets the appointment start date. + + The start. + + + + Gets or sets the appointment end date. + + The end. + + + + Gets or sets the exception recurrence date. + + The recurrence id date. + + + + Gets or sets the appointment duration. + + The duration. + + + + Gets or sets the summary info. + + The summary. + + + + Gets or sets the description info. + + The description. + + + + Gets or sets the location info. + + The location. + + + + Gets or sets the data source property corresponding to + the AllDay property of an appointment. + + + + + Gets or sets the visible. + + The visible. + + + + Gets or sets the whether the appointment can be deleted. + + The allow delete. + + + + Gets or sets the apppointment can be edited. + + The allow edit. + + + + Gets or sets the unique id. + + The unique id. + + + + Gets or sets the background id. + + The background id. + + + + Gets or sets the status id. + + The status id. + + + + Gets or sets the appointment reminder. The default mapping will try to read a numeric field containing + the amount of seconds before which the reminder should be triggered. + + Value should be timespan. + + + + Gets or sets the appointment recurrence rule. + + The recurrence rule. + + + + Gets or sets the master event id. + + The master event id. + + + + Gets or sets the resource id. + + The resource id. + + + + Gets or sets the name of the collection that contains the resources + for a given appointment in the data source. + + + + + Gets or sets the name of the collection that contains the exceptions + for a given appointment in the data source. + + + + + Represents a base class that the classes extend. + + + + + + Base interface for providers. + + The type used to specialize the provider implementation. + + + + Gets IEnumerable<T> for items that match the conditions defined by the specified predicate. + + The Predicate<T> delegate that defines the conditions of the item to search for. + IEnumerable<T> for items that match the conditions defined by the specified predicate, if found; + + + + Inserts an item of type T. + + The item of type T to insert. + + + + Updates he first occurrence of a specific item in the data store. + + The item of type T to update. + Name of the property which value changed. + Null or an empty string if all properties should be updated. + + + + Removes the first occurrence of a specific item from the data store. + + The item of type T to delete. + + + + The ItemsChanged event is raised by the provider to inform all listeners that the items in the data store have changed. + + + + + Gets or sets a data store mapping to the provider. + + + + + Initializes a new instance of the class. + + The owner. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Gets the items from the data source. + + An optional filter function. + + + + + Inserts the specified item in the data source. + + The item to insert. + + + + Updates the specified item in the data source. + + The item to update. + Name of the property which value changed. + Null or an empty string if all properties should be updated. + + + + Deletes the specified item from the data source. + + The item to delete. + + + + Raises the event. + + The instance containing the event data. + + + + Creates a specific scheduler item. + + + + + Called before all scheduler items are extracted from the data source. + + + + + Called after all scheduler items are extracted from the data source. + + + + + Creates a scheduler item given a data source item. + + The source properties. + The data source item. + + + + + Called to process a value from the data source when the target sheduler item property + as per the mapping cannot be found. + + The scheduler item. + The mapping. + The value. + + + + Updates the data item properties. + + The item. + The scheduler item. + + + + Gets or sets the mapping information that connects properties of scheduler items + with properties from the data source. + + The mapping. + + + + Represents the method that will handle the type conversion between the values of corresponding properties. + + The value to be converted. + The converted value. + + + + Represents the simple binding between the property of an item from the data store and + the property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + + + + Initializes a new instance of the SchedulerMapping class that simple-binds the + indicated property of an item from RadScheduler to the specified item from the data store. + + Property name of an item in RadScheduler. + Property name of an item in the data store. + + + + The callback that converts the given value object from the data store to the specified type of the RadScheduler corresponding item. + + + + + The callback that converts the given value object from a RadScheduler item to the specified type of the data store corresponding item. + + + + + Gets or sets the RadScheduler item property name that is mapped. + + + + + Gets or sets the data store item property name that is mapped. + + + + + Gets or sets a value indicating whether this instance is complex. + + + + + Contains information about a list change event. + + + + + + Initializes a new instance of the class. + + Type of the list change. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed item. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + The old item. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed items. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + The old items. + + + + Gets the type of the list change. + + The type of the list change. + + + + Gets the new items. + + The new items. + + + + Gets the old items. + + The old items. + + + + Gets the name of the property. + + The name of the property. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the resource name. + + The name. + + + + Gets or sets the resource image. + + The image. + + + + Gets or sets name of the visible property in the datasource. + + The visible. + + + + Gets or sets the color property in the datasource. + + The color. + + + + A data source for RadScheduler that can be used to bind it to a collection containing scheduling data. + + + + + + Gets the event provider. + + + + + + Gets the resource provider. + + + + + + Reise when the data source is changed. + + + + + Initializes a new instance of the class. + + + + + Gets the event provider. + + + + + + Gets the resource provider. + + + + + + Called when [data source changed]. + + + + + Rebinds data. + + + + + Reise when the data source is changed. + + + + + Gets the event provider. + + The event provider. + + + + Gets the resource provider. + + The resource provider. + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a specific scheduler item. + + + + + + Called to process a value from the data source when the target sheduler item property + as per the mapping cannot be found. + + The scheduler item. + The mapping. + The value. + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a specific scheduler item. + + + + + + Updates he first occurrence of a specific item in the data store. + + The item of type T to update. + Name of the property which value changed. + Null or an empty string if all properties should be updated. + + + + Updates he first occurrence of a specific item in the data store. + + The item of type T to update. + Name of the property which value changed. + Null or an empty string if all properties should be updated. + + + + Specifies that the status of an appointment is Free + + + + + Specifies that the status of an appointment is Busy + + + + + Specifies that the status of an appointment is Unavailable + + + + + Specifies that the status of an appointment is Tentative + + + + + Specifies that the recurrence rule of an appointment is Minutely + + + + + Specifies that the recurrence rule of an appointment is Hourly + + + + + Specifies that the recurrence rule of an appointment is Daily + + + + + Specifies that the recurrence rule of an appointment is Weekly + + + + + Specifies that the recurrence rule of an appointment is Monthly + + + + + Specifies that the recurrence rule of an appointment is Yearly + + + + + Specifies that the scheduler view is day view + + + + + Specifies that the scheduler view is a multi-day view + + + + + Specifies that the scheduler view is week view + + + + + Specifies that the scheduler view is workweek view + + + + + Specifies that the scheduler view is month view + + + + + Specifies that the scheduler view is timeline view + + + + + Specifies that the scheduler view is agenda view + + + + + Specifies none of the days + + + + + Specifies the first day of the week + + + + + Specifies the second day of the week + + + + + Specifies the third day of the week + + + + + Specifies the fourth day of the week + + + + + Specifies the fifth of the week + + + + + Specifies the sixth of the week + + + + + Specifies the seventh of the week + + + + + Specifies every day of the week + + + + + Specifies the weekend days of the week + + + + + Specifies the work days of the week + + + + + To use a object as a resource in RadScheduler it should implement this interface. + + + + + Gets or sets the name of the resource. + + The name of the resource. + + + + Gets or sets the id of the resource. + + The id of the resource. + + + + Gets or sets the image of the resource. + + The image of the resource. + + + + Gets or sets a value indicating whether this is visible. + + true if visible; otherwise, false. + + + + Gets or sets the color that is associated with the resource. + + The color of the resource. + + + + Initializes a new instance of the class. + + + + + Creates the appointment edit dialog. + Overwrite in an inheriting class to replace the dialog used to edit appointments. + + + + + + Disposes the managed resources. + + + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Shows the appointment edit dialog. + + The appointment. + if set to true shows the recurrence rule edit dialog just after the appointment edit dialog. + + + + + Gets the day view. + + + + + + Gets the multi day view. + + + + + + Gets the week view. + + + + + + Gets the month view. + + + + + + Gets the timeline view. + + + + + + Gets the agenda view. + + + + + + Exports the data in this RadScheduler instance to the specified stream, + using the specified ISchedulerExporter instance. + + + + + Exports the data in this RadScheduler instance in a string, + using the specified ISchedulerExporter instance. + + + + + Imports the data from the specified stream into this RadScheduler instance, + using the specified ISchedulerImporter instance. + + + + + Imports the data from the specified string into this RadScheduler instance, + using the specified ISchedulerImporter instance. + + + + + Saves all appointment reminders to the provided file. If the file does not exist it is created otherwise it is overwritten. + + The path to the file to save the reminders to. + + + + Saves all appointment reminders to the provided stream. + + The stream to save the reminders to. + + + + Clears the reminders of all appointments. Usually this method is used before LoadReminders is called. + + + + + Loads the reminders from the specified file path. + + The path to the file to load reminders from. + + + + Loads the reminders from the specified stream. + + The steam to load reminders from. + + + + Displays the context menu associated with this control on the provided location. + + The location where the context menu should open. + + + + Gets the event storage. + + + + + + Gets the resource storage. + + + + + + Gets the background storage. + + + + + + Gets the status storage. + + + + + + Gets the reminder storage. + + + + + + Fires the CultureChanged event. + + + + + Fired when the editor should be opened + + + + + + Called when appointments have been added. + + The list of added appointments. + + + + Called when appointments have been removed. + + The list of removed appointments. + + + + Called when appointments have been replaced. + + The old items. + The new items. + + + + Called when appointments have to be refreshed. + + + + + Called when one or more appointments have changed. + + The list of changed appointments. + Name of the property. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The event arguments. + + + + Raises the event. + + The instance containing the event data. + + + + Fills the default statuses. + + The status collection in which to add the status objects. + + + + Fills the default reminder intervals. + + The reminder collection in which to add the reminder objects. + + + + Fills the default backgrounds. + + The background collection in which to add the background objects. + + + + Shows the appointment edit dialog to add a new appointment. + + The interval to pass to the ShowAppointmentEditDialog method. + Indicates whether the appointment should be a recurring one. + The resources of the new appointment. + + + + Shows the appointment edit dialog to add a new appointment. + + The interval to pass to the ShowAppointmentEditDialog method. + Indicates whether the appointment should be an AllDay appointment. + Indicates whether the appointment should be a recurring one. + The resources of the new appointment. + + + + Copies the currently selected appointments to the clipboard. + + + + + Deletes the currently selected appointments and saves them to the clipboard. + + + + + Pastes the content from the clipboard to the scheduler. + + + + + Directly prints the to the default printer. + + + + + Directly prints the to the default printer or shows printer settitngs and then prints the . + + Indicates whether printer settings dialog should be shown. + + + + Directly prints the to the default printer or shows printer settitngs and then prints the . + + Indicates whether printer settings dialog should be shown. + As instance of used to control the print process. + + + + Shows a for editing the print settings. + + + + + Shows a for editing the print settings. + + As instance of used to control the print process. + + + + Gets or sets a factory class that is used when creating appointment elements. + + + + + Gets or sets the which is responsible for handling + the mouse and keyboard input. Be sure to dispose the old instance when replacing it with a new one. + + + + + Gets or sets the which is responsible for + handling the selection of cells and appointments in . + + + + + Gets or sets the which is responsible for creating and + recycling of most of RadScheduler's visual elements. + + + + + Gets or sets the behavior responsible for saving and loading appointment reminders. + + + + + Gets or sets a comparer which will be used to determine the order of the appointments + when they have the same Start and End dates. + + + + + Gets or sets the which is responsible for + performing the drag and drop of appointments in RadScheduler. + + + + + Gets or sets the which is responsible for + performing the resizing of appointments in RadScheduler. + + + + + Gets or sets the selected time zone. + + The selected time zone. + + + + Gets or sets the data source. + + The data source. + + + + Gets the scheduler element. + + The scheduler element. + + + + Gets the view element. + + The view element. + + + + Gets the statuses. + + The statuses. + + + + Gets the resources. + + The resources. + + + + Gets the backgrounds. + + The backgrounds. + + + + Gets the predefined reminder time intervals. + + The reminder intervals. + + + + Gets or sets the type of the active view. + + The type of the active view. + + + + Gets the appointments. + + The appointments. + + + + Gets or sets the interval which is accessible to the user. + + The accessible interval. Default value is DateTimeInterval.Empty. + + + + Gets or sets the active view. + + The active view. + + + + Gets or sets an which used to create + objects which represent the appointments in RadScheduler. + + + + + Gets or sets value whether to show the today visual state of scheduler cells + + + + + Enables or disables mouse wheel support. + + + + + Allows or disallows the end user to copy, cut and paste appointments + using the default combinations Ctrl+X, Ctrl+C and Ctrl+V. + + + + + Enables automatic navigation to previous/next view when dragging an appointment outside the boundaries of the control. + + + + + Enables or disables appointment resizing + + + + + Enables or disables creating appointments when typing in a cell. + + + + + Enables or disables appointment moving. + + + + + Gets or sets a value indicating whether the appointment status should be displayed. + + + true if appointment status is displayed otherwise, false. + + + + + Gets or sets a value indicating whether to display all day appointment status. + + + true if all day appointment status is displayed; otherwise, false. + + + + + Gets or sets a value indicating whether the appointments elements should be sized to fit their content. + + + + + Gets or sets a value indicating whether selecting multiple appointments is possible. + + + + + Gets the default recurrence icon. + + The default recurrence icon. + + + + Gets or sets the appointment reccurence icon. + + The appointment recurrence icon. + + + + Gets the default size of the control. + + + The default of the control. + + + + Gets or sets a value whether to show the "Previous/Next Appointment" navigation elements. + + + + + Gets or sets the appointment title format. + + The appointment title format. + + + + Gets or sets a value indicating whether appointments can be changed. + + true if the scheduler is read-only; otherwise, false. + + + + Gets or sets the header format. + + The header format. + + + + Gets or sets the type of grouping. + + + + + Gets or sets a value indicating whether tool tips are shown. + + true if tool tips are shown; otherwise, false. + + + + Gets or sets a DateTimeFormatInfo instance that defines the + culturally appropriate format of displaying dates and times as specified by the default + culture. + + + A DateTimeFormatInfo can be created only for the invariant + culture or for specific cultures, not for neutral cultures. + The cultures are generally grouped into three sets: the invariant culture, + the neutral cultures, and the specific cultures. + The invariant culture is culture-insensitive. You can specify the invariant + culture by name using an empty string ("") or by its culture identifier 0x007F. + InvariantCulture retrieves an instance of the invariant culture. + It is associated with the English language but not with any country/region. It can + be used in almost any method in the Globalization namespace that requires a + culture. If a security decision depends on a string comparison or a case-change + operation, use the InvariantCulture to ensure that the behavior will be + consistent regardless of the culture settings of the system. However, the invariant + culture must be used only by processes that require culture-independent results, + such as system services; otherwise, it produces results that might be + linguistically incorrect or culturally inappropriate. + A neutral culture is a culture that is associated with a language but not + with a country/region. A specific culture is a culture that is associated with a + language and a country/region. For example, "fr" is a neutral culture and "fr-FR" + is a specific culture. Note that "zh-CHS" (Simplified Chinese) and "zh-CHT" + (Traditional Chinese) are neutral cultures. + The user might choose to override some of the values associated with the + current culture of Windows through Regional and Language Options (or Regional + Options or Regional Settings) in Control Panel. For example, the user might choose + to display the date in a different format or to use a currency other than the + default for the culture. + If UseUserOverride is true and the specified culture + matches the current culture of Windows, the CultureInfo uses those + overrides, including user settings for the properties of the + DateTimeFormatInfo instance returned by the DateTimeFormat property, + the properties of the NumberFormatInfo instance returned by the + NumberFormat property, and the properties of the + CompareInfo instance returned by the CompareInfo + property. If the user settings are incompatible with the culture associated with + the CultureInfo (for example, if the selected calendar is not one of the + OptionalCalendars ), the results of the methods and the values of + the properties are undefined.
+
+ Note: In this version of RadCalendar the + NumberFormatInfo instance returned by the + NumberFormat property is not taken into account.
+
+
+ + + Gets or sets the value that is used by RadScheduler to determine + the viewable area displayed . + + + By default, the FocusedDate property returns the current + system date when in runtime, and in design mode defaults to + System.DateTime.MinValue. When the FocusedDate is + set, from that point, the value returned by the FocusedDate + property is the one the user sets. + + + + + Gets or sets the CultureInfo supported by this RadScheduler object. + Describes the names of the culture, the writing system, and + the calendar used, as well as access to culture-specific objects that provide + methods for common operations, such as formatting dates and sorting strings. + + + The culture names follow the RFC 1766 standard in the format + "<languagecode2>-<country/regioncode2>", where <languagecode2> is + a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> + is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is + "en-US". In cases where a two-letter language code is not available, the + three-letter code derived from ISO 639-2 is used; for example, the three-letter + code "div" is used for cultures that use the Dhivehi language. Some culture names + have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic + script, "-Latn" specifies the Latin script. + The following predefined CultureInfo names and identifiers are + accepted and used by this class and other classes in the System.Globalization + namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Culture NameCulture IdentifierLanguage-Country/Region
"" (empty string)0x007Finvariant culture
af0x0036Afrikaans
af-ZA0x0436Afrikaans - South Africa
sq0x001CAlbanian
sq-AL0x041CAlbanian - Albania
ar0x0001Arabic
ar-DZ0x1401Arabic - Algeria
ar-BH0x3C01Arabic - Bahrain
ar-EG0x0C01Arabic - Egypt
ar-IQ0x0801Arabic - Iraq
ar-JO0x2C01Arabic - Jordan
ar-KW0x3401Arabic - Kuwait
ar-LB0x3001Arabic - Lebanon
ar-LY0x1001Arabic - Libya
ar-MA0x1801Arabic - Morocco
ar-OM0x2001Arabic - Oman
ar-QA0x4001Arabic - Qatar
ar-SA0x0401Arabic - Saudi Arabia
ar-SY0x2801Arabic - Syria
ar-TN0x1C01Arabic - Tunisia
ar-AE0x3801Arabic - United Arab Emirates
ar-YE0x2401Arabic - Yemen
hy0x002BArmenian
hy-AM0x042BArmenian - Armenia
az0x002CAzeri
az-AZ-Cyrl0x082CAzeri (Cyrillic) - Azerbaijan
az-AZ-Latn0x042CAzeri (Latin) - Azerbaijan
eu0x002DBasque
eu-ES0x042DBasque - Basque
be0x0023Belarusian
be-BY0x0423Belarusian - Belarus
bg0x0002Bulgarian
bg-BG0x0402Bulgarian - Bulgaria
ca0x0003Catalan
ca-ES0x0403Catalan - Catalan
zh-HK0x0C04Chinese - Hong Kong SAR
zh-MO0x1404Chinese - Macau SAR
zh-CN0x0804Chinese - China
zh-CHS0x0004Chinese (Simplified)
zh-SG0x1004Chinese - Singapore
zh-TW0x0404Chinese - Taiwan
zh-CHT0x7C04Chinese (Traditional)
hr0x001ACroatian
hr-HR0x041ACroatian - Croatia
cs0x0005Czech
cs-CZ0x0405Czech - Czech Republic
da0x0006Danish
da-DK0x0406Danish - Denmark
div0x0065Dhivehi
div-MV0x0465Dhivehi - Maldives
nl0x0013Dutch
nl-BE0x0813Dutch - Belgium
nl-NL0x0413Dutch - The Netherlands
en0x0009English
en-AU0x0C09English - Australia
en-BZ0x2809English - Belize
en-CA0x1009English - Canada
en-CB0x2409English - Caribbean
en-IE0x1809English - Ireland
en-JM0x2009English - Jamaica
en-NZ0x1409English - New Zealand
en-PH0x3409English - Philippines
en-ZA0x1C09English - South Africa
en-TT0x2C09English - Trinidad and Tobago
en-GB0x0809English - United Kingdom
en-US0x0409English - United States
en-ZW0x3009English - Zimbabwe
et0x0025Estonian
et-EE0x0425Estonian - Estonia
fo0x0038Faroese
fo-FO0x0438Faroese - Faroe Islands
fa0x0029Farsi
fa-IR0x0429Farsi - Iran
fi0x000BFinnish
fi-FI0x040BFinnish - Finland
fr0x000CFrench
fr-BE0x080CFrench - Belgium
fr-CA0x0C0CFrench - Canada
fr-FR0x040CFrench - France
fr-LU0x140CFrench - Luxembourg
fr-MC0x180CFrench - Monaco
fr-CH0x100CFrench - Switzerland
gl0x0056Galician
gl-ES0x0456Galician - Galician
ka0x0037Georgian
ka-GE0x0437Georgian - Georgia
de0x0007German
de-AT0x0C07German - Austria
de-DE0x0407German - Germany
de-LI0x1407German - Liechtenstein
de-LU0x1007German - Luxembourg
de-CH0x0807German - Switzerland
el0x0008Greek
el-GR0x0408Greek - Greece
gu0x0047Gujarati
gu-IN0x0447Gujarati - India
he0x000DHebrew
he-IL0x040DHebrew - Israel
hi0x0039Hindi
hi-IN0x0439Hindi - India
hu0x000EHungarian
hu-HU0x040EHungarian - Hungary
is0x000FIcelandic
is-IS0x040FIcelandic - Iceland
id0x0021Indonesian
id-ID0x0421Indonesian - Indonesia
it0x0010Italian
it-IT0x0410Italian - Italy
it-CH0x0810Italian - Switzerland
ja0x0011Japanese
ja-JP0x0411Japanese - Japan
kn0x004BKannada
kn-IN0x044BKannada - India
kk0x003FKazakh
kk-KZ0x043FKazakh - Kazakhstan
kok0x0057Konkani
kok-IN0x0457Konkani - India
ko0x0012Korean
ko-KR0x0412Korean - Korea
ky0x0040Kyrgyz
ky-KZ0x0440Kyrgyz - Kazakhstan
lv0x0026Latvian
lv-LV0x0426Latvian - Latvia
lt0x0027Lithuanian
lt-LT0x0427Lithuanian - Lithuania
mk0x002FMacedonian
mk-MK0x042FMacedonian - FYROM
ms0x003EMalay
ms-BN0x083EMalay - Brunei
ms-MY0x043EMalay - Malaysia
mr0x004EMarathi
mr-IN0x044EMarathi - India
mn0x0050Mongolian
mn-MN0x0450Mongolian - Mongolia
no0x0014Norwegian
nb-NO0x0414Norwegian (Bokmål) - Norway
nn-NO0x0814Norwegian (Nynorsk) - Norway
pl0x0015Polish
pl-PL0x0415Polish - Poland
pt0x0016Portuguese
pt-BR0x0416Portuguese - Brazil
pt-PT0x0816Portuguese - Portugal
pa0x0046Punjabi
pa-IN0x0446Punjabi - India
ro0x0018Romanian
ro-RO0x0418Romanian - Romania
ru0x0019Russian
ru-RU0x0419Russian - Russia
sa0x004FSanskrit
sa-IN0x044FSanskrit - India
sr-SP-Cyrl0x0C1ASerbian (Cyrillic) - Serbia
sr-SP-Latn0x081ASerbian (Latin) - Serbia
sk0x001BSlovak
sk-SK0x041BSlovak - Slovakia
sl0x0024Slovenian
sl-SI0x0424Slovenian - Slovenia
es0x000ASpanish
es-AR0x2C0ASpanish - Argentina
es-BO0x400ASpanish - Bolivia
es-CL0x340ASpanish - Chile
es-CO0x240ASpanish - Colombia
es-CR0x140ASpanish - Costa Rica
es-DO0x1C0ASpanish - Dominican Republic
es-EC0x300ASpanish - Ecuador
es-SV0x440ASpanish - El Salvador
es-GT0x100ASpanish - Guatemala
es-HN0x480ASpanish - Honduras
es-MX0x080ASpanish - Mexico
es-NI0x4C0ASpanish - Nicaragua
es-PA0x180ASpanish - Panama
es-PY0x3C0ASpanish - Paraguay
es-PE0x280ASpanish - Peru
es-PR0x500ASpanish - Puerto Rico
es-ES0x0C0ASpanish - Spain
es-UY0x380ASpanish - Uruguay
es-VE0x200ASpanish - Venezuela
sw0x0041Swahili
sw-KE0x0441Swahili - Kenya
sv0x001DSwedish
sv-FI0x081DSwedish - Finland
sv-SE0x041DSwedish - Sweden
syr0x005ASyriac
syr-SY0x045ASyriac - Syria
ta0x0049Tamil
ta-IN0x0449Tamil - India
tt0x0044Tatar
tt-RU0x0444Tatar - Russia
te0x004ATelugu
te-IN0x044ATelugu - India
th0x001EThai
th-TH0x041EThai - Thailand
tr0x001FTurkish
tr-TR0x041FTurkish - Turkey
uk0x0022Ukrainian
uk-UA0x0422Ukrainian - Ukraine
ur0x0020Urdu
ur-PK0x0420Urdu - Pakistan
uz0x0043Uzbek
uz-UZ-Cyrl0x0843Uzbek (Cyrillic) - Uzbekistan
uz-UZ-Latn0x0443Uzbek (Latin) - Uzbekistan
vi0x002AVietnamese
vi-VN0x042AVietnamese - Vietnam
+
+
+ + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets whether appointments are rendered according to their start and end time or are aligned to the scheduler grid lines. + + + + + Gets or sets a value indicating whether the CellPaint event will be fired. + + + + + AutoSize is not supported by RadScheduler. Setting it will have no effect. + + + + + RadScheduler consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadScheduler consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Fired when a cell element is being prepared for displaying. + Use this event to modify visual properties of the . + Modifying data properties on the formatting events can result in exceptions. + + + + + Occurs after a cell is drawn. Allows custom painting over the cell element. EnableCustomCellDrawing must be set to true for this event to be fired. + + + + + Occurs when appointment element is rendered. + + + + + Occurs when culture has changed + + + + + Occurs when the an appointment is about to be moved. + + + + + Occurs when the an appointment has been moved. + + + + + Occurs when the an appointment is about to be dropped. + + + + + Occurs when the an appointment has been dropped. + + + + + Occurs when the an appointment is about to be resized. + + + + + Occurs when the an appointment has been resized. + + + + + Occurs when the a rezie operation is starting. Cancelable. + + + + + Occurs when the a resize operation has ended. + + + + + Occurs when the scheduler is deleting the selected appointment. + + + + + Occurs when the scheduler has deleted the selected appointment. + + + + + Occurs when the end user adds an appointment either with the EditAppointmentDialog or inline. + + + + + Occurs when an appointment's property has changed. + + + + + Occurs when an appointment will be selected. + + + + + Occurs when an appointment is selected. + + + + + Occurs when the cell selection is about to change. Cancelable. + + + + + Occurs when the cell selection has changed. + + + + + Occurs when the ResourceStartIndex has changed. Fired only when grouping by resource. + + + + + Occurs when the ResourceStartIndex is about to change. Cancelable. + Fired only when grouping by resource. + + + + + Occurs when a cell is clicked. + + + + + Occurs when the MouseUp event of an appointment is fired. + + + + + Occurs when the MouseDown event of an appointment is fired. + + + + + Occurs when the MouseDown event of an appointment element is fired. + + + + + Occurs when the MouseMove event of an appointment element is fired. + + + + + Occurs when the MouseUp event of an appointment element is fired. + + + + + Occurs when the DoubleClick event of an appointment element is fired. + + + + + Occurs when the MouseDown event of the cell is fired. + + + + + Occurs when the MouseMove event of the cell is fired. + + + + + Occurs when the MouseUp event of the cell is fired. + + + + + Occurs when the DoubleClick event of the cell is fired. + + + + + Occurs when the KeyDown event of the cell is fired. + + + + + Occurs when the KeyPressed event of the cell is fired. + + + + + Occurs when the KeyUp event of the cell is fired. + + + + + Occurs when the Data is loaded from the data source. + + + + + Occurs before the context menu is opened. + + + + + Occurs when the ActiveView is about to change. + + + + + Occurs when the ActiveView has changed. + + + + + Occurs when an appointment element is prepared to be displayed. + Use this event to modify visual properties of the . + Modifying data properties on the formatting events can result in exceptions. + + + + + Occurs when an inline appointment editor is required. + + + + + Occurs when the view is about to change and this is caused by a click on the ViewNavigationElement. + + + + + Occurs when the view has changed and this is caused by a click on the ViewNavigationElement. + + + + + Occurs when the overflow arrow of a cell in MonthView is clicked. When this event is handled, the default action of the overflow arrow is not executed. + + + + + Fires when a print element is being formatted before it is printed. + + + + + Fires when a cell print element is being formatted before it is printed. + + + + + Fires when an appointment print element is being formatted before it is printed. + + + + + Fires when a print element is printed. + + + + + Fires when a cell print element is printed. + + + + + Fires when an appointment print element is printed. + + + + + Occurs when the EditAppointmentDialog is showing. + + + + + Occurs when the EditReccurenceDialog is showing. + + + + + Occurs when the DeleteRecurrenceDialog is showing. + + + + + Occurs when the text of a ruler is drawn. + + + + + Fired by the Copy operation when the scheduler is about to prepare the clipboard data. + This event allows you to cancel the default action and implement a custom one. + + + + + Fired by the Paste operation when the scheduler is about to read the clipboard data. + This event allows you to cancel the default action and implement a custom one. + + + + + Gets or sets a value indicating how the is printed. + + + + + Represents the collection with Holidays object + + + + + Represents a daily recurrence rule. + + + + + Represents a base class that the actual recurrence rules extend. + + + + + Creates a rule given its type. + + The type of the recurrence rule. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The interval of the recurrence rule. + The maximum number of occurrences. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The interval. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The interval of the recurrence rule. + The maximum number of occurrences. + + + + Gets a date at a given index after the specified startDate. The returned date will be checked with MatchAdvancedPattern + to see if it matches the recurrence rule. + NOTE: The returned date is not an actual occurence start. To get the start date of a real occurrence use . + + The index after the suggested date. + The suggested start date. + The date time format. + A potential occurrence start which should be checked if it matches the pattern. + + + + Checks if there is an occurrence exception on the specified date. + + The date to check for exceptions. + [true] if there is an exception on that date, [false] otherwise + + + + Gets or sets the start of the recurrence rule. + + The start. + + + + Gets or sets the end of the recurrence rule. + + The end. + + + + Gets the durration of the recurring event. + + + + + Gets or sets the maximum number of occurrences. + + The count. + + + + Gets or sets the interval of the recurrence rule. + + The interval. + + + + Gets the type of the recurrence rule. + + The type of the recurrence rule. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The interval of the recurrence rule. + The maximum number of occurrences. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The interval of the recurrence rule. + The maximum number of occurrences. + + + + Gets the occurrence start given a occurrence index. + + The index. + The start of the recurring series. + The date time format. + + + + + Gets the type of the recurrence rule. + + The type of the recurrence rule. + + + + Represents a hourly recurrence rule. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The interval of the recurrence rule. + The maximum number of occurrences. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The interval of the recurrence rule. + The maximum number of occurrences. + + + + Gets the occurrence start for given a occurrence index. + + The index. + The start of the recurring series. + The date time format. + + + + + Gets the type of the recurrence rule. + + The type of the recurrence rule. + + + + Represents a minutely recurrence rule. + + + + + Gets the occurrence start for given a occurrence index. + + The index. + The start of the recurring series. + The date time format. + + + + + Gets the type of the recurrence rule. + + The type of the recurrence rule. + + + + Represents a monthly recurrence rule. + + + + + Represents a weekly recurrence rule. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week days. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week days. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The week days. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The week days. + The interval of the recurrence rule. + The count. + + + + Gets the occurrence start given a occurrence index. + + The index. + The start of the reccuring series. + The date time format. + + + + + Gets the type of the recurrence rule. + + The type of the recurrence rule. + + + + Gets or sets the week days. + + The week days. + + + + Gets or sets the offset. + + The offset. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The day number of the recurrence rule. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The day number. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week number. + The week days. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week number. + The week days. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week days. + The offset. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week days. + The offset. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The day number. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The day number. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The week number. + The week days. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The week number. + The week days. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The week days. + The offset. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The end of the recurrence rule. + The week days. + The offset. + The interval of the recurrence rule. + The count. + + + + Gets the occurrence start given an occurrence index. + + The index. + The start date of the series. + The date time format. + + + + + Gets the type of the recurrence rule. + + The type of the recurrence rule. + + + + Gets or sets the day number. + + The day number. + + + + Gets or sets the week number. + + The week number. + + + + Represents a yearly recurrence rule. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The day number. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The month number. + The day number. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The month number. + The day number. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week number. + The week days. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week number. + The week days. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The month number. + The week number. + The week days. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The month number. + The week number. + The week days. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week days. + The offset. + The interval of the recurrence rule. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The week days. + The offset of the recurrence rule. + The interval of the recurrence rule. + The count. + + + + Initializes a new instance of the class. + + The start of the recurrence rule. + The month number. + The week days. + The offset of the recurrence rule. + The interval of the recurrence rule. + The count. + + + + Gets the occurrence start given a occurrence index. + + The index. + The start of the recurring series. + The date time format. + + + + + Gets the type of the recurrence rule. + + The type of the recurrence rule. + + + + Gets or sets the month number. + + The month number. + + + + Represents a resource that can be assigned to a schedule event in RadScheduler. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The id of the new resource. + The name of the new resource. + + + + Initializes a new instance of the class. + + The id of the new resource. + The name of the new resource. + + + + Gets or sets the name of the resource. + + The name of the resource. + + + + Gets or sets the id of the resource. + + The id of the resource. + + + + Gets or sets the image of the resource. + + The image of the resource. + + + + Gets or sets a value indicating whether this is visible. + + true if visible; otherwise, false. + + + + Gets or sets the color that is associated with the resource. + + The color of the resource. + + + + Initializes a new instance of the class. + + The start. + The end. + + + + Called when a property is changed. + + Name of the property. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + + true if the current object is equal to the parameter; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Clones this instance. + + + + + + Gets or sets the start of the work time. + + The start. + + + + Gets or sets the end of the work time. + + The end. + + + + Gets or sets the work time duration. + + The duration. + + + + Gets or sets the property changed action. + + The property changed action. + + + + Occurs when a property is changed. + + + + + Initializes a new instance of the class. + + + + + Gets the scaling factor. + + + + + + Gets the Name + + + + + + Initializes a new instance of the class. + + + + + Gets the scaling factor. + + + + + + Gets the Name + + + + + + Gets the timescale. + + The timescale. + + + + Gets the destination date for an appointment that was dropped on a given cell. + + The cell. + The destination date. + + + + Gets a at a specified location. + + The location in control coordinates. + The at that location. + + + + Gets a at a specified location. + + The location in control coordinates. + The at that location. + + + + Gets a at a specified location. + + The location in control coordinates. + The at that location. + + + + Gets a at a specified location. + + The location in control coordinates. + The at that location. + + + + Gets a at a specified location. + + The location in control coordinates. + The at that location. + + + + Moves the active feedback to a new owner. + + The new owner of the feedback. + + + + Handles dragging the active feedback to a given point. + + The destination point in control coordinates. + + + + Gets whether this is a valid drag operation. + + + + + + + + Gets whether the element is found in the owners collection. + + + + + + + Gets a specific feedback. + + + + + + + Request move operation. + + + + + + + + Hides the active feedbacks. + + [true] if successful, [false] otherwise + + + + Removes the visual feedback. Cancels the drag operation. + + + + + + + Handles the Drop operation. + + + + + Moves the feedback to a specific date in a specific resource. + + The destination date. + The destination cell. + The destination visual element. + [true] if the move was performed, [false] otherwise + + + + Adds the active feedback to the active owner. + + + + + + Creates a new appointment feedback of a given appointment. + + + + + + + + + Occurs when the feedback is initialized. + + + + + Occurs when the feedback is creating. + + + + + Occurs when an appointment is moving. + + + + + Occurs when an appointment is moved. + + + + + Occurs when drag drop is finishing. + + + + + Occurs when drag drop has finished. + + + + + Gets or sets a value indicating whether the appointment areas in DayView should + be automatically scrolled when dragging off their bounds. + + + + + Gets or sets a value indicating whether a message box should be shown + when an occurrence is dragged to an invalid location. + + + + + Gets or sets a value indicating whether a prompt dialog box should be shown + when the user is about to create occurrence exception via drag and drop. + + + + + Gets or sets the offset from the bounds of the control in pixels after + which the automatic view navigation will be triggered. + + + + + Gets or sets the minimum time interval between automatic view navigations. + + + + + The that owns the behaviors. + + + + + Indicates whether there is an active drag operation. + + + + + Gets the behavior's active owner. + + + + + Gets the active feedback. + + + + + + + + + + Creates a new . + + The bias to the UTC time in minutes/ + The name of the time zone. + + + + + + + + + Adds a range of objects to the collection. + + The event collection. + + + + Overridden. Inserts an item into the collection at the specified index. + + + + + + + Overridden. Removes the item at the specified index of the collection. + + + + + + Overridden. Replaces the element at the specified index. + + + + + + + Overridden. Removes all items from the collection. + + + + + The final arrange bounds of the element. This rectangle is calculated durring the + layout of the parrent container and is used to perform the final arrange. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + The appointment. + + + + Synchronizes element properties with Appointment properties. + + + + + Synchronizes the start and end with event. + + + + + Sets the background id. + + The background id. The value should be existing in the Scheduler.Backgrounds. + + + + Gets or sets the title format. + + The title format. + + + + Gets or sets a value indicating whether a appointment description should be drawn + + true if ShowAppointmentDescription; otherwise, false. + + + + Gets or sets a value indicating whether this is recurring. + + true if recurring; otherwise, false. + + + + Gets or sets the text associated with this item. + + + + + + Gets or sets the appointment subject. + + The appointment subject. + + + + Gets or sets the appointment icon. + + The appointment icon. + + + + Gets or sets the appointment location. + + The appointment location. + + + + Gets or sets the appointment description. + + The appointment description. + + + + Gets or sets a value indicating whether this is selected. + + true if selected; otherwise, false. + + + + Gets or sets the related appointments. + + The related appointments. + + + + Gets or sets the start date. + + The start. + + + + Gets or sets the end date. + + The end. + + + + Gets or sets the appointment. + + The appointment. + + + + Gets or sets a value indicating whether use the built-in LightVisualElement painting. + + + + + Gets or sets the size of the resize handles of this element. + + + + + Gets or sets the back color of the resize handles of this element. + + + + + Gets or sets the border color of this element for the selected state. + + + + + Gets or sets a value indicating whether HTML-like text rendering will be used for the appointment text. + + + + + Updates the current mouse cursor. + + The current position + The top or left area of the appointment which can start a resize + The bottom or right area of the appointment which can start a resize + True if the mouse position is in a resize location, false otherwise. + + + + Represents the vertical resizing. + + + + + + + + Represents the horizontal resizing. + + + + + + + + Initializes the WE cursor when an appointment is horizontally resized.. + + + + + + + + + + Initializes the NS cursor shown when an appointment is vertically resized. + + + + + + + + + + Resizes an appointment to a given position. + + + + + + + Resizes an appointment to a given position. + + + + + + + + Requests a resize start. + + + + + + + + Requests a resize start. + + + + + + + + + Requests a resize start. + + + + + + + + + + Requests a resize start. + + + + + + + + + + + Ends the appointment resizing. + + + + + + + Occurs when the rezing request is initialized. + + + + + Occurs when the resizing operation is finished. + + + + + Occurs when the appointment is resizing. + + + + + Occurs when the appointment is resized. + + + + + Gets or sets a value indicating whether the appointment areas in DayView should + be automatically scrolled when dragging off their bounds. + + + + + Gets or sets the bounds offset which specifies the size of the sizing rectangles. + + + + + Gets or sets the resize minutes. + + + + + Gets or sets the active resizing appointment. + + + + + Gets or sets whether the user is currently resizing the active appointment. + + + + + Represents defaultTitleFormatter in DayView + + + + + Represents defaultTitleFormatter in MonthView + + + + + Represents defaultTitleFormatter in TimelineView + + + + Represents a clock that is drawn on the screen. + + + Gets or sets the seconds hand's visibility. + + + Gets or sets the clock's time. + + + + Initializes a new instance of the class. + + if set to true [descending]. + + + + Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. + + The first object to compare. + The second object to compare. + + Value Condition Less than zero is less than .Zero equals .Greater than zero is greater than . + + + + + Initializes a new instance of the class. + + + + + Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. + + The first object to compare. + The second object to compare. + + Value Condition Less than zero is less than .Zero equals .Greater than zero is greater than . + + + + + Sets the cell opacity. + + The child month view. + The cell. + + + + Sets the cell opacity. + + The child timeline view. + The cell. + + + + Gets the cell at point. + + The point. + The children. + + + + + Gets the cell at point. + + The point. + The scheduler. + + + + + Sets the cell opacity. + + The child day view. + The cell. + + + + Gets the cells. + + The children. + + + + + Gets the cells. + + The scheduler. + + + + + Navigates and scrolls to the specified appointment. + + The appointment. + The scheduler. + + + + Navigates and scrolls to the specified appointment. + + The appointment. + The scheduler. + Indicates whether the appointment should be in the middle of new view + + + + Gets the cell at point. + + The point. + The day view elements. + + + + + Gets the cell at point. + + The point. + The timeline elements. + + + + + Gets the cell at point. + + The point. + The month view elements. + + + + + Gets the appointment at point. + + The point. + The month view elements. + + + + + Gets the appointment at point. + + The point. + The day view elements. + + + + + Gets the appointment at point. + + The point. + The timeline elements. + + + + + Gets the month view area at point. + + The point. + The month view element. + + + + + Gets the timeline presenter at point. + + The point. + The timeline view elements. + + + + + Gets the table at point. + + The point. + The day view elements. + + + + + Gets all day header at point. + + The point. + The day view elements. + + + + + Gets the cell H offset. + + The scheduler. + The day view element. + Width of the available. + The available width offsets. + The days count. + Index of the cell column. + + + + + Gets the width of the cell. + + The scheduler. + The day view element. + Width of the available. + The available width offsets. + The days count. + Index of the cell column. + + + + + Deletes the appointment. + + The appointment. + The scheduler. + [true] if the appointment was deleted, [false] otherwise. + + + + Initializes a new instance of the class. + + if set to true [descending]. + + + + Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. + + The first object to compare. + The second object to compare. + + Value Condition Less than zero is less than .Zero equals .Greater than zero is greater than . + + + + + Represent the area in where all day appointments reside. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + The day view element. + + + + Updates the scrollbar range given the total height of the + appointments and the available height in the header. + + The total height of the appointments. + The available height. + + + + Arranges the cell elements in the header. + + The size passed to the ArrangeOverride method. + + + + Arranges the appointments in the header. + + The size passed to the ArrangeOverride method. + + + + Gets the vertical scroll offset of the all day area. + + If the scheduler is grouped, returns the value of the scrollbar in the last child view, + otherwise returns the value of the ScrollBar if current header. + + + + Calculates and returns the arrange rectangle of the drag feedback element. + + The available size within the header. + The calculated arrange rectangle. + + + + Calculates the size of the bounding rectangle of all appointment elements within the header. + + The size of the bounding rectangle. + + + + Gets the cell above the day view ruler. + + The cell. + + + + Gets the cell above the scrollbar. + + The cell. + + + + Shows or hides the corner cells (the ones above the rulers and the scrollbar). + + [true] if corner cells should be visible, [false] otherwise. + + + + Gets the that this header belongs to. + + + + + Gets the scrollbar of the header. + + + + + Gets the that is displayed in the same view as the header. + + + + + If there is an active drag operation and the visual feedback is currently inside the header, + returns the visual feedback element. Otherwise returns null. + + + + + Specifies the initial height of the header. This will also be the height of the appointments + in case is [false] + + + + + Specifies the maximum height of the header before the scrollbar appears. + + + + + Represents a child element of which holds the rulers for each time zone + and the containing the . + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + The day view element. + + + + Re-initialize rulers according to the view TimeZones + + + + + Updates the offset of the rulers according to the changes in the timezones setting. + + + + + Gets the total width of the visible rulers. + + The width. + + + + Sets the property of all rulers. + + The visibility to set. + + + + Gets the first of the rulers (the default one). + + + + + Gets a list of all the displayed rulers. + There is one ruler for each timezone added to the view. + + + + + Gets the scroll view containing the . + + + + + Gets the vertical scrollbar of the scroll view. + + + + + Gets the parent . + + + + + Gets the contained within the scroll view. + + + + + Represents the table in where the non-AllDay appointments reside. + + + + + Arranges the cell elements in the table. + + The size passed to the ArrangeOverride method. + + + + Arranges the appointments in the table. + + The size passed to the ArrangeOverride method. + + + + Gets a time rounded to the cells of the day view table. + + The time to round. + If true time will rounded to the end value of the cell that would contain the given time, otherwise it will be rounded to the cell start value. + + + + + Gets the the location in the table that an appointment with the specified date would have. + + The specified date. + The size of the table. + The location in the table. + + + + Gets the height that an appointment with the specified start and end dates would have. + + The start date. + The end date. + The calculated height. + + + + Calculates and returns the arrange rectangle of the drag feedback element. + + The feedback element. + The arrange size of the table. + The calculated arrange rectangle. + + + + Scrolls the table to a specified time of the day. + + The time of the day. + + + + Scrolls the table to the start of the working hours. + + + + + Gets the elements that are currently in the visible area of the table. + + + + + + Scrolls the table with a single row up or down. + + If [true] the table is scrolled up, otherwise it is scrolled down. + + + + Draws the current time marker. + + The current date and time. + The cell which should contain the marker. + The graphichs to draw to. + + + + Gets the element that owns the current appointments table instance. + + + + + If there is an active drag operation and the visual feedback is currently inside the table, + returns the visual feedback element. Otherwise returns null. + + + + + Represents the main visual element of RadScheduler when in mode. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Initializes the child elements of this view. + + + + + Scrolls the to a specified time of the day. + + The time of the day. + + + + Scrolls the to the start of the working hours. + + + + + Gets the horizontal offset of the column with a specified index compared to the left edge of the first column. + + The zero-based column index. + The total width available for columns. + The offset of the specified column. + + + + Gets the width of the column with a specified index. + + The zero-based column index. + The total width available for columns. + The width of the specified column. + + + + Returns the column width as set by the SetColumnWidth method. The actual width of a column will be + calculated proportionally according to the values other columns have. The default value of each column is one. + This means that setting a value of 2 for a given column will make it twice as large compared to other columns. + To get the width of a column in pixels use one of the other overloads of this method. + + The zero-based column index. + The width of the specified column. + + + + Gets the total width of a range of columns given their indices. + + The index of the first column in the range. + The index of the last column in the range. + The total width available for columns. + The width of the specified column range. + + + + Sets the width of a column. The actual width of a column will be calculated proportionally + according to the values other columns have. The default value of each column is one. This means + that setting a value of 2 for a given column will make it twice as large compared to other columns. + + The index of the column to resize. + The value according to which the actual width will be calculated. + + + + Gets the total width of the rulers. + + The width. + + + + Gets the width of the scrollbar on the right. + + The width. + + + + Scrolls to a specified cell if the cell is not already within the visible area of the control. + + The to scroll to. + + + + Scrolls to a specified appointment if it is not already within the visible area of the control. + + The to scroll to. + + + + Gets the date that corresponds to a cell. + + The row index of the cell. + The column index of the cell. + The corresponding date. + + + + Gets the date that corresponds to a column. + + The column index. + The corresponding date. + + + + Gets the column index corresponding to a given date. + + The date. + The corresponding index. + + + + Checks whether the given appointment should be visible in the current view. + + The appointment element. + [true] if the appointment should be visible, [false] otherwise. + + + + Gets a value indicating whether an appointment should be displayed in the + all-day area of the . + + The appointment. + [true] if it should be displayed in the all-day area, [false] otherwise. + + + + Specifies the height of the . + + + + + Gets the . + + + + + Gets the . + + + + + Gets the element. + + + + + Gets or sets the margin between appointments. + + + + + Represents the header of which contains cells + indicating the dates for each column. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + The day view element. + + + + Shows or hides the corner cells (the ones above the rulers and the scrollbar). + + [true] if corner cells should be visible, [false] otherwise. + + + + Specifies the height of the header. + + + + + Gets the parent which owns this header. + + + + + Represents the visual feedback which is visible when dragging an appointment. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + The underlying appointment for this element. + + + + Gets or sets the start date for the feedback element. + + + + + Gets or sets the end date for the feedback element. + + The end. + + + + Gets or sets the associated appointment. This should be an existing appointment + whose properties will be updated when the feedback element is dropped. + + + + + Gets the appointment that was passed to the constructor of the feedback element. + This is usually a dummy appointment whose properties are updated durring the drag operation. + When the feedback is dropped, its properties are copied to the + . + + The appointment. + + + + Initializes a new instance of the class. + + if set to true [descending]. + + + + Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. + + The first object to compare. + The second object to compare. + + Value Condition Less than zero is less than .Zero equals .Greater than zero is greater than . + + + + + Gets or sets the selected duration. + + + + + Apply theme to the RadControls + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + + + + + + Used to manage editors in SchedulerVisualElement. + + + + + Initializes a new instance of the SchedulerEditManager class. + + The , associated with this class. + + + + Invokes default inline editor. + + Returns true if the process is successful. + + + + Puts the current cell in edit mode. + + Returns true if the process is successful. + + + + Commits any changes and ends the edit operation on the current cell. + + true on success. + + + + Ends the edit operation without commiting the changes + + true on success. + + + + Close the currently active editor and discard changes. + + true on successful cancellation. + + + + Checks whether there is a permanent editor associated with the specified type. + + The type to check. + true if it exists permanent editor for the given type. + + + + Finishes the editing process. + + A value that indicates whether the operation should be canceled. + returns true if successfull and the editor is closed. + + + + Remove the active editor + + + + + Gets the defalult editor for the specified provider. + + The to get editor for. + An instance of if successfull. + + + + Register a permanent editor for specific type. + + The type to register. + + + + Disposes all resources. + + + + + Gets the active editor + + + + + The instance of associated with this class. + + + + + Gets a value indicating whether the cell is in edit mode. + + + + + Gets or sets a value indicating whether the active editor should be closed when validation process fails. + + + + + + + + + + Represents a textbox editor in RadGridView. + + + + + Initializes a new instance of the RadTextBoxEditor class. + + + + + Handles the key up events in the editor. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Handles the key press events in the editor. + + A System.Windows.Forms.KeyPressEventArgs that contains the event data. + + + + Indicates if all characters should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets whether the editor accepts the tab key in multiline mode + + + + + Gets or sets whether the editor accepts the enter key in multiline mode + + + + + Gets the associated with this editor. + + + + + Represents a textbox editor element used in RadSchedulerTextBoxEditorElement + + + + + Respresents the main visual element of RadScheduler when the active view is + and grouping by resource is enabled. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Gets or sets resource header height + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Gets or sets the start resource render index. + + + + + Respresents the main visual element of RadScheduler when the active view is + and grouping by resource is enabled. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Scrolls to a specified cell element. + + The cell element. + + + + Scrolls to a specified appointment element. + + The appointment element. + + + + Scrolls the table to a specified time of the day. + + The time of the day. + + + + Synchronizes the scroll offset of the child view elements. + + + + + Scrolls the table to the start of the working hours. + + + + + Gets or sets resource header height. + + + + + Specifies the height of the for all child views. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Arranges the override. + + The final size. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets a value indicating whether the cell overflow button button should be displayed. + When the cell contains more appointments than it can display in its visible area, this property + is automatically set to true. + + + + + Specifies the height of the header + + + + + Gets the header. + + The header. + + + + Gets the ArrowImage. + + The arrow image. + + + + Gets or sets the draw line . + + The draw line. + + + + Gets or sets the line color . + + The line color. + + + + Represents the area in which contains the cells for each day and the appointments. + + + + + Initializes a new instance of the class. + + The scheduler this header belongs to. + The view this header belongs to. + The month view this header belongs to. + + + + Calculates and returns the arrange rectangle of the drag feedback element. + + The arrange size of the area. + The calculated arrange rectangle. + + + + Gets the that contains a given date. + + The date. + The cell that contains the date. + + + + Gets the on a given position. + + The row of the requested cell. + The column of the requested cell. + The requested cell. + + + + Updates the scrollbars that appear in the last cell of a row when this row has more + appointments than it can fit. + + + + + Called when some of the scrollbars that appear in the last cell of a row is scrolled. + + The sender scrollbar. + The event arguments. + + + + Gets the scrollbars that appear at the end of each row when some of the cells in that row + has more appointments than can be displayed. + + + + + Gets or sets the comparer of the Appointments collection + + + + + Gets or sets the default height of the appointments. + + The default height of the appointments. + + + + Gets or sets the height of the overflow arrow which appears in a + when the appointments overflow it. + + + + + If there is an active drag operation and the visual feedback is currently inside the area, + returns the visual feedback element. Otherwise returns null. + + + + + Represents the horizontal header in which contains cells + displaying the weekday for a given column. + + + + + Initializes a new instance of the class. + + The scheduler this header belongs to. + The view this header belongs to. + The month view this header belongs to. + + + + Gets the which owns this header. + + + + + Specifies the height of the header. + + + + + Represents the vertical header in containing the + cells which indicate the date ranges for each row. + + + + + Initializes a new instance of the class. + + The scheduler this header belongs to. + The view this header belongs to. + The month view this header belongs to. + + + + Gets the which owns this header. + + + + + Specifies the width of the header. + + + + + Respresents the main visual element of RadScheduler when in mode. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Initializes the child elements of this view. + + + + + Gets the horizontal offset of the column with a specified index compared to the left edge of the first column. + + The zero-based column index. + The total width available for columns. + The offset of the specified column. + + + + Gets the width of the column with a specified index. + + The zero-based column index. + The total width available for columns. + The width of the specified column. + + + + Returns the column width as set by the SetColumnWidth method. The actual width of a column will be + calculated proportionally according to the values other columns have. The default value of each column is one. + This means that setting a value of 2 for a given column will make it twice as large compared to other columns. + To get the width of a column in pixels use one of the other overloads of this method. + + The zero-based column index. + The width of the specified column. + + + + Gets the total width of a range of columns given their indices. + + The index of the first column in the range. + The index of the last column in the range. + The total width available for columns. + The width of the specified column range. + + + + Sets the width of a column. The actual width of a column will be calculated proportionally + according to the values other columns have. The default value of each column is one. This means + that setting a value of 2 for a given column will make it twice as large compared to other columns. + + The index of the column to resize. + The value according to which the actual width will be calculated. + + + + Gets the vertical offset of the row with a specified index compared to the top edge of the first row. + + The zero-based row index. + The total height available for rows. + The offset of the specified row. + + + + Returns the row height as set by the SetRowHeight method. The actual height of a row will be + calculated proportionally according to the values other rows have. The default value of each row is one. + This means that setting a value of 2 for a given row will make it twice as large compared to other rows. + To get the height of a row in pixels use one of the other overloads of this method. + + The zero-based row index. + The height of the specified row. + + + + Gets the height of the row with a specified index. + + The zero-based row index. + The total height available for columns. + The height of the specified row. + + + + Gets the total height of a range of rows given their indices. + + The index of the first row in the range. + The index of the last row in the range. + The total height available for rows. + The height of the specified row range. + + + + Sets the height of a row. The actual height of a row will be calculated proportionally + according to the values other rows have. The default value of each row is one. This means + that setting a value of 2 for a given row will make it twice as large compared to other rows. + + The index of the row to resize. + The value according to which the actual height will be calculated. + + + + Called when the view's settings has changed + in order to update the settings of the vertical scroll. + + + + + Fired when the ValueChanged event of the vertical scrollbar fires. + + The sender of the event. + The event arguments. + + + + Shows the tooltip next to the vertical scrollbar. + + + + + Determines the ToolTip text of the vertical scrollbar's tooltip. + + + Returns the ToolTip's text. + + + + + Hides the scrollbar tooltip + + + + + Gets the vertical scrollbar that stands for quick navigation between dates. + + + + + Gets or sets the width of the vertical scrollbar + + + + + Gets or sets the height of the appointment elements. + + + + + Gets the instance. + + + + + Gets the instance. + + + + + Gets the instance. + + + + + Gets or sets the margin between appointments. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + A control used for RadScheduler navigation. + + + + + Fires when the user clicks on the Month View button. + + + + + Fires when the user clicks of the Week View button. + + + + + Fires when the user clicks on the Day View button. + + + + + Fires when the user clicks on the Timeline View button. + + + + + Fires when the user clicks on the Agenda View button. + + + + + Fires when the user changes the state of the ShowWeekend checkbox. + + + + + Fires when the user clicks on the Navigate Forwards button. + + + + + Fires when the user clicks on the Navigate Backwards button. + + + + + Fires when the user perform search from search textbox + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the date format in which the date range + is displayed. + + + + + Gets or sets the navigation step. + + + + + Gets or sets the AutomaticNavigation mode. + The navigation steps are not used in this mode + + + + + Gets or sets the navigation step type. + + + + + Gets or sets the RadScheduler control associated with this RadSchedulerNavigator. + + + + + Gets the NavigateTodayButton element. + + + + + Gets the MonthViewButton element. + + + + + Gets the WeekViewButton element. + + + + + Gets the DayViewButton element. + + + + + Gets the TimelineViewButton element. + + + + + Gets the ShowWeekendCheckBox element + + + + + Gets the NavigateBackwardsButton element. + + + + + Gets the NavigateForwardsButton element. + + + + + Gets the DateLabelElement + + + + + Show/Hide Day View button. + + true if Day View button is visible; otherwise, false. + the day view button will not be hide when the scheduler is in day view + + + + Show/Hide Week View button. + + true if button Week View is visible; otherwise, false. + the week view button will not be hide when the scheduler is in week view + + + + Show/Hide Month View button. + + true if Month View button is visible; otherwise, false. + the month view button will not be hide when the scheduler is in month view + + + + Show/Hide Timeline View button. + + true if Timeline View button is visible; otherwise, false. + the timeline view button will not be hide when the scheduler is in timeline view + + + + Show/Hide Agenda View button. + + true if Agenda View button is visible; otherwise, false. + the Agenda view button will not be hide when the scheduler is in timeline view + + + + RadSchedulerNavigator consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadSchedulerNavigator consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + A SchedulerNavigatorElement class containing the logic and ui elements + for the RadSchedulerNavigator control. + + + + + Initializes the RadSchedulerNavigatorElement with an + instance of the RadScheduler class. + + The RadScheduler which this navigator will operate on. + + + + Updates values to the Time Zone elements values + + + + + Wires for the time zones drop down events + + + + + Resets the Show Weekend check box visibility according to the + currently active view. + + + + + Resets the toggle buttons' state according + to the currently active view. + + + + + Sets the Show Weekend check state according to + the currently active view. + + + + + Sets the current active view to Week + + + + + Sets the current active view to Day + + + + + Gets the NavigateTodayButton element. + + + + + Gets the TimeZoneLabelElement element. + + + + + Gets the TimeZonesDropDown element. + + + + + Gets the TodayButtonElementLayout element. + + + + + Gets the TimeZonesElementLayout element. + + + + + Gets or sets the AutomaticNavigation mode. + The navigation steps are not used in this mode + + + + + Gets or sets the navigation step. + + + + + Gets or sets the navigation step type. + + + + + Gets or sets the date format in which the date range + is displayed. + + + + + Gets the MonthViewButton element. + + + + + Gets the AgendaViewButton element. + + + + + Gets the WeekViewButton element. + + + + + Gets the DayViewButton element. + + + + + Gets the TimelineViewButton element. + + + + + Gets the ShowWeekendCheckBox element. + + + + + Gets the NavigateBackwardsButton element. + + + + + Gets the NavigateForwardsButton element. + + + + + Gets an instance of the class + that represents the background fill of the . + + + + + Gets an instance of the class + that represents the border of the . + + + + + Gets an instance of the class + that represents the fill of the panel that holds the + navigation buttons of the . + + + + + Gets an instance of the class + that represents the border of the panel that holds the + navigation buttons of the . + + + + + Gets an instance of the class + that represents the border of the panel that holds the + view buttons of the . + + + + + Gets an instance of the class + that represents the fill of the panel that holds the + view buttons of the . + + + + + Gets an instance of the class + that represents the container in which the + view buttons of the are layout. + + + + + Gets an instance of the class + that represents the container in which the + navigation buttons of the are layout. + + + + + Gets an instance of the class + that represents the container in which the + show weekend checkbox of the is layout. + + + + + Gets the DateLabel element. + + + + + Show/Hide Day View button. + + true if Day View button is visible; otherwise, false. + the day view button will not be hide when the scheduler is in day view + + + + Show/Hide Week View button. + + true if Week View button is visible; otherwise, false. + the week view button will not be hide when the scheduler is in week view + + + + Show/Hide Month View button. + + true if Month View button is visible; otherwise, false. + the month view button will not be hide when the scheduler is in month view + + + + Show/Hide Month View button. + + true if Month View button is visible; otherwise, false. + the month view button will not be hide when the scheduler is in month view + + + + Show/Hide Timeline View button. + + true if Timeline View button is visible; otherwise, false. + the timeline view button will not be hide when the scheduler is in timeline view + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Disposes the current ViewElement and creates new one. + + + + + Reinitializes the cells and the appointments in all cell containers in the current view. + + + + + Forces the synchronization of all appointment elements with their associated events. + + + + + Gets the associated with the specified event. + + The event to search for. + An instance of if successfull. + + + + Begins the update. + + + + + + Determines whether this instance is updating. + + + true if this instance is updating; otherwise, false. + + + + + Ends the update. + + + + + + Sets the resource header angle transform. + + Type of the view. + The angle tranform. + + + + Gets the resource header angle tranform. + + Type of the view. + + + + + Gets the view element. + + The view element. + + + + Gets the scheduler's editor manager. + + + + + Gets or sets the scheduler's resizing behavior. + + + + + Gets or sets the scheduler's drag and drop behavior. + + + + + Gets or sets the recurrence icon + + + + + Gets or sets the appointment shape + + + + + Gets or sets the exception icon + + + + + Gets or sets the default date time font of the appointment title + + + + + Gets or sets the default date time color of the appointment title + + + + + Gets or sets the navigators width + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Gets or sets the context menu associated with this element. + + The context menu associated with this element. + + + + Initializes a new instance of the class. + + + + + Creates the child elements. + + + + + Virtual function that draws the primitive on the screen. + + + + + + + + Gets the specific range. + + + + + + Gets or sets the time pointer style. + + The time pointer style. + + + + Gets or sets the border. + + The border. + + + + Gets or sets the hour line color. + + The hour line color. + + + + Gets or sets the section line start position. + + The section line start position. + + + + Gets or sets the minutes font. + + The minutes font. + + + + Gets or sets the hour line start position. + + The hour line start position. + + + + Gets or sets the section line color. + + The section line color. + + + + Gets or sets the hour line shadow color. + + The hour line shadow color. + + + + Gets or sets the color of the current time pointer. + + The color of the current time pointer. + + + + Gets or sets a value indicating whether to show the current time + + + + + Gets or sets the width of the ruler. + + The width of the ruler. + + + + Gets or sets the start scale. + + The start scale. + + + + Gets or sets the end scale. + + The end scale. + + + + Gets or sets the start scale minutes. + + + + + Gets or sets the end scale minutes. + + + + + Gets or sets the selected time zone. + + The selected time zone. + + + + Gets the view time zone. + + The view time zone. + + + + Gets or sets the range factor. + + The range factor. + + + + Gets or sets the separators offset. + + The separators offset. + + + + Gets or sets the default separator offset. + + The default separator offset. + + + + Gets or sets the ruler primitive's renderer. + + + + + Gets or sets and instance holding the format strings used for drawing time representations on the ruler. + + + + + Gets or sets the width of the Current time pointerof the ruler. + + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Raises the event. + + The instance containing the event data. + + + + Initializes a new instance of the class. + + The scheduler. + The view. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets a value indicating whether this instance is navigating forward. + + + true if this instance is navigating forward; otherwise, false. + + + + + Gets a value navigate forward. + + + true if this instance is navigate forward; otherwise, false. + + + + + Determines whether the specified event is all day + + The event + + true if the specified event is all day; otherwise, false. + + + + + Creates a SchedulerView given the desired type. + + The view type. + + + + + Updates the appointments for that view. + + The appointments for that view. + + + + Adds the appointment. + + The appointment. + + + + Gets the end date for that SchedulerView given a start date. + + The start date. + + + + + Determines if a DateTime object belongs to the dates range managed by a particular SchedulerView. + + The DateTime object to be tested. + True if the DateTime object belongs to the dates range managed by a particular SchedulerView; False otherwise. + + + + Determines whether a given appointment intersects with this view.. + + The appointment. + + true if a given appointment intersects with this view; otherwise, false. + + + + + Offsets the view. + + The offset. + + + + + Gets the previous view. + + + + + + Gets the next view. + + + + + + Gets the previous view. + + The offset. + + + + + Gets the next view. + + The offset. + + + + + Gets the previous view. + + The navigation step type. + The navigation step. + + + + + Gets the next view. + + The navigation step type. + The navigation step. + + + + + Gets the view containing date. + + The date. + + + + + Gets the previous view containing any of the given appointments. + + + + + + + Gets the next view containing any of the given appointments. + + + + + + + Gets the first appointment in this view, if any. + + The first appointment in this view, or null of there are no appointments. + + + + Gets the last appointment in this view, if any. + + The last appointment in this view, or null of there are no appointments. + + + + Gets or sets the offset time span. + + The offset time span. + + + + Gets or sets the offset time span. + + The offset time span. + + + + Gets or sets a DateTime value specifying the starting date for the period handled by a SchedulerView instance. + + + + + Gets or sets a DateTime value specifying the starting date for the period handled by a SchedulerView instance. + + + + + Gets or sets the name of the view. + + + + + Gets or sets a value indicating whether the view is visible or partially visible. + + + + + Gets or sets a value indicating whether the view is in read-only mode. + + + + + Gets or sets the current culture that is used by this SchedulerView. + + The current culture. + + + + Gets or sets the separator width between different groups + + + + + Gets or sets whether the horizontal scrollbar when the scheduler is grouped by resources is shown. + + + + + Gets or sets the resources shown in the current view. + + + + + Gets the parent RadScheduler that the current view is assigned to. + + + + + Gets the appointments for that view. + + The appointments for that view. + + + + Gets or sets the appointment title format. + + The appointment title format. + + + Gets or sets whether a single SchedulerView object will display a header row. + + + + Gets or sets whether tool tips are displayed for this speciffic control. + + + + + Enables or disables appointment resizing + + + + + Enables or disables appointment moving + + + + Gets or sets the format string that is applied to the days cells tooltip. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'dddd, MMMM dd, yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + + Gets the next view. + + + + + Gets the previous view. + + The offset. + + + + + Gets the previous view. + + + + + Creates a Scheduler View object based on the logic implemented by the Scheduler View instance + that implements the method. + + DateTime object that is used to create the Scheduler View. + The created Scheduler View object. + + + + Copies the properties to view. + + The other view. + + + + Creates the view with start date. + + The start date. + + + + + Gets the end date for that SchedulerView given a start date. + + The start date. + + + + + Gets or sets the number of days displayed in the view. + + + An integer that specifies the number of days whose appointments are listed in the view. + + + + + Gets the type of the view. + + The type of the view. + + + + Initializes a new instance of the class. + + + + + Gets the previous view. + + The navigation step type. + The navigation step. + + + + + Gets the next view. + + The navigation step type. + The navigation step. + + + + + Gets the previous view. + + The offset. + + + + + Gets the next view. + + The offset. + + + + + Copies the properties to view. + + The other. + + + + Creates the view with start date. + + The start date. + + + + + Creates a Scheduler View object based on the logic implemented by the Scheduler View instance + that implements the method. + + DateTime object that is used to create the Scheduler View. + The created Scheduler View object. + + + + Gets the end date for that SchedulerView given a start date. + + The start date. + + + + + Called when a property is changed. + + Name of the property. + + + + Gets the date that corresponds to a column. + + The column index. + The corresponding date. + + + + Gets the date that corresponds to a column. + + The column index. + The scheduler + The corresponding date. + + + + Gets the date that corresponds to a cell. + + The row index of the cell. + The column index of the cell. + The scheduler + The corresponding date. + + + + Gets the date that corresponds to a cell. + + The row index of the cell. + The column index of the cell. + The corresponding date. + + + + Gets the column index corresponding to a given date. + + The date. + The corresponding index. + + + + Gets the number of cells per hour. + + + + + + Gets the calculated number of rows according to the RulerStartScale, RulerStartScaleMinutes, + RulerEndScale and RulerEndScaleMinutes properties. + + The number of rows that need to be displayed. + + + + Checks if a given week day is a working day. + + The week day. + [true] if the week day is a working day, [false] otherwise. + + + + Checks if a given date is work time by checking the WorkWeekStart, WorkWeekEnd, WorkTime properties + and then by checking the exceptions defined in the WorkTimeExceptions collections. + + The date. + [true] if the date is work time, [false] otherwise. + + + + Gets or sets the minutes in addition to the RulerStartScale. Together these properties allow changing the + default start of the ruler scale on the left side of day view. The value of this property will snap + to the nearest multiple of the RangeFactor. + + + + + Gets or sets the minutes in addition to the RulerEndScale. Together these properties allow changing the + default end of the ruler scale on the left side of day view. The value of this property will snap + to the nearest multiple of the RangeFactor. + + + + + A collection of rules which define exceptions + to the general work time provided by the WorkTime property. The rules in this collection + are checked in an increasing order of their indices and therefore if a date matches a number + of rules, the one with the greatest index overrides the others. + + + + + Gets or sets the first day of the working week. + + + + + Gets or sets the last day of the working week. + + + + + Gets or sets a value indicating whether to automatically scroll to the work time. + + + + + Gets or sets the size of the ruler scale. + + The size of the ruler scale. + + + + Gets or sets the ruler time format. + + The ruler time format. + + + + Gets or sets the work time. + + The work time. + + + + Gets or sets a value indicating whether the ruler is shown. + + true if the ruler is shown; otherwise, false. + + + + Gets or sets the first hour which the ruler in day view should display. + To set minutes use the RulerStartScaleMinutes property. + + + + + Gets or sets the last hour which the ruler in day view should display. + To set minutes use the RulerEndScaleMinutes property. + + + + + Gets or sets the width of the ruler. + + The width of the ruler. + + + + Gets the time zones collection. + + The time zones collection. + + + + Gets or sets the range factor. + + The range factor. + + + + Gets or sets a value indicating to what the view is scrolled. + + + + + Gets or sets a value indicating whether the all day area is shown. + + true if the all day area is shown; otherwise, false. + + + + Gets a value indicating whether this instance can set day count. + + + true if this instance can set day count; otherwise, false. + + + + + Gets or sets the day count. + + The day count. + + + + Initializes a new instance of the class. + + + + + Determines whether a given appointment intersects with this view.. + + The appointment. + + true if a given appointment intersects with this view; otherwise, false. + + + + + Gets the next view containing any of the given appointments. + + + + + + + Gets the previous view containing any of the given appointments. + + + + + + + Fires the RefreshNeeded event. + + + + + Gets a list with the visible time scales. + + + + + + + Gets a Timescale by index. + + + + + + + Gets a SchedulerTimescale by a passed as a parameter scale. + + + + + + + Shows the timescale with the specified type. + + The type of the scale to show. + + + + Shows a timescale. The specified scale must be present in the SchedulerTimescales collection. + + The scale to show. + + + + Gets the TimelineView's scaling. + + + + + + Gets a list with the years time scales. + + + + + + Gets a list with the months time scales. + + + + + + Gets a list with the weeks time scales. + + + + + + Gets a list with the days time scales. + + + + + + Gets a list with the hours time scales. + + + + + + Gets a list with the minutes time scales. + + + + + + Gets a list with the half hour time scales. + + + + + + Gets the list with default supported formats. + + + + + + Gets the view's end date. + + + + + + + Creates a view which has a specific start date. + + + + + + + Copies the properties from the current view. + + + + + + Gets the previous view. + + + + + + + Gets the previous view. + + The navigation step type. + The navigation step. + + + + + Gets the next view. + + The navigation step type. + The navigation step. + + + + + Gets the view with offset from the current view. + + + + + + + Sets view's start date. + + + + + + + Gets the view which contains a specific date. + + + + + + + Occurs when a Refresh is necessary. + + + + + Gets or sets the TimelineView's RangeStartDate. + + + + + Gets or sets the TimelineView's RangeEndDate. + + + + + Gets or sets a value indicating whether to show the horizontal scrollbar in + which stands for navigation through dates. + + + + + Gets or sets a value indicating whether to show the vertical scrollbar in + which stands scrolling through the appointments when a cell overflows. + + + + + Gets the time scale that was last shown by the ShowTimescale method. If the method was not called, returns null. + Use the GetScaling() method to get the scale that is in active use. + + + + + Gets or sets the TimeScales + + + + + Gets TimelineView's duration. + + + + + Gets the view tipe. + + + + + Gets or sets the start date. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start date. + The day count. + + + + Initializes a new instance of the class. + + The start date. + The end date. + + + + Gets the type of the view. + + The type of the view. + + + + Gets or sets the day count. + + The day count. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start date. + if set to true weekend days are shown. + + + + Copies the properties to view. + + The other. + + + + Creates the view with start date. + + The start date. + + + + + Checks if a given week day is a working day. + + The week day. + [true] if the week day is a working day, [false] otherwise. + + + + Gets the end date for that SchedulerView given a start date. + + The start date. + + + + + Gets the previous view. + + The navigation step type. + The navigation step. + + + + + Gets the next view. + + The navigation step type. + The navigation step. + + + + + Gets the previous view. + + The offset. + + + + + Gets the next view. + + The offset. + + + + + Gets or sets the start range of the vertical navigator. + + + + + Gets or sets the end range of the vertical navigator. + + + + + Gets or sets a value indicating whether the vertical navigator should be displayed. + + + + + Gets or sets the first day of the working week. + + + + + Gets or sets the last day of the working week. + + + + + Gets or sets a value indicating whether this view should always display + exactly one month with the respective number of weeks. + + + + + Gets or sets the width of the appointments' scrollbars + + + + + Gets or sets a value indicating whether to show the weeks header + + + + + Gets or sets a value indicating whether to enable quick navigation to week view from month view. + + + + + Gets or sets a value indicating whether the user can scroll the appointments in month cells. + + + + + Gets or sets a value indicating whether the overflow button is enabled in month cells. + + + + + Gets or sets the week count. + + The week count. + + + + Gets the number of week days displayed. + + + + + Gets or sets a value indicating whether weekend days are shown. + + true if weekend days are shown; otherwise, false. + + + + Gets the type of the view. + + The type of the view. + + + + Gets the type of the view. + + The type of the view. + + + + Gets the number of days in the view. Setting this property has no effect in . + + + + + Gets the collection of nodes that are assigned to the tree view control. + + + + + Initializes a new instance of the class. + + + + + Gets the type of the view. + + The type of the view. + + + + Gets or sets the day count. + + The day count. + + + + Gets or sets a value indicating whether weekend days are shown. + + true if weekend days are shown; otherwise, false. + + + + + + + + + Tries to match a given date against the rule. If the date matches, the isWorkTime argument is + assigned with the IsWorkTime property of the rule and the method returns true. If the date + does not match the rule, the method returns false. + + The date you try to match. + The resource id of the view you are checking the date for. + If matching succeds, the this will be assigned with the IsWorkTime property of the rule. + + + + + The id of the resource this rule stands for. If left null, the rull will + stand for all resources. + + + + + The date after which the rule applies. If left null, there is no start limit for the rule. + + + + + The date after which the rule does not apply. If left null, there is no end limit for the rule. + + + + + The weekdays for which the rule applies. The default value is WeekDays.All. + Days can be combined by using the enum as flags. + + + + + Indicates whether the time interval described by the rule is considered a working time + or non-working time. + + + + + The time of day after which the rule starts applying. + + + + + The time of day until which the rule is applied. + + +
+
diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.UI.dll b/HexcalMC/bin/x64/Debug/Telerik.WinControls.UI.dll new file mode 100644 index 0000000..1a1885b Binary files /dev/null and b/HexcalMC/bin/x64/Debug/Telerik.WinControls.UI.dll differ diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.UI.xml b/HexcalMC/bin/x64/Debug/Telerik.WinControls.UI.xml new file mode 100644 index 0000000..7f9858b --- /dev/null +++ b/HexcalMC/bin/x64/Debug/Telerik.WinControls.UI.xml @@ -0,0 +1,61373 @@ + + + + Telerik.WinControls.UI + + + + + Gets the location and size of the accessible object + + + + + Gets the location and size of the accessible object + + + + + Gets a value for the Value property while in bound mode. + + Gets an object reference pointing to the value of the Value property in bound mode. + + + + Gets a value for the Value property in unbound mode. + + Returns an object reference pointing to the value of the Value property in unbound mode. + + + + This method is called when setting the Value property of a RadListDataItem when it is in unbound mode. + + The value to set the Value property to. + + + + This method is used to assign the DataBoundItem property of this RadListDataItem. + If a user attempts to set DataBoundItem while in bound mode, an exception should be thrown. + In unbound mode this property can be set to any value and will not affect the behavior of this RadListDataItem. + + A flag that indicates if the data bound item is being set from the data binding engine or by the user. + true means it is being set by the data binding engine. + The value that will be assigned to the DataBoundItem property. + + + + Gets a value indicating whether this data item is data bound. + + + + + Gets a value that represents the ListDataLayer associated with this data item and its parent RadListControl. + The ListDataLayer encapsulates the data operations provided by RadListControl which are sorting, filtering and currency synchronization. + + + + + Gets a value representing the owner RadListElement of this data item. + + + + + Gets a value representing the owner control of this data item. + + + + + Gets or sets the visual height of this item. + This property can be set only when AutoSizeItems of the parent RadListControl is true. + + + + + Gets the index of this data item in the Items collection of RadListControl. + + + + + Gets a value that will be used in the visual representation of this item. + + + + + Gets or sets a value for the property indicated by ValueMember if in bound mode, and private value in unbound mode. + Trying to explicitly set this property in bound mode will result in an InvalidOperationException. + + + + + Gets or sets a value that indicates if this item is selected. Setting this property will cause the selection events of the owner list control to fire if there is one. + + + + + Gets or sets whether this item responds to GUI events. + + + + + Gets or sets the text for this RadListDataItem instance. + + + + + Gets or sets a text value that is used for sorting. Creating a RadProperty during data binding is too slow, this is why + this property is used instead and its value can be used for sorting. + + + + + Gets or sets an image for this RadListDataItem instance. + + + + + Gets or sets the text-image relation for this RadListDataItem instance. + + + + + Gets or sets the image alignment for this RadListDataItem instance. + + + + + Gets or sets the text alignment for this RadListDataItem instance. + + + + + Gets or sets the text orientation for this RadListDataItem instance. + + + + + Gets or sets the font for this RadListDataItem instance. + + + + + Gets or sets the text color for this RadListDataItem instance. + + + + + Gets a value that indicates if this item is currently visible. + + + + + Gets a value that visually represents this data item. If the item is not visible, this property returns null. + The visual item returned should be used only to get information about a particular item. Since visual items + are shared between different data items, properties must not be set directly on the visual item in order + to avoid uncustomizable or unwanted behavior. For example if properties are set directly to the visual item + the themes may not work correctly. + + + + + Gets or sets the preferred size for the element which will present this item. + + + + + Gets the index of item in GridViewRowCollection. + + The index. + + + + Gets or sets a value that represents the raw data item that this RadListDataItem is associated with. + This property will be non null when the item is created via RadListControl's data binding and will contain the underlaying data item. Setting this property explicitly will have no effect in unbound mode and will throw an InvalidOperationException in bound mode. + + + + + Gets or sets a value that indicates if this item is selected. Setting this property will cause the selection events of the owner list control to fire if there is one. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Represents a auto-complete tokenized text box element + + + + + Represents an independent text box element + + + + + Represent a scrollable view element with scrollbars + + + + + + A light visual element supporting text, border, image, BackColor and ForeColor with different layout adjustments. + "http://www.telerik.com/help/winforms/tpf-primitives-lightvisualelement.html" + + + + + Base class for some RadItems, used in RadTreeView, RadPanelBar, RadCalendar, etc. Incorporates basic functionality for paiting gradient + background and borders the same way FillPrimitive and BorderPrimitive do. + + + + + Gets the border thickness of a + + The element to check. + Determines whether to consider when the border is disabled. + The border thickness. + + + + Toggles the text primitive when text related properties are change. + + The changed property. + + + + Called when animated image frame changes. + + + + + Gets the properties, which should mapped if set to a LightVisualElement instance. Used for testing purposes. + + + + + Gets or sets the text rendering hint. + + + + + Gets or sets the text rendering hint used when this element is disabled. + + + + + Gets or Sets value indicating whether the element should paint its text + + + + + Gets or Sets value indicating whether the element should paint its background + + + + + Gets or Sets value indicating whether the element should paint its border + + + + + Gets or Sets value indicating whether the element should paint its background image. + + + + + Gets or Sets value indicating whether the element should paint its image. + + + + + + Gets or sets the + Border style. The two possible values are SingleBorder and FourBorder. In the + single border case, all four sides share the same appearance although the entire + border may have gradient. In four border case, each of the four sides may differ in + appearance. For example, the left border may have different color, shadow-color, and + width from the rest. When SingleBorder is chosen, you should use the general + properties such as width and color, and respectively, when the FourBorder style is + chosen you should use properties prefixed with the corresponding side, for example, + LeftColor, LeftWidth for the left side. + + + + + Defines the order in which border lines are drawn. This property is considered when the is FourBorders. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the top border . This property + has effect only if FourBorders style is used in BoxStyle property, + and affects only the top border. + + + + + Gets or sets a float value width of the right border. This + property has effect only if FourBorders style is used in BoxStyle + property, and affects only the right border. + + + + + Gets or sets a float value width. This property has effect only if + FourBorders style is used in BoxStyle property, and affects only the + bottom border. + + + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets a value indicating the TextImageRelation: ImageAboveText, + ImageBeforeText, Overlay, TextAboveImage, and TextBeforeImage. + + + + + Gets and sets the left border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the left border. + + + + + Gets and sets the top border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the top border. + + + + + Gets and sets the right border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the right border. + + + + + Gets and sets the bottom border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the bottom border. + + + + + Gets and sets the left shadow color. This option applies only if + fourBorders is chosen, and affects only the left border. + + + + + Gets and sets the top shadow color. This option applies only if + fourBorders is chosen, and affects only the top border. + + + + + Gets and sets the right shadow color. This option applies only if + fourBorders is chosen, and affects only the right border. + + + + + Gets and sets the bottom shadow color. This option applies only if + fourBorders is chosen, and affects only the bottom border. + + + + + Determines whether text will be clipped within the calculated text paint rectangle. + + + + + Gets or sets the transparent color for the image. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Gets or sets a value indicating whether image transparency is supported. + + + + + Determines whether character trimming will be automatically applied to the element if text cannot be fitted within the available space. + + + + + Determines whether ampersand character will be treated as mnemonic or not. + + + + + Gets or sets a value indicating whether text will be wrapped when exceeding the width of the element. + + + + + Determines whether keyboard focus cues are enabled for this element. + + + + + Determines whether trailing spaces will be included when text size is measured. + + + + + Gets the text structure used to render text + + + + + Creates the scroll bar element. + + + + + + Creates the view element. + + + + + + This method provides a chance to initialize the ViewElement object. + + The view element. + + + + Measures the view element. + + Size of the available. + + + + + Arranges the view element. + + The view element rect. + + + + Arranges the horizontal scroll bar. + + The view element rect. + The client rect. + + + + + Arranges the vertical scroll bar. + + The view element rect. + The hscroll bar rect. + The client rect. + + + + Gets the horizontal scroll bar. + + + The horizontal scroll bar. + + + + + Gets the vertical scroll bar. + + + The vertical scroll bar. + + + + + Gets or sets the view element. + + + The view element. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Creates an instance of + + + + + + Called when the context menu is opening. + + The menu. + + + + + Raises the event. + + The instance containing the event data. + + + + Clamps the offset to valid text position bounds + + The offset. + + + + + Determines whether the text can be inserted + + The text. + + true if this text can be inserted; otherwise, false. + + + + + Determines whether the current position is valid for the auto-complete operation + + + true if [is valid auto complete position]; otherwise, false. + + + + + Performs the auto-complete for concrete operation. + + The context. + + + + Performs the auto complete override. + + The context. + + + + Gets the text that is as filter condition in auto-completion + + The start position. + The end position. + + + + + Gets the auto-complete drop down location. + + + + + + Gets the lines of the text box element. + + + + + + Sets the lines of the text box element. + + The lines. + + + + Creates the caret of the text box element. + + + + + + Creates the auto-complete list element. + + + + + + Creates the auto-complete drop down. + + + + + + Gets the size of the auto-complete drop down. + + + + + + Shows the drop down. + + The location. + + + + Closes the auto-complete drop down. + + + + + Closes the drop down. + + The reason. + + + + Moves the current selection in the text box to the Clipboard. + + + + + + Copies the current selection in the text box to the Clipboard. + + + + + + Replaces the current selection in the text box with the contents of the Clipboard. + + + + + + Inserts the text at current position + + The text. + + + + + Deletes the selected text or character at the current position + + + + + + /// Deletes the selected text or character at the current position + + if set to true deletes next character. + + + + + Appends text to the current text of a text box. + + The text. + + + + Appends text to the current text of a text box and selects it + + The text. + if set to true selects the text. + + + + Selects a range of text in the text box. + + The start. + The length. + + + + Selects all text in the text box element. + + + + + Specifies that the value of the SelectionLength property is zero so that no characters are selected in the element. + + + + + + Scrolls the contents of the control to the current caret position. + + + + + Clears all text from the text box element. + + + + + Gets or sets the current text in the text box element. + + + + + Gets or sets the prompt text that is displayed when the text box contains no text. + + + The null text. + + + + + Gets or sets the color of the null text. + + + The color of the null text. + + + + + Gets or sets a value indicating whether the null text will be shown when the control is focused and the text is empty + + + + + Gets or sets the lines of text in a text box element. + + + The lines. + + + + + Gets or sets a value indicating the currently selected text in the element. + + + The selected text. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box element. + + + The length of the max. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text box element types a TAB character in the element instead of moving the focus to the next element in the tab order. + + + true if [accepts tab]; otherwise, false. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline TextBox element creates a new line of text in the element or activates the default button for the form. + + + true if [accepts return]; otherwise, false. + + + + + Gets or sets a value indicating whether this is a multiline text box. + + + true if multiline; otherwise, false. + + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets the length of text in the element. + + + The length of the text. + + + + + Gets or sets the caret position. + + + The index of the caret. + + + + + Gets or sets the starting point of text selected in the text box. + + + The selection start. + + + + + Gets or sets the number of characters selected in the text box. + + + The length of the selection. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets or sets whether the TextBox element modifies the case of characters as they are typed. + + + The character casing. + + + + + Gets the associated caret. + + + + + Represents the associated keyboard and mouse input handler. + + + The input handler. + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets a value indicating whether the caret is visible in read only mode. + + + true if the caret is visible; otherwise, false. + + + + + Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the element loses focus. + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the associated context menu. + + + The context menu. + + + + + Gets or sets the navigator of the text position. + + + The navigator. + + + + + Gets the auto-complete list element. + + + + + Gets the view element of the null text. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets the auto complete display member. + + + The auto complete display member. + + + + + Gets or sets a value specifying the source of complete items used for automatic completion. + + + The auto complete data source. + + + + + Gets a value specifiying the complete items used for automatic completion. + + + + + Gets or sets the size of the drop down max. + + + The size of the drop down max. + + + + + Gets or sets the size of the drop down min. + + + The size of the drop down min. + + + + + Gets or sets the max count of visible items in auto-complete drop down + + + The max drop down item count. + + + + + Gets a value indicating whether this auto-complete drop down is open. + + + true if the drop down is open; otherwise, false. + + + + + Gets or sets when the vertical scroll bar should appear in a multiline TextBox element. + + + The state of the vertical scroll bar. + + + + + Gets or sets when the horizontal scroll bar should appear in a multiline TextBox element. + + + The state of the horizontal scroll bar. + + + + + Gets a value indicating whether this text box can perform auto complete operation. + + + true if this instance can perform auto complete; otherwise, false. + + + + + Gets the auto complete drop down. + + + + + Gets the clear button. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when the context menu is opening. + + + + + Occurs when text selection is changing. + + + + + Occurs when text selection is changed. + + + + + Fired when the Input Method Editor starts the composition. + + + + + Fired when the Input Method Editor completes the composition. + + + + + Fired when the Input Method Editor has a result ready. For languages like Korean + this might happen before the composition has ended. + + + + + Initializes a new instance of the class. + + + + + Creates the tokenized item collection. + + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets or sets a property name which will be used to extract a value from the data items + + + + + Gets or sets the delimiter used to tokenize the text + + + The delimiter. + + + + + Gets the tokenized items. + + + + + Gets the auto complete view element. + + + + + Gets or sets the auto complete drop down location. + + + The auto complete popup location. + + + + + Occurs when text is validating as token + + + + + Represent a virtualize panel element provider + + The type of view element. + The type of virtualized item. + + + + + + + + + + Represents interface for virtualized element provider + + + + + + Gets the element. + + The data. + The context. + + + + + Caches the element. + + The element. + + + + + Shoulds the update. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with its data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Gets the size of the element. + + The data. + + + + + Gets the size of the element. + + The element. + + + + + Clears the cached elements. + + + + + Gets or sets the default size of the element. + + + The default size of the element. + + + + + Creates the element. + + The data. + The context. + + + + + Gets the element from cache. + + The data. + The context. + + + + + Gets the element from cache or creates it. + + The data. + The context. + + + + + Pre-initialize cached element. + + The element. + The context. + + + + Caches the element. + + The element. + + + + + Determine whether the element should be updated. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with concrete data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Gets the size of the element. + + The item. + + + + + Gets the size of the element. + + The element. + + + + + Clears the cache. + + + + + Gets or sets the default size of the element. + + + The default size of the element. + + + + + Gets the cached elements count. + + + The cached elements count. + + + + + Creates the element. + + The data. + The context. + + + + + Shoulds the update. + + The element. + The data. + The context. + + + + + Represents a traverser that enumerates collection. + + + + + + Represents traverser class that enumerates items. + + + + + + Moves the previous. + + + + + + Moves to end. + + + + + + Gets or sets the position. + + + The position. + + + + + Initializes a new instance of the class. + + The collection. + + + + Advances the enumerator to the next element of the collection. + + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Moves the previous. + + + + + + Moves to end. + + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Called when items are navigated. + + The current. + + + + + Moves the next core. + + + + + + Moves the previous core. + + + + + + Gets or sets the collection. + + + The collection. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets or sets the position. + + + The position. + + + + + Occurs when items are navigated. + + + + + Moves the next core. + + + + + + Gets or sets the font for this RadListDataItem instance. + + + + + Represents a virtaulizable element interface + + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance. + + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the associated data. + + + The data. + + + + + Applies or resets alternating row color of the current visual item. + + + + + Gets or sets a value indicating whether this item has odd position. + + + + + Clears all Checked Items + + + + + Represents a auto-complete list element in . + + + + + Represents a auto-complete list element in . + + + + + This class is used to represent data in a list similar to the ListBox control provided by Microsoft. + + + + + Performs events subscription to internal objects. + The base implementation must always be called. + + + + + Performs events unsubscription from internal objects. + The base implementation must always be called. + + + + + This method creates an object that implements IVirtualizedElementProvider. Child elements are not yet created + in this method. + + A new instance of an implementation of IVirtualizedElementProvider. + + + + Creates an instance of ITraverser which traverses the child elements. + + + + + + Creates an instance of ItemScroller. Child elements are not yet created in this method. + + + + + + This method provides a chance to setup the ItemScroller. + + The item scroller on which properties will be set. + + + + This method provides a chance to setup the the VirtualizedStackContainer. + + The view element on which properties will be set. + + + + Measures the item. + + The item. + Size of the available. + + + + + Gets the desired size of the item. + + The item. + + + + + Called when auto size is changed. + + + + + Gets the Element with the specified item. + + + + + + Updates on measure. + + Size of the available. + + + + + Updates the items fit to size mode. + + + + + Gets or sets the items. + + + The items. + + + + + Gets the associated scroller. + + + The scroller. + + + + + Gets or sets a value indicating whether items fit to size. + + + true if [fit items to size]; otherwise, false. + + + + + Gets or sets the items orientation. + + + The orientation. + + + + + Gets or sets a value indicating whether items auto sizing. + + + true if [auto size items]; otherwise, false. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Creates a new instance of the RadListElement class. + + + + + Creates an instance of the data layer object responsibe for items management in bound or unbound mode. + + + + + + Creates an instance of the element provider object which is responsible for mapping logical and visual items and determining + when a visual item must be updated to reflect the state of its corresponding logical item. + + + + + + Creates an instance of the visual element responsible for displaying the visual items in a particular layout. + + + + + + Finds the first item in the RadList control that matches the specified string. + + The string to search for. + Determines whether the search is case sensitive or not. + The zero-based index of the first item found; returns null if no match is found. + + + + Raises the event. + + + An instance that contains the event data. + + + + + + Suspends notifications of changing groups. + This method is cumulative, that is, if SuspendGroupRefresh is called N times, ResumeGroupRefresh must also be called N times. + + + + + Resumes refreshing of groups. + + Indicates whether refreshing of groups should be performed. + + + + Refreshes the groups. + + + + + Scrolls to the active item if it is not null and if it is not fully visible. + + + + + Forces re-evaluation of the current data source (if any). + + + + + Suspends internal notifications and processing in order to improve performance. + This method is cumulative, that is, if BeginUpdate is called N times, EndUpdate must also be called N times. + + + + + Resumes the internal notifications and processing previously suspended by BeginUpdate. + + + + + Defers the refresh. + + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Clears the currently selected items and selects all items in the closed range [startIndex, endIndex]. + + The first index at which to start selecting items. + The index of one item past the last one to be selected. + + + + Scrolls to the provided item so that the item will appear at the top of the view if it is before the currently visible items + and at the bottom of the view if it is after the currently visible items. + + The item to scroll to. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the beginning of the items. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Creates a new item traverser and updates the current. + If group refresh is suspended this method has no effect. + + + + + This method returns true if the ActiveItem is fully visible. + + + + + Gets the index of the last visible item. + + + + + Gets the index of the first visible item. + + + + + Gets the index of the middle visible item. + + + + + Determines if the provided visual item intersects the view but is not contained in it. + + + + + If the object assigned to the DataSource property is of type Component, this callback will be invoked if + the data source is disposed which cause all data items to become disposed. + + + + + Handles changes in the data layer. + Nothing will done if we the RadListElement is in a BeginUpdate state. + + + + + Syncronizes the properties of all visual elements with their data items. + + + + + When the data layer changes the current position, this callback triggers the selection logic with the new position. + + + + + Fires the SelectedIndexChanged event. + + + + + Fires the SelectedIndexChanging event. + + + + + Fires the SelectedValueChanged event if SelectedValue has actually changed since many items can have the same value. + + + + + Fires the ItemDataBinding event. + + + + + Fires the ItemDataBound event. + + + + + Fires the CreatingVisualItem event. + + + + + Fires the SortStyleChanged event. + + + + + Fires the VisualItemFormattingeEvent with the provided visual item. + + + + + Performs scrolling logic depending on the delta from the mouse wheel. + + + + + Raises the ItemsChanged event with the provided arguments. + + The arguments that contain the data relevant to the items change. + + + + Raises the ItemsChanging event with the provided arguments. + + The arguments that contain the data relevant to the pending items change. + + + + Raises the DataItemPropertyChanged + + + + + + + Handles the mouse input by finding the RadElement involved with the mouse and sending the element and event information to the appropriate + subsystem of RadListElement. + + + + + Performs logical branching depending on the type of the routed event. + + + + + Performs logical branching of the selection logic depending on the notification reason. + + + + + Handles the keyboard input by delegating the information of the event to the appropriate RadListElement subsystem. + + + + + Finds an item with the text provided by an internal search buffer after the character argument is appended to the buffer. + The search buffer is reset after a user defined time since the last character was typed. By default this is 300 ms. + Users can set the KeyboardSearchResetInterval property to a custom interval. + + A character that will be appended to the search buffer. + + + + Handles the space key press depending on the SelectionMode and the state of the control key. + + + + + This method is the entry point for the selection logic if initiated by the keyboard. + + + + + Determines whether the selection logic should select the next or the previous item depending on the which arrow key is pressed. + + + + + This method is the entry point in RadListElements selection logic. + + + + + Performs logical branching of the MultiExtended selection logic depending on the parameters. + + + + + This method performs only logical branching of the selection logic depending on the input type parameter. + + + + + This method is for clarity. CodeMultiSimple is the same as MouseMultiSimple but does not change the current position of the data layer. + + + + + Toggles the Selected state of the item at the specified index and fires selection events depending on the second argument. + + The index of the item which will selected or deselected. + Indicates whether to change the current positio of the data layer and therefore fire selecton events. + + + + Handles the MultiSimple selection logic for adding items. + + + + + Handles the MultiSimple selection logic for removing items. + + + + + Selects the item at the specified index and clears all other selected items and updates the active item. + This method triggers selection events. + + The index of the item which will be selected. + + + + Selects all items in the range [startIndex, endIndex] and clears all other selected items. + This method triggers selection events. + + The beginning of the selection range. + The end of the selected range. + + + + This method sets the provided item as active and the previous one to inactive. There can be only active item at a time. + + The item to set to an active state. + The value to which the Active property of item will be set. + + + + Sets the SelectedItem and thus SelectedIndex to the logical item with the specified value. If there are many items with the same value the first item found will be selected. + This method triggers selection events. + + The value for which to find an item. + + + + Sets the the selected data item to the specified item. If the item is different than the current one the selection events will be fired. + This method triggers selection events. + + + + + + Sets the selected index to the specified value if it is different than the current value and fires the selection events. + This method triggers selection events. + + + + + + Determines if RadListElement is ready for data binding. This is true only when Items is empty or DataSource is different from null. + If RadListElement is not ready for binding an InvalidOperationException is thrown. + + + + + Determines if this list element is ready for unbound mode. + If it is not an invalid operation exception is thrown. + RadListElement is ready for unbound mode if it has not data source set. + + + + + Returns the value of the Value property of the RadListDataItem at the specified index. + + The index of the item from which to get the Value property. + + + + + Returns the index of the provided list data item. This index determines the items position in the data view. + + The index for which to return an index. + Returns the index of the provided item. + + + + Gets the text of the data item provided in the argument depending on the ItemTextComparisonMode property. + + The data item for which to get the Text value. + The text value of the provided data item. + + + + Determines whether the provided index is in the range [0, Items.Count) + + The index to validate. + Returns true if the index is inside [0, Items.Count) and false otherwise. + + + + Swaps two integers. + + + + + Disposes every item in the Items collection. + + + + + Converts the provided ListSortDirection to SortStyle. + + The ListSortDirection to be converted to SortStyle. + The converted SortStyle value. + + + + Sets the sort comparer. + + The comparer. + The direction. + + + + Sets the sort style to the specified value and fires the SortStyle changed event if the new value is different than the previous value. + + + + + + Sets the selection mode of this RadListElement to the provided value. + + The new selection mode. + + + + Gets property name by which items will be sorted when SortStyle is set. + If DisplayMember is an empty string, items will be sorted by their text, otherwise + they will be sorted according to the DisplayMember. + + Returns the property by which items will be sorted. + + + + Clamps the provided value parameter to be be in the closed range [min, max]. + + The left bound of the range. + The right bound of the range. + The value to be clamped to the range specified by the previous two parameters. + + + + This is a helper method which keeps track of the number of subscriptions to the CurrentPositionChanged event of the data layer. + + + + + This is a helper method which keeps track of the number of unsubscriptions from the CurrentPositionChanged event of the data layer. + + + + + This method is for testing purposes. It invokes the MultiExtended selection logic with the supplied parameters. + + The index to which the selection will span starting from SelectedIndex. + An enumeration indicating whether the input comes from the keyboard, the mouse or from code. + If this flag is true the selection logic will invoke MultiExtended as if the shift key was pressed. + If this flag is true the selection logic will invoke MultiExtended as if the control key was pressed. + + + + Returns the logical item associated with the top visible item if the layout is vertical and the left most item if the layout is horizontal. + + + + + + Gets a value indicating whether the oldSelectedIndex is reset to initial state. + The old selected index is in initial state only when the list control is newly + constructed and has not yet had any selected items, or when the data layer sends + a reset notification. This happens when the data source is changed. + + + + + Gets a value indicating whether the SelectedValue property is different after the selection last changed. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + Always false when kinetic scrolling is enabled. + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Gets or sets a value indidcating the alternating item color for odd items. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether kinetic scrolling is enabled. + + + + + Gets or sets the offset of the items when they are displayed in a collapsible group. + + + + + Gets or sets the offset of the items when they are displayed in a non-collapsible group. + + + + + Gets or sets a value that indicates if this RadListElement will stop firing the ItemsChanging and ItemsChanged events. + + + + + Gets or sets a value that indicates whether text case will be taken into account when sorting. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value of this property is 300 ms. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListElement is focused. + + + + + Gets or sets a value that determines whether the FindString() method searches via the text property + set by the user or by the text provided by the data binding logic, that is, by DisplayMember. + + + + + Gets or sets a Predicate that will be called for every data item in order to determine + if the item will be visible. + + + + + Gets or sets a filter expression that determines which items will be visible. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets an object that implements IComparer and sorts the items according to its logic. + + + + + Gets or sets the active item. This property is meaningful only when SelectionMode is MultiSimple or MultiExtended with the Control key pressed. + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + Gets or sets the SelectionMode which determines selection behavior of RadListElement. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + Setting this property throws an InvalidOperationException if Items is not empty and the data source is null. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets a string which will be used to get a description text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets a string which will be used to get a description text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the item height for the items. This property is disregarded when AutoSizeItems is set to true. + + + + + Gets or sets the sort style. It can be Ascending, Descending or None. Sorting is performed according to the property specified by DisplayMember. + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + Gets or sets the scrolling mode. + + + + + Gets a boolean value that indicates whether the is a filter currently set either with the Filter or FilterExpression properties. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + This event fires when the SelectedValue changes. This is will not always fire when the SelectedItem or SelectedIndex changes because the new item may have the same value. + + + + + This event fires when selected index changes. This always happens when the SelectedItem changes. + + + + + This event fires before SelectedIndexChanged and provides a means for cancelling the whole selection operation. + Someties this event will not fire since cancelling the change is not possible, for example when the DataSource is set to null. + + + + + This item fires for data item that is being created during data binding and fires before the ItemDataBound event. The event provides a means for changing the instance of the data item + to a custom data item. + + + + + This event fires after a data item has been created and bound. + + + + + This event fires while creating visual items. This happens on during initial layout and during resizing if the new size is larger and thus allowing more items to be visualized. + The event provides a means to create a custom visual item. + + + + + This event fires after the sorting style changes. + + + + + The visual item formatting fires whenever the state of a visible logical item changes and when scrolling. + + + + + This event fires whenever an item is added, removed, set or if the whole items collection was modified. + + + + + This event fires right before adding, removing or setting an item. This event will not fire if an item is added to a data source directly + because there is no way for RadListElement to be notified before the change. + + + + + This event fires whenever a RadProperty of a data item changes. This event is most often used to listen changes in Selected and Active properties of the data items. + + + + + This class is used to compare data items when sorting in ascending order. + + + + + This class is used to compare data items when sorting in descending order. + + + + + Raises the event. + + The action. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether the two text variables are equal + + The suggestion. + The pattern. + + true if the specified suggestion is matching; otherwise, false. + + + + + Determines whether the suggested text matches the pattern text + + The suggestion. + The pattern. + + true if [is exact suggestion] [the specified suggestion]; otherwise, false. + + + + + Suspends the event. + + + + + Resumes the event. + + + + + Performs text suggestion for concrete text pattern + + The pattern. + The start position. + The end position. + + + + Performs text suggestion for concrete text pattern + + The pattern. + The start position. + The end position. + if set to true [notify]. + + + + Performs text suggestion for concrete text pattern + + The pattern. + + + + Custom filtering predicated + + The item. + + + + + Custom filtering predicated. + + The item. + + + + + Sets the suggested text. + + The text. + The action. + + + + Gets the suggested text from + + The item. + if set to true [perform append]. + + + + + Gets the first fully visible item. + + + + + + Gets the last fully visible item. + + + + + + Gets the fully visible item. + + if set to true [first item]. + + + + + Gets the visual item at point. + + The location. + + + + + Finds by text + + The text. + + + + + Gets or sets the auto complete mode. + + + The auto complete mode. + + + + + Gets the suggested text. + + + + + Gets the text search criteria. + + + + + Gets a value indicating whether this text and suggested text are matched. + + + true if they are matched; otherwise, false. + + + + + Gets a value indicating whether the auto-complete mode is suggest mode. + + + true if the mode is suggest mode; otherwise, false. + + + + + Gets a value indicating whether the auto-complete mode is append mode. + + + true if the mode is append mode; otherwise, false. + + + + + Gets or sets the start position where the suggestion is performed + + + + + Gets or sets the end position where the suggestion is performed + + + + + Occurs when suggested text is changed + + + + + Represents a CheckedDropDown List. The RadCheckedDropDownList class is essentially a simple + wrapper for the RadDropDownListElement. The latter + may be included in other telerik controls. All UI and logic functionality is + implemented by the RadDropDownListElement class. + RadDropDownList act to transfer event to and from its + RadDropDownListElement instance. + + + + + Represents a combo box class. The RadDropDownList class is essentially a simple + wrapper for the RadDropDownListElement. The latter + may be included in other telerik controls. All UI and logic functionality is + implemented by the RadDropDownListElement class. + RadDropDownList act to transfer event to and from its + RadDropDownListElement instance. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the DropDownList box. + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Raises the event. + + + An instance that contains the event data. + + + + + + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from zero based index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Forces re-evaluation of the current data source (if any). + + + + + Displays the popup on the screen. + + + + + HIde the popup from the screen. + + + + + Call BeginUpdate at the begining of a block that makes many modifications in the GUI + + + + + + Call EndUpdate at the end of a block that makes many modifications in the GUI + + + + + + Defers the refresh. + + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + /// + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets that RadListDataItem Image will be displayd in Editor Element when DropDownStyle is set to DropDownStyleList + \ + + + + Gets a reference to the drop down form associated with this RadDropDownList. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + + Rotate items on double click in the edit box part + + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + + Gets or sets the sort style. It can be Ascending, Descending or None. Sorting is performed according to the property specified by DisplayMember. + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + + /// + Gets or sets the easing type of the animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + + + Gets or sets the height in pixels of the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + DefaultItems count in drop-down portion of the RadDropDownList. + + + + + Gets or sets the drop down maximum size. + + + + Represent the DropDownListElement element + + + + + Represent the List element + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Indicating whether the Popup part of the control + are displayed. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Occurs when the Text property value changes. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets a value indicating whether the control causes validation to be + performed on any controls that require validation when it receives focus. + + + true if the control causes validation to be performed on any controls requiring + validation when it receives focus; otherwise, false. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets an object that implements IComparer which is used when sorting items. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + Occurs when a key is pressed while the control has focus. + + 1 + + + + Occurs when a key is released while the control has focus. + + 1 + + + + Occurs when a key is pressed while the control has focus. + + + + + Fires when the popup-form is opened. + + + + + Fires when the popup-form is about to be opened. + + + + + Fires when the popup is about to be closed. + + + + + Fires when the popup is closed. + + + + + This event fires when the selected index property changes. + + + + + This event fires before SelectedIndex changes. This event allows the operation to be cancelled. + + + + + This event fires only if the SelectedValue has really changed. For example it will not fire if the previously selected item + has the same value as the newly selected item. + + + + + This event fires before a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event fires for every item provided by the data source. + This event allows a custom RadListDataItem to be provided by the user. + + + + + This event fires after a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event is fired for every item provided by the data source. + + + + + This event allows the user to create custom visual items. + It is fired initially for all the visible items and when the control is resized afterwards. + + + + + This event fires when the SortStyle property changes. + + + + + The VisualItemFormatting event fires whenever a property of a visible data item changes + and whenever a visual item is associated with a new data item. During scrolling for example. + + + + + This property is not applicable for RadCheckedDropDownList + + + + + This property is not applicable for RadCheckedDropDownList + + + + + Show or Hide the CheckAll item + + + + + Gets or sets a value indicating whether the hosted textbox is multiline. + + + true if multiline; otherwise, false. + + + + + This property is not applicable for RadCheckedDropDownList. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a value specifying the style of the DropDownList + This property is not applicable for RadCheckedDropDownList + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets a value indicating whether items checked state is synchronized with the text in the editable area. + + + + + Gets the associated auto complete text box element. + + + + + Occurs when text is validating as token + + + + + /// Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a CheckAllItem is about to be checked. Cancelable. + + + + + Occurs when a CheckAllItem is checked. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + TextBox Property + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Represents the base for all editor elements. Provides the default visual states such as IsFocused and Disabled. + + + + + This interface supports the editor infrastructure of the RadGridView. + + + + + Occurs when the editor is validating the value. + + + + + Occurs when the editor is finished validating the value. + + + + + Occurs when the editor value is being changed. Cancelable event. + + + + + Occurs when the value of the editor changes. + + + + + Occurs when internally the editor detects an error or when the Validating event fails. + + + + + Gets the VisualElement that must receive the focus, when the editor is invoked. + + + + + + Initializes the provider. + + + + + Initializes the provider. + + value to be pre-loaded inside the initialized editor. + + + + Initializes the provider. + + the owner + value to be pre-loaded inside the initialized editor. + + + + Occurs when internally the editor detects an error or when the Validating event fails. + + + + + Gets whether the editor is instantiated on demand or is always availabele. + Example: GridBooleanCellElement and GridViewBooleanColumn. + + + + + Closes the popup if it is open, or shows the popup if it is closed. + + + + + Closes the popup with a RadPopupCloseReason.CloseCalled reason. + + + + + Closes the popup with the provided reason for closing. + + the reason for the close operation as specified through RadPopupCloseReason enumeration. + + + + Displays the popup on the screen. + + + + + Used to initialize the size of the popup + when it is initially opened and the + element tree is loaded. + + + + + Performs the core popup display logic. + + The popup form that is about to be displayed. + + + + Gets the screen coordinated where the popup should be displayed. + + + + + + + Gets the display size for the popup. + + The popup which size should beretrieved. + True to perform explicit measure, false otherwise. + + + + + Applies any Min/Max size restrictions to the popup form. + + + + + + Syncronizes the theme of the editor itself with the popup that is about to be displayed. + + + + + + Determines whether the popup form may be displayed. + + + + + + Creates the popup instance. You have to override this method in order to provide a popup + that is specialized by its content. Example: In a combo box you have to override and provide a specialized class + that contains and handles the listbox element. + + The popup instance. + + + + Gets a valid instance of the popup, that is properly + initialized to work with the PopupEditorBaseElement. + + The popup instance. + + + + Gets the popup form + + + + + + + + + + + + + + + + + + + + + + + + + Main entry point for updating DropDownList + + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the ComboBox. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + AutoCompleteValueMember Property + + + + + AutoCompleteDataMember Property + + + + + Gets or sets the height in pixels of the drop-down portion of the ComboBox. + + + + + Popup Property + + + + + DefaultItemsCountInDropDown Property + + + + + The input element hosted in the popup form. In the case of + DropDownList the control is a ListElement. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Defers the refresh. + + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + main update entry point + + contains notification context + + + + This method is used internally! + + + + + Creates the auto complete append handler. + + + + + + Creates the auto complete suggest helper. + + + + + + Gets or sets a value indicating whether the SelectedIndex is synchronized with the text in the editable area. + + + + + Get or set the text in Editable area + + + + + Gets a value that indicates if the popup associated with this RadDropDownListElement is open. + + + + + Represent list of all AutoComplete Helpers + + + + + Gets or sets that RadListDataItem Image will be displayd in Editor Element when DropDownStyle is set to DropDownStyleList + + + + + Gets or sets a Predicate that will be called for every data item in order to determine + if the item will be visible. + + + + + Gets or sets a filter expression that determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + EditableElement Property + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a value specifying the style of the combo box. + + + + + + + + + + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + For information on this property please refer to the MSDN. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the item height for the items. + + + + + TextBox Property + + + + + ArrowButton Property + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + Rotate items on double click in the edit box part + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + AutoCompleteSuggest Property + + + + + AutoCompleteAppend Property + + + + + Get or sets the minimum width of the arrow button element. + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the drop down minimum width. + + + + + + + + This property is not applicable for RadCheckedDropDownList + + + + + This property is not applicable for RadCheckedDropDownList + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets a value indicating whether items checked state is synchronized with the text in the editable area. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Indexes the of. + + The item. + + + + + Indexes the of. + + The text. + + + + + Determines whether [contains] [the specified text]. + + The text. + + true if [contains] [the specified text]; otherwise, false. + + + + + Displays a flat collection of labeled items with checkbox, each represented by a ListViewDataItem. + + + + + Displays a flat collection of labeled items, each represented by a ListViewDataItem. + + + + + Creates an instance of . + + + + + Executed on EndInit() method. + + The sender. + The event args. + + + + Suspend any item change notifications until is called. + + + + + Resumes the item change notifications. + + + + + Finds an item with the specified key. + + The key of the searched item. + + + + + Finds an item with the specified key. + + The key of the searched item. + Indicates if the search should check only visible items. + + + + + Selects a set of items. + + The items to select. + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Saves the changes. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Discards the changes. + + [true] if success, [false] otherwise + + + + Expands all the groups in the control. + + + + + Collapses all the groups in the control. + + + + + Checks the selected items. + + + + + Unchecks the selected items. + + + + + Checks all of the items. + + + + + Unchecks all of the items. + + + + + Fires when a group has been expanded. + + + + + Fires when a group is about to expand. Cancelable. + + + + + Occurs when the BindingContext has changed. + + + + + Occurs when the process of binding to a data source has finished + + + + + Occurs when a ListViewDataItem is about to be selected. Cancelable. + + + + + Occurs when the content of the SelectedItems collection has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the ViewType of RadListView is changed. + + + + + Occurs when the ViewType of RadListView is about to change. Cancelable. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user moves the mouse over a ListViewDataItem. + + + + + Occurs when the user hovers a ListViewDataItem. + + + + + Occurs when the mouse pointer enters a ListViewDataItem. + + + + + Occurs when the mouse pointer leaves a ListViewDataItem. + + + + + Occurs when the user clicks a ListViewDataItem. + + + + + Occurs when the user double-clicks a ListViewDataItem. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Occurs when a ListViewDataItem changes its state and needs to be formatted. + + + + + Occurs when a ListViewDataItem needs to be created. + + + + + Occurs when a BaseListViewVisualItem needs to be created; + + + + + Occurs when a DetailsView cell needs to be formatted. + + + + + Occurs when a data-bound item is being attached to a ListViewDataItem. + + + + + Occurs when the CurrentItem property is changed. + + + + + Occurs when the CurrentItem property is about to change. Cancelable. + + + + + Occurs when an editor is required. + + + + + Occurs when an edit operation is about to begin. Cancelable. + + + + + Occurs when an editor is initialized. + + + + + Occurs when a ListViewDataItem is edited. + + + + + Fires when a validation error occurs. + + + + + Occurs when an edit operation needs to be validated. + + + + + Occurs when the value of a ListViewDataItem is changed. + + + + + Occurs when the value of a ListViewDataItem is about to change. Cancelable. + + + + + Occurs when a needs to be created. + + + + + Occurs when a needs to be created. + + + + + Occurs when an item is about to be removed using the Delete key. Cancelable. + + + + + Occurs when an item is removed using the Delete key. + + + + + Gets or sets a value indicating whether column names which differ only in the casing are allowed. + + + + + Gets or sets the position of the checkboxes when ShowCheckBoxes is true. + + + + + Gets or sets the alignment of the checkboxes within the item when ShowCheckBoxes is true. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the last added item in the RadListView DataSource will be selected by the control. + + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets a value indicating whether the checkboxes should be in ThreeState mode. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + + + + + Gets or sets a value indicating whether grid lines should be shown in DetailsView. + + + + + Gets or sets a value indicating whether items can be selected with mouse dragging. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. Always false when lasso selection is enabled. + + + + + Gets or sets a value indicating whether items should react on mouse hover. + + + + + Gets or sets a value indicating whether the items should be sorted when clicking on header cells. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default item size. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets the space between the items. + + + + + Gets a collection of filter descriptors by which you can apply filter rules to the items. + + + + + Gets or sets the filter predicate used for filtering operation. + + The filter. + + + + Gets a value indicating whether the control is in bound mode. + + + + + Gets a collection containing the groups of the RadListView. + + + + + Gets or sets the value member. + + + + + Gets or sets the display member. + + + + + Gets or sets the checked member. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether custom grouping is enabled. + + + + + Gets a collection of SortDescriptor which are used to define sorting rules over the + ListViewDataItemCollection. + + + + + Gets a collection of GroupDescriptor which are used to define grouping rules over the + ListViewDataItemCollection. + + + + + Gets or sets the data source of a RadListView. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the selected item. + + + + + Gets or sets the index of the selected item. + + + + + Gets or sets the current item. + + + + + Gets or sets the current column in Details View. + + + + + Indicates whether there is an active editor. + + + + + Gets or sets a collection of ListViewDetailColumn object which represent the columns in DetailsView. + + + + + Gets or sets a collection of ListViewDataItem object which represent the items in RadListView. + + + + + Gets or sets a value indicating whether the column headers should be drawn. + + + + + Gets or sets a value indicating whether the items should be shown in groups. + + + + + Gets a collection containing the selected items. + + + + + Gets a collection containing the checked items. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating if the user can resize the columns. + + + + + Gets or sets value indicating if the user can reorder columns via drag and drop. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets value indicating whether multi selection is enabled. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets value indicating whether the user can remove items with the Delete key. + + + + + Gets the currently active editor. + + + + + Gets or sets the type of the view. + + + + + Gets the of the control. + + + + + Gets or sets the height of the header in Details View. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListView is focused. + + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + RadListView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadListView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + Returns a flag indicating whether the sizing element is at the bottom of the window. + If true, the size of the popup should increase. If false, the size should decrease. + + + + + + Gets or sets a boolean value that + determines whether the SizeGripItem + can resize the hosting control. + + + + + Base interface for providers. + + The type used to specialize the provider implementation. + + + + Gets IEnumerable<T> for items that match the conditions defined by the specified predicate. + + The Predicate<T> delegate that defines the conditions of the item to search for. + IEnumerable<T> for items that match the conditions defined by the specified predicate, if found; + + + + Inserts an item of type T. + + The item of type T to insert. + + + + Updates he first occurrence of a specific item in the data store. + + The item of type T to update. + Name of the property which value changed. + Null or an empty string if all properties should be updated. + + + + Removes the first occurrence of a specific item from the data store. + + The item of type T to delete. + + + + The ItemsChanged event is raised by the provider to inform all listeners that the items in the data store have changed. + + + + + The PositionChanged event is raised by the provider to inform all listeners that the current position in data items list has changed. + + + + + Gets or sets the current position in the list of data items. + + + + + Gets or sets a data store mapping to the provider. + + + + + Associates a source properties collection with the corresponding properties collection exposed by the scheduler events. + It is used in common by all RadScheduler data providers. + Contains a collection of SchedulerMapping objects, and is implemented by the + + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in RadScheduler. + The first element that matches the property name, if found. + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in the data store. + The first element that matches the property name, if found. + + + + Represents the method that will handle the type conversion between the values of corresponding properties. + + The value to be converted. + The converter applied. + The converted value. + + + + Contains information about a list change event. + + + + + + Initializes a new instance of the class. + + Type of the list change. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + The new index. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed item. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + The old item. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed items. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + The old items. + + + + Gets the type of the list change. + + The type of the list change. + + + + Gets the new items. + + The new items. + + + + Gets the old items. + + The old items. + + + + Gets the name of the property. + + The name of the property. + + + + Represents the simple binding between the property of an item from the data store and + the property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + + + + Initializes a new instance of the SchedulerMapping class that simple-binds the + indicated property of an item from RadScheduler to the specified item from the data store. + + Property name of an item in RadScheduler. + Property name of an item in the data store. + + + + The callback that converts the given value object from the data store to the specified type of the RadScheduler corresponding item. + + + + + The callback that converts the given value object from a RadScheduler item to the specified type of the data store corresponding item. + + + + + Gets or sets the RadScheduler item property name that is mapped. + + + + + Gets or sets the data store item property name that is mapped. + + + + + Base class for all generic RadDock objects - such as Services, Settings, etc. + + + + + Forces object clean-up and resource release. + + + + + Performs the actual dispose logic. + + True to notify that managed resources should also be disposed. + + + + Disposes any managed resources associated with this object. + + + + + Disposes any unmanaged resources associated with this instance. + + + + + Raises the PropertyChanging notification. + + + True to indicate that the change is accepted, false otherwise. + + + + Raises the PropertyChanged event. + + + + + + Determines whether the property with the specified name needs serialization. + + + + + + + Notifies that the object is disposed. + + + + + + + + + + Represents the action button element + + + + + Represents a button element. The button element could be placed in each control's + Items collection. It encapsulates all the necessary logic related to the user + interaction and UI. The RadButton class is a simple + wrapper for the RadButtonElement class. The RadButton + acts to transfer events to and from its corresponding RadButtonElement instance. + The RadButtonElement which is essentially the RadButton control may be nested in + other telerik controls. + + + + + Represents a button item. + + + + Initializes a new instance of the RadButtonItem class. + + + + + Initializes a new instance of the RadButtonItem class and sets it's Text property to + the provided string. + + + + + + Initializes a new instance of the RadButtonItem class, sets it's Text and Image + properties to the provided string and Image. + + + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Specifies the options for display of image and text primitives in the element. + + + + + Gets a value indicating whether the button item is in the pressed state. + + + + + Determines if this button is the default button for the form it is on. + + + + + Determines whether the Image value of the current item is shared (reused by ither items). + This flag is true by default. If it is set to false, then the item itselft will dispose the Image upon its disposal. + + + + + Initializes a new instance of the RadButtonElement class. + + + + + + + + + + + + + + + + + Gets the FillPrimitive element that is responsible for painting of the background of the control + + + + + Gets the BorderPrimitive element that is responsible for painting of the border of the control + + + + + Gets the TextPrimitive element that is responsible for painting of the text of the control + + + + + Gets a reference to the ImagePrimitive of the RadButtonElement. + + + + + Gets a reference to the FocusPrimitive of the RadButtonElement. + + + + + Gets a reference to the ImageAndTextLayoutPanel of the RadButtonElement. + + + + + Gets the large image that is displayed on a button element. + + + + + Gets the large image list index value of the image displayed on the button control. + + + + + Gets the large key accessor for the image in the ImageList. + + + + + Gets or sets the large image that is displayed on a button element. + + + + + Gets or sets the small image list index value of the image displayed on the button control. + + + + + Gets or sets the small key accessor for the image in the ImageList. + + + + + Specifies whether the button should use the original image list or the small image list. + + + + + Angle of rotation for the button image. + Unlike AngleTransform the property ImagePrimitiveAngleTransform rotates the image only. + AngleTransform rotates the whole button + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + Gets or sets a value indicating whether the border is shown. + + + + + This property is used internally! + + + + + Values used by RadDropDownButton, to determine the mouse position relative to the action or arrow button part. + + + + + This class represents the popup of the + control. + + + + + Represents a drop down menu used in radComboBox and radMenu. + + + + + Represents a base class for all popup-forms used throughout the suite. + + + + + An interface for all Popup-forms used in RadControls for WinForms. + + + + + Shows the IPopupControl at the specific location. + + An instance of the Rectangle struct + which represents a portion of the screen which the IPopupControl + is aligned to. + + + + Closes the IPopupControl. + + + + + Tries to close the . + + An instance of the class + containing information about the close request. + + + + This method determines whether the IPopupControl can be closed. + Used in the PopupManager class to prevent the IPopupControl from closing + in specific occasions. + + The reason why the IPopupControl is closed. + True if the IPopupControl can be closed, otherwise false. + + + + Executes when a key is pressed. + + An instance of the + struct which contains the key information. + A boolean value that determines whether the + IPopupControl processes the message. + + + + Callback for handling the WM_MOUSEWHEEL message. + + + + True if the message is processed, false otherwise. + + + + Gets a instance that represents + a collection of logical children of this IPopupControl. + The OwnerPopup property of these children would point + to this IPopupControl instance. + + + + + Gets the owner IPopupControl of this IPopupControl. + + + + + Gets the Bounds rectangle of the IPopupControl. + + + + + Gets the owner element of the IPopupControl. + + + + + Creates an instance of the RadPopupFormBase class. + + + + + Shows the popup based on the value + set to its Location property. + + + + + Shows the popup at the location passed + as a parameter. The location is in screen coordinates + + An instance of the struct that represents the location. + + + + Shows the control based on the screen rectangle + of a given control. + + The control which defines the location of the popup. + + + + Closes the popup. + + + + + Fires when the popup is opened. + + + + + Fires when the popup is about to open. + + A CancelEventArgs object that contains information about the event + + + + Fires when the popup is closed. + + A RadPopupClosedEventArgs instance + that contains information about what caused the popup to close. + + + + Fires when the popup is about to close. + + A RadPopupClosingEventArgs instance that + contains information about the event + + + + Updates the Aero effects support upon property change. + + + + + Updates the location of the popup based on the + alignment rectangle and the current alignment settings. + You can adjust the alignment settings by using the + VerticalPopupAlignment and HorizontalPopupAlignment properties. + + The alignment rectangle based on which the popup is positioned. + + + + Updates the location of the popup based on the last used + alignment rectangle and the current alignment settings. + You can adjust the alignment settings by using the + VerticalPopupAlignment and HorizontalPopupAlignment properties. + + + + + This method returns a point which defines the position of the popup. + By default, aligns the popup based on the + and the current alignment settings. You can adjust the alignment settings + by settin the HorizontalPopupAlignment and VerticalPopupAlignment properties. + + The alignment rectangle based on which + the popup is aligned. + An instance of the struct + that represents the calculated position of the popup. + + + + This method returns a point which defines the position of the popup. + By default, aligns the popup based on the + and the current alignment settings. You can adjust the alignment settings + by settin the HorizontalPopupAlignment and VerticalPopupAlignment properties. + + An instance of the class + that represents the screen where the popup is about to be positioned. + The alignment rectangle based on which + the popup is aligned. + An instance of the struct + that represents the calculated position of the popup. + + + + Gets the screen on which the popup will be displayed. + + The alignment rectangle for the popup. + An instance of the class that represents + the screen where the popup will be displayed. + + + + Gets an instance of the class + that represents the screen where the popup is displayed. + + + + + Gets a which represents the available bounds for the popup to show. + By default this method returns the bounds of the screen. + + An instance of the class that represents + the active screen where the popup is about to be shown. + An instance of the struct that represents the + available bounds for the popup based on the active screen. + + + + Calculates the horizontal position of the popup + according to the current + and . + + The screen in which the popup will be aligned. + The alignment rectangle of the popup. + The calculated location that will be corrected if needed. + An instance of the struct that represents the corrected location of the popup + + + + Calculates the vertical position of the popup + according to the current + and . + + The screen in which the popup will be aligned. + The alignment rectangle of the popup. + The calculated location that will be corrected if needed. + An integer that represents the corrected vertical location of the popup + + + + Calculates the horizontal popup location based on the . + This method uses the HorizontalPopupAlignment property setting. + + An instance of the struct + that represents the alignment rectangle. + Returns an integer that represents the X coordinate of the popup. + + + + Calculates the vertical popup location based on the . + This method uses the VerticalPopupAlignment property setting. + + An instance of the struct + that represents the alignment rectangle. + Returns an integer that represents the Y coordinate of the popup. + + + + Fires when a drop-down animation is about to begin. + + + + + This method is executed when the popup needs to receive manual horizontal alignment. + This can happen when there is no reasonable possibility for the + alignment routines to define a proper horizontal position for the popup. + In this way the developer is enabled to define a horizontal position + according to their preferences. + + The proposed alignment rectangle with screen coordinates.. + The proposed coordinates. + The proposed available space for the popup.. + An instance of the struct that represents the location of the popup. + + + + Checks whether the current alignment rectangle intersects with the popup's bounds + according to a given popup location. + + An instance of the struct that represents + the current alignment rectangle. + An instance of the struct that represents the proposed popup location. + An instance of the struct that represents the available bounds on the screen. + An instance of the struct that represents the result of the operation. + + + + This method is executed when the popup needs to receive manual vertical alignment. + This can happen when there is no reasonable possibility for the + alignment routines to define a proper vertical position for the popup. + In this way the developer is enabled to define a vertical position + according to their preferences. + + The proposed alignment rectangle with screen coordinates.. + The proposed coordinates. + The proposed available space for the popup.. + An instance of the struct that represents the location of the popup. + + + + Shows the popup. + + The alignment rectangle. + + + + Closes the popup. + + The info. + + + + Called when the popup is closing. + + The info. + + + + + Called when popup is closed. + + The info. + + + + Closes the IPopupControl. + + + + + + This method determines whether the IPopupControl can be closed. + Used in the PopupManager class to prevent the IPopupControl from closing + in specific occasions. + + The reason why the IPopupControl is closed. + + True if the IPopupControl can be closed, otherwise false. + + + + + Executes when a key is pressed. + + An instance of the + struct which contains the key information. + + A boolean value that determines whether the + IPopupControl processes the message. + + + + + Determines whether the MouseWheel event is handled by the popup. + + + + + + + + Raises the MouseWheel event. + + + + + + Gets or sets the direction of the drop-down + animation. + + + + + Gets or sets the easing type for the drop down animations. + + + + + Gets or sets the count of the frames of the drop down animation. + + + + + Gets or sets a bool value determining + whether popup animation is enabled. + + + + + Gets or sets a value determining what animation type to use when showing the popup. + + + + + Gets or sets the frame count + for the fade animation. + + + + + Gets or sets the time interval for each fade animation frame. + + + + + Gets or sets a float value that determines the opacity of the popup. + This property accepts values from 0.0 to 1.0. For example, + to make the popup semi-transparent, set the property to 0.5. + + + + + Gets or sets a boolean value which determines + whether the popup drops a shadow. + + + + + Enables the support for Windows Vista DWM effects. + + + + + Gets or sets a value indicating the type + of the fade animation. + + + + + Gets or sets a value from the enum + which defines how the size of the popup is fit to the currently active screen. + + + + + Gets or sets a value from the enum + which determines what part of the screen is considered when positioning the popup. + + + + + Gets or sets a value from the which defines how the popup will be positioned according to the + alignment rectangle when its location cannot be adjusted so that it meets all popup alignment and alignment correction mode requirements. + + + + + Defines how the popup will be horizontally aligned in case of lack of + screen space. + + + + + Defines how the popup will be vertically aligned in case of lack of + screen space. + + + + + Gets or sets a value that defines the vertical alignment + of the popup based on the alignment rectangle passed + in the ShowPopup method. + + + + + Gets or sets a value that defines the horizontal alignment + of the popup based on the alignment rectangle passed + in the ShowPopup method. + + + + + Gets the RadElement that owns this popup. + + + + + + + + + + Gets a instance that represents + a collection of logical children of this IPopupControl. + The OwnerPopup property of these children would point + to this IPopupControl instance. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + Fires when a fade animation has finished. The + event args contain information about the type of the animation. + + + + + Fires when the popup-form is about to be opened. + + + + + Fires when the popup-form is opened. + + + + + Fires when the popup is about to be closed. + + + + + Fires when the popup is closed. + + + + + Creates an instance of the PopupAnimationProperties class. + This class encapsulates a WindowAnimationEngine instance + and exposes its properties. + + The WindowAnimationEngine instance. + + + + Gets or sets the direction of the drop-down animation. + + + + + Gets or sets the count of the frames of the animation. + + + + + Gets or sets the easing type of the animation. + + + + + Gets an integer value representing the animation + step. + + + + + Gets the + instance associated with the AnimationProperties instance. + + + + + Gets a boolean value indicating whether the popup is visible. + + + + + Gets menu items collection + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Initializes a new instance of the RadDropDownMenu class + + + + + Creates an instance of the RadDropDownMenu class. + + An instance of the RadElement class + that represents the owner of this drop down menu + + + + Displays the RadDropDownMenu in its default position. + + + + + Displays the RadDropDownMenu relative to the specified screen location. + + The horizontal screen coordinate, in pixels. + The vertical screen coordinate, in pixels. + + + + Displays the RadDropDownMenu relative to the specified screen location. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + + + + Positions the ToolStripDropDown relative to the specified screen location and with the specified direction. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the RadDropDownMenu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + + + + Positions the RadDropDownMenu relative to the specified control location and with the specified direction. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the RadDropDownMenu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + + + + Positions the RadDropDownMenu relative to the specified RadItem location and with the specified direction. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified RadItem location and + with specified direction and offset according to the owner. + + The RadItem that is the reference point for the RadDropDownMenu position. + Specifies the offset from the owner in pixels. + One of the RadDirection values. + + + + Gets the item that has been clicked. This property is valid when the drop-down is closed by an item click. + + + + + Gets or sets the popup element. + + + + + Indicates whether the DropDown contains one or two cloumns of items. + + + + + Gets or sets menu header column text + + + + + Gets or sets menu header column image + + + + + Represents a combo box element. + + + + + Initializes a new instance of the RadComboBoxElement class. + + + + + Gets the text of the specified item. + + + + + Raises the CaseSensitiveChanged event. + + + + + Raises the DropDownStyleChanged event. + + + + + Raises the SelectedIndexChanged event. + + + + + Raises the SelectedValueChanged event. + + + + + Raises the SortedChanged event. + + + + + Processes the Enter key + + An instance of + + + + Processes the Escape key + + An instance of + true if the event is processed, false otherwise + + + + Finds the first item in the combo box that starts with the specified string. + + The String to search for. + The first RadCOmboBoxItem found; returns null if no match is found. + + + + Finds the first item in the combo box that matches the specified string. + + The String to search for. + The first item found; returns null if no match is found. + + + + Finds the index of the item with the specified text. The passed argument + is compared with the DisplayMember value for each item in the items collection. + + The text of the item which index is to be acquired. + The index of the item if found, otherwise -1. + + + + Call BeginUpdate at the begining of a block that makes many modifications in the GUI + + + + + + Call BeginUpdate at the end of a block that makes many modifications in the GUI + + + + + + Call the GetItemHeight member function to retrieve the height of list items in a combo box. + + Specifies the item of the combo box whose height is to be retrieved. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + Gets a layout panel that contains editor and arrow panel + + + + + LimitToList Property + + + + + Gets a value indicating whether a keyboard command has been issued. + + + + + Gets or set the value in Milliseconds indicating delay between last key press and filtering operation + + + + + Gets a value indicating whether the drop down is shown. + + + + + Gets the arrow button element. + + + + + Gets the fill element. + + + + + Gets the border element. + + + + + Specifies the mode for the automatic completion feature used in the ComboBox + and the TextBox controls. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + Rotate items on double click in the edit box part + + + + + Gets or sets a boolean value determining whether the user can scroll through the items + when the popup is closed by using the mouse wheel. + + + + + Gets or sets the height in pixels of the drop-down portion of the ComboBox. + + + + + Gets or sets a value specifying the style of the combo box. + + + + + Gets whether the text input control of the combo box is in editable mode. + + + + + Gets or sets the width of the of the drop-down portion of a combo box. + + + + + Gets or sets a value indicating whether the control should show or not partial items. + + + + + Gets a collection representing the items contained in this ComboBox. + + + + + Gets a value indicating whether the combo box is displaying its drop-down portion. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the ComboBox. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the currently selected item. + + + + + Gets or sets the index specifying the currently selected item. + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets a value indicating the sort style the of items in the combo box. + + + + Gets or sets the displayed text. + + + + Gets or sets a value indicating whether the ComboBox DropDown will be enabled when it shows. + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + Gets the TextBoxElement which is used in the ComboBox. + + + + + Gets or sets a value indicating whether RadScrollViewer uses UI virtualization. + + + + + Gets or sets the property to display. + + + + + Gets or sets the data source. + + + + + Gets or sets the IFormatProvider that provides custom formatting behavior. + + + + + Gets or sets the format-specifier characters that indicate how a value is to be displayed. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + + Gets or sets value specifying the currently selected item. + + + + + Gets or sets t he property to use as the actual value for the items. + + + + + Occurs when the CaseSensitive property has changed. + + + + + Occurs when the SelectedIndex property has changed. + + + + Fires when the selected value is changed. + + + + Occurs when the Sorted property has changed. + + + + + Represents a date time editor. + + + + + Abstract class that represents basic logic for editor + + + + + Sets the IsInBeginEditMode property. This method is used internally. + + The new value of the IsInBeginEditMode property + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Validates the value currently entered in the editor. + + + + + + Begins the editor initialization process. + + + + + Finishes the editor initialization process. + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Fires the event. + + + + + + Creates a new editor element. + + a if successful + + + + Gets a value indicating whether this is the active editor in grid. + + + + + Gets a value indicating whether the editor is initializing. + + + + + Gets a value indicating whether the editor is in BeginMode mode. + + + + + Gets the element that owns this editor. + + + + + Gets a value indicating whether the editor is in RightToLeft mode. + + + + + Gets the type of the editor value + + + + + Gets or sets the editor value. + + + + + Gets a value indicating whether the editor value is modified. + + + + + Gets the associated with this editor. + + + + + Fires when changing the value of the editor. + + + + + Fires when the editor value has been changed. + + + + + Fires when the editor is validating. + + + + + Fires when the editor has finished validating. + + + + + Fires when a validation error is occurred. + + + + + Initializes a new instance of the RadDateTimeEditor class. + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Gets or sets the minimum date and time that can be selected in the editor. + + + + + Gets or sets the maximum date and time that can be selected in the editor. + + + + + Gets or sets the custom date/time format string. + + + + + Represents a date time editor element used in RadDateTimeEditor + + + + + Represents the RadDateTimePickerElement class + + + + + Represents the IsDropDownShown dependancy property + + + + + Represents RadDateTimePickerElement's constructor + + + + + Represents RadDateTimePickerElement's constructor + + + + + + Creates a new instance of + + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Gets the minimum date value allowed for the DateTimePicker control. + + + + + Gets the date as a string + + string value + + + + Resets the current value + + + + + Gets the current behavior of the control. By default it is showing a calendar in the drop down + + + + + + Sets the current value to behave as a null value + + + + + Raises the FormatChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the NullableValueChanged event + + + + + + Raises the PropertyChanged event + + + + + + Sets the behavior of the date picker + + + + + + Closes the popup if it is open, or shows the popup if it is closed. + + + + + Gets an instance of RadTextBoxElement + + + + Gets or sets a value indicating whether RadDateTimePicker is read-only. + + true if the RadDateTimePicker is read-only; otherwise, false. The default is + false. + 1 + + + + Indicates whether a spin box rather than a drop down calendar is displayed for editing the control's value + + + + + Gets or sets the CultureInfo supported by this RadCalendar object. + Describes the names of the culture, the writing system, and + the calendar used, as well as access to culture-specific objects that provide + methods for common operations, such as formatting dates and sorting strings. + + + The culture names follow the RFC 1766 standard in the format + "<languagecode2>-<country/regioncode2>", where <languagecode2> is + a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> + is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is + "en-US". In cases where a two-letter language code is not available, the + three-letter code derived from ISO 639-2 is used; for example, the three-letter + code "div" is used for cultures that use the Dhivehi language. Some culture names + have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic + script, "-Latn" specifies the Latin script. + The following predefined CultureInfo names and identifiers are + accepted and used by this class and other classes in the System.Globalization + namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Culture NameCulture IdentifierLanguage-Country/Region
"" (empty string)0x007Finvariant culture
af0x0036Afrikaans
af-ZA0x0436Afrikaans - South Africa
sq0x001CAlbanian
sq-AL0x041CAlbanian - Albania
ar0x0001Arabic
ar-DZ0x1401Arabic - Algeria
ar-BH0x3C01Arabic - Bahrain
ar-EG0x0C01Arabic - Egypt
ar-IQ0x0801Arabic - Iraq
ar-JO0x2C01Arabic - Jordan
ar-KW0x3401Arabic - Kuwait
ar-LB0x3001Arabic - Lebanon
ar-LY0x1001Arabic - Libya
ar-MA0x1801Arabic - Morocco
ar-OM0x2001Arabic - Oman
ar-QA0x4001Arabic - Qatar
ar-SA0x0401Arabic - Saudi Arabia
ar-SY0x2801Arabic - Syria
ar-TN0x1C01Arabic - Tunisia
ar-AE0x3801Arabic - United Arab Emirates
ar-YE0x2401Arabic - Yemen
hy0x002BArmenian
hy-AM0x042BArmenian - Armenia
az0x002CAzeri
az-AZ-Cyrl0x082CAzeri (Cyrillic) - Azerbaijan
az-AZ-Latn0x042CAzeri (Latin) - Azerbaijan
eu0x002DBasque
eu-ES0x042DBasque - Basque
be0x0023Belarusian
be-BY0x0423Belarusian - Belarus
bg0x0002Bulgarian
bg-BG0x0402Bulgarian - Bulgaria
ca0x0003Catalan
ca-ES0x0403Catalan - Catalan
zh-HK0x0C04Chinese - Hong Kong SAR
zh-MO0x1404Chinese - Macau SAR
zh-CN0x0804Chinese - China
zh-CHS0x0004Chinese (Simplified)
zh-SG0x1004Chinese - Singapore
zh-TW0x0404Chinese - Taiwan
zh-CHT0x7C04Chinese (Traditional)
hr0x001ACroatian
hr-HR0x041ACroatian - Croatia
cs0x0005Czech
cs-CZ0x0405Czech - Czech Republic
da0x0006Danish
da-DK0x0406Danish - Denmark
div0x0065Dhivehi
div-MV0x0465Dhivehi - Maldives
nl0x0013Dutch
nl-BE0x0813Dutch - Belgium
nl-NL0x0413Dutch - The Netherlands
en0x0009English
en-AU0x0C09English - Australia
en-BZ0x2809English - Belize
en-CA0x1009English - Canada
en-CB0x2409English - Caribbean
en-IE0x1809English - Ireland
en-JM0x2009English - Jamaica
en-NZ0x1409English - New Zealand
en-PH0x3409English - Philippines
en-ZA0x1C09English - South Africa
en-TT0x2C09English - Trinidad and Tobago
en-GB0x0809English - United Kingdom
en-US0x0409English - United States
en-ZW0x3009English - Zimbabwe
et0x0025Estonian
et-EE0x0425Estonian - Estonia
fo0x0038Faroese
fo-FO0x0438Faroese - Faroe Islands
fa0x0029Farsi
fa-IR0x0429Farsi - Iran
fi0x000BFinnish
fi-FI0x040BFinnish - Finland
fr0x000CFrench
fr-BE0x080CFrench - Belgium
fr-CA0x0C0CFrench - Canada
fr-FR0x040CFrench - France
fr-LU0x140CFrench - Luxembourg
fr-MC0x180CFrench - Monaco
fr-CH0x100CFrench - Switzerland
gl0x0056Galician
gl-ES0x0456Galician - Galician
ka0x0037Georgian
ka-GE0x0437Georgian - Georgia
de0x0007German
de-AT0x0C07German - Austria
de-DE0x0407German - Germany
de-LI0x1407German - Liechtenstein
de-LU0x1007German - Luxembourg
de-CH0x0807German - Switzerland
el0x0008Greek
el-GR0x0408Greek - Greece
gu0x0047Gujarati
gu-IN0x0447Gujarati - India
he0x000DHebrew
he-IL0x040DHebrew - Israel
hi0x0039Hindi
hi-IN0x0439Hindi - India
hu0x000EHungarian
hu-HU0x040EHungarian - Hungary
is0x000FIcelandic
is-IS0x040FIcelandic - Iceland
id0x0021Indonesian
id-ID0x0421Indonesian - Indonesia
it0x0010Italian
it-IT0x0410Italian - Italy
it-CH0x0810Italian - Switzerland
ja0x0011Japanese
ja-JP0x0411Japanese - Japan
kn0x004BKannada
kn-IN0x044BKannada - India
kk0x003FKazakh
kk-KZ0x043FKazakh - Kazakhstan
kok0x0057Konkani
kok-IN0x0457Konkani - India
ko0x0012Korean
ko-KR0x0412Korean - Korea
ky0x0040Kyrgyz
ky-KZ0x0440Kyrgyz - Kazakhstan
lv0x0026Latvian
lv-LV0x0426Latvian - Latvia
lt0x0027Lithuanian
lt-LT0x0427Lithuanian - Lithuania
mk0x002FMacedonian
mk-MK0x042FMacedonian - FYROM
ms0x003EMalay
ms-BN0x083EMalay - Brunei
ms-MY0x043EMalay - Malaysia
mr0x004EMarathi
mr-IN0x044EMarathi - India
mn0x0050Mongolian
mn-MN0x0450Mongolian - Mongolia
no0x0014Norwegian
nb-NO0x0414Norwegian (Bokmål) - Norway
nn-NO0x0814Norwegian (Nynorsk) - Norway
pl0x0015Polish
pl-PL0x0415Polish - Poland
pt0x0016Portuguese
pt-BR0x0416Portuguese - Brazil
pt-PT0x0816Portuguese - Portugal
pa0x0046Punjabi
pa-IN0x0446Punjabi - India
ro0x0018Romanian
ro-RO0x0418Romanian - Romania
ru0x0019Russian
ru-RU0x0419Russian - Russia
sa0x004FSanskrit
sa-IN0x044FSanskrit - India
sr-SP-Cyrl0x0C1ASerbian (Cyrillic) - Serbia
sr-SP-Latn0x081ASerbian (Latin) - Serbia
sk0x001BSlovak
sk-SK0x041BSlovak - Slovakia
sl0x0024Slovenian
sl-SI0x0424Slovenian - Slovenia
es0x000ASpanish
es-AR0x2C0ASpanish - Argentina
es-BO0x400ASpanish - Bolivia
es-CL0x340ASpanish - Chile
es-CO0x240ASpanish - Colombia
es-CR0x140ASpanish - Costa Rica
es-DO0x1C0ASpanish - Dominican Republic
es-EC0x300ASpanish - Ecuador
es-SV0x440ASpanish - El Salvador
es-GT0x100ASpanish - Guatemala
es-HN0x480ASpanish - Honduras
es-MX0x080ASpanish - Mexico
es-NI0x4C0ASpanish - Nicaragua
es-PA0x180ASpanish - Panama
es-PY0x3C0ASpanish - Paraguay
es-PE0x280ASpanish - Peru
es-PR0x500ASpanish - Puerto Rico
es-ES0x0C0ASpanish - Spain
es-UY0x380ASpanish - Uruguay
es-VE0x200ASpanish - Venezuela
sw0x0041Swahili
sw-KE0x0441Swahili - Kenya
sv0x001DSwedish
sv-FI0x081DSwedish - Finland
sv-SE0x041DSwedish - Sweden
syr0x005ASyriac
syr-SY0x045ASyriac - Syria
ta0x0049Tamil
ta-IN0x0449Tamil - India
tt0x0044Tatar
tt-RU0x0444Tatar - Russia
te0x004ATelugu
te-IN0x044ATelugu - India
th0x001EThai
th-TH0x041EThai - Thailand
tr0x001FTurkish
tr-TR0x041FTurkish - Turkey
uk0x0022Ukrainian
uk-UA0x0422Ukrainian - Ukraine
ur0x0020Urdu
ur-PK0x0420Urdu - Pakistan
uz0x0043Uzbek
uz-UZ-Cyrl0x0843Uzbek (Cyrillic) - Uzbekistan
uz-UZ-Latn0x0443Uzbek (Latin) - Uzbekistan
vi0x002AVietnamese
vi-VN0x042AVietnamese - Vietnam
+
+
+ + + Gets the default null date + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + When ShowCheckBox is true, determines that the user has selected a value + + + + + Gets or sets the custom date/time format string. + + + + + Gets or sets the format of the date and time displayed in the control. + + + + + Gets or sets the location of the drop down showing the calendar + + + + + Gets or sets the size of the calendar in the drop down + + + + + Indicates whether a check box is displayed in the control. When the check box is unchecked no value is selected + + + + + Gets or sets whether the current time is shown. + + + + + Set ot get which part of the datetime structure will be included when checking for NullValue. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the text that is displayed when the DateTimePicker contains a null + reference. + + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Gets the minimum date value allowed for the DateTimePicker control. + + + + + Gets or sets the minimum date and time that can be selected in the control. + + + + + Gets or sets the maximum date and time that can be selected in the control. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the value of the control has changed + + + + + Occurs when the value of the control has changed + + + + + Occurs when the format of the control has changed + + + + + Occurs when the value of the control is changing + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Occurs before the CheckBox's state changes. + + + + + Occurs when the CheckBox's state changes. + + + + + Occurs when the value of the checkbox in the editor is changed + + + + + Get nested RadCalendar in the popup part of the RadDateTimePicker + + + + + + Show or Hide the nested TimePicker element in the popup part of the RadDateTimePicker + + + + + + Represents a DropDownList editor. + + + + + Initializes a new instance of the RadDropDownListEditor class. + + + + + Gets or sets a value specifying the style of the DropDownList. + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, veritcal or a combination of them. + + + + + Represents a DropDownList editor element. + + + + + Represents a numeric up/down editor. + + + + + Gets or sets the minimum value that could be set in the editor. + + + + + Gets or sets the maximum value that could be set in the editor. + + + + + Gets or sets the value which is added to/subtracted from the current value of the editor. + + + + + Gets or sets the number of decimal places to display in the editor. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the editor. + + + + + Gets or sets the type of the value to use in the editor. + + + + + Represents a numeric up/down editor element. + + + + + Represents a numeric up/down element. The RadSpinEditor + class is a simple wrapper for the numeric up/down element class. The + RadSpinEdit acts to transfer events to and from its + corresponding numeric up/down element instance. The numeric up/down element which is + essentially the numeric up/down element control may be nested in + other telerik controls. + + + + + create child elements + + + + + Creates the button element for the increment button. + + A to be placed in the . + + + + Creates the button element for the decrement button. + + A to be placed in the . + + + + increase or decrease value in the numeric up/down with step value + + + + + + This method is used internally! + + the new flag state. + + + + This method is used internally! + + the new flag state. + + + + Gets or Sets represent the Value in the numeric up/down - this value can be NULL + + + + + Gets or set how to interpret the empty text in the editor portion of the control + if true the empty value will set NULL in NullableValue property + + + + + Gets reference to the SpinControl's Down Button + + + + + Gets reference to the SpinControl's Up Button + + + + + Gets or sets the number of decimal places to display in the RadSpinEdit + + + + + represent the default value in the numeric up/down + + + + + Gets or sets a value indicating whether the RadSpinEdit should display the value it contains in hexadecimal format. + + + + + Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to select values. + + + + + Gets or sets a value indicating whether the text can be changed by the use of the up or down buttons only. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the RadSpinEdit + + + + + Gets contained in the spin editor. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + allow element to be stretched vertically + + + + + represent the decimal in the numeric up/down + + + + + Gets or sets the value which is added to/subtracted from the current value of the spin editor. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + Gets or sets whether RadSpinEditor will be used as a numeric textbox. + + + + + Gets or sets whether by right-mouse clicking the up/down button you set the max/min value respectively. + + + + + set or get the Max numeric value in the numeric up/down + + + + + Gets or sets a value indicating whether the border is shown. + + + + + Gets or sets a value indicating that value will revert to minimum value after reaching maximum and to maximum after reaching minimum. + + + + + Gets or sets a value indicating whether the user can change the value with mouse wheel. + + + true if [enable mouse wheel]; otherwise, false. + + + + + Occurs before the value of the SpinEdit is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Occurs when the user presses a key. + + + + + Initializes a new instance of the GridSpinEditorElement class. + + + + + Represents a text editor. + + + + + Gets or sets the null text for the editor. + + + + + Indicates if all charactes should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Represents a text editor. + + + + + Initializes a new instance of the RadTextBoxEditor class. + + + + + Gets or sets the null value for the editor. + + + + + Indicates if all charactes should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Represents a text box editor element. + + + + + Represents a text box element. The RadTextBox + class is a simple wrapper for the RadTextBoxElement class. All UI and logic + functionality is implemented in the RadTextBoxElement class. + RadTextBox class acts to transfer events to and from + its corresponding RadTextBoxElement instance. The RadTextBoxElement may be nested + in other telerik controls. + + + + Initializes a new instance of the RadTextBoxElement class. + + + + Initializes a new instance of RadTextBoxElemenet + + + + + + Raises the MultilineChanged event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextChanging event. + + + + + Raises the TextChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Raises the ModifiedChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the AcceptsTabChanged event. + + + + + Gets an instance of the corresponding RadTextBoxItem + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + Gets or sets a value indicating whether the border is shown. + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text. + + + + + Occurs when the value of the AcceptsTab property has changed. + + + + + Occurs when the value of the HideSelection property changes. + + + + + Occurs when the value of the Modified property has changed. + + + + + Occurs when the value of the Multiline property has changed. + + + + + Occurs when the ReadOnly property changes. + + + + + Occurs when the value of the TextAlign property has changed. + + + + + Occurs + when text is being changed. + + + + + Occurs + when text has changed. + + + + + Represents a TimePicker editor. + + + + + This class manages all opened popups per UI thread. + + + + + Adds a popup form to the popups of the PopupManager and + registers a message hook if the form provided is the first one. + + The popup to add. + + + + Removes the provided popup from the popups of the PopupManager and unregisters the message hook + if there are no more popups. + + The popup to remove. + + + + Attempts to close an implementation. + + The popup to close. + + + + Closes all popups managed by the PopupManager. + + Clarification why all popups need to be closed. + + + + Closes all popups from a leaf to the root. + + The reason why popups are closed. + The leaf popup from which to start closing the hierarchy. + + + + Checks if the PopupManager monitors the provided popup. + + The popup to check for. + + + + + This method begins to close all IPopupControl instances + starting from the end of the collection. If a IPopupControl + cannot be closed, the iteration stops and all popups previously added + to the collection will not be closed. + + + + + Gets the count of the IPopupControl instances + currently registered in the PopupManager. + + + + + The popup which was last activated. + + + + + Gets the only instance of the PopupManager class. Other instances can not be created. + + + + + Represents a calculator editor element used in calculator editors. + + + + + Encapsulates the UI representation and functionality of RadCalculatorDropDown. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + + + + Gets or sets the calculator value. + + + + + Gets or sets the editor content element. + + + + + Gets or sets the arrow button. + + + + + Gets or sets the popup. + + + + + Gets the content element. + + + + + Gets the memory element. + + + + + Gets or sets the default popup width. + + + + + Gets or sets the default popup height. + + + + + Gets or sets the minimum popup width. + + + + + Gets or sets the minimum popup height. + + + + + Gets RadCalculatorElement FillPrimitive + + + + + Gets the RadCalculatorElement BorderPrimitive + + + + + Gets or sets a value indicating whether RadCalculatorDropDownElement is read only. + + + true if RadCalculatorDropDownElement is read only; otherwise, false. + + + + + Fires when the value of the calculator is changing. + + + + + Fires when the value of the calculator is changing. + + + + + Fires after the color dialog is closed. + + The event arguments. + + + + Fires right after the editor value is changed. + + The event arguments. + + + + Fires right before the editor value is changed. + + The event arguments. + + + + Fires when the is clicked. + + The event arguments. + + + + Gets the value of the editor. + + + + + Gets the that shows the color in the editor. + + + + + Gets or set the that is displayed when the button is clicked. + + + + + Gets the that opens the . + + + + + Gets or sets a value indicating if the user is allowed to type in the text field. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Occurs after the editor has changed the value during the editing process. + + + + + Occurs when the dialog window is closed. + + + + + Represents a date time editor element used in date time editors. + + + + + Represents a class that handles append auto-complete mode in + + + + + Owner Property + + + + + LimitToList Property + + + + + Initializes a new instance of the class. + + The element. + + + + Sets the editable element text. + + Index of the item. + + + + Represents a DropDownList element used in drop down list editors. + + + + + Constructor + + There is no mask applied by default + + + + handles the key press + + + + + + Fires the ValueChanged event + + + + + + Fires the ValueChanging event + + + + + + Determines whether to add minus sign to the value. + + + + + + + Format the specified text using the specified mask + + The mask to use + The text to format + The formatted text string + There are four overloads for this method. + + + + Format the specified text using the specified mask and prompt + character. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The formatted text string. + + + + Format the specified text using the specified mask, prompt + character, and culture information. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The culture information to use. If null, + the current culture is used. + The formatted text string. + + + + Format the specified text using the specified mask, prompt + character, and culture information and return the result + values. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The culture information to use. If null, + the current culture is used. + The result of formatting the text. + The position related to the result + hint. + The formatted text string. + + + + Gets the text which is in the clipboard + + + + + + This is used to set or get the label text. + + When set, the text is formatted according to the current + masked text provider settings. If the mask is empty, the text is + set as-is. When retrieved, the text is returned in its formatted + state. Use to get the text without + the mask applied. + + + + Represent the RadMaskedEditBox ContextMenu + + + + Gets or sets a value that determines whether literals and prompt characters + are included in the formatted string. + One of the values. The + default is . + Property + set with a value that is not + valid. + + + + This returns a clone of the masked text provider currently being + used by the masked label control. + + + + + This returns the result hint for the last assignment to the + property. + + If the assigned text could not be properly formatted, + this will contain a hint as to why not. Positive values + indicate success. Negative values indicate failure. + + + + This returns the result hint position for the last assignment to + the property. + + If the assigned text could not be properly formatted, + this will contain the position of the first failure. + + + + This read-only property returns the unmasked copy of the text + + + + + This is used to set or get the culture information associated with + the masked label. + + This is thrown if the + culture value is null + + + + This is used to set or get the mask for the label text + + + + + This is used to set or get the prompt character for display + in the label text. + + The default is an underscore (_). + + + + This is used to set or get whether or not prompt characters are + also displayed in the label text. + + By default, prompt characters are not shown. + + + + Gets or sets the mask type. + + + + + Gets or sets the edited value + + + + + Gets or set a value indicating whether end users can set the value to NULL. + This can be achieved by pressing Ctrl + Del or Ctrl + 0 key combinations. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + Gets or sets the mask type. + + + + + Represents a numeric up/down element used by spin editors.. + + + + + Initializes a new instance of the RadSpinEditorElement class. + + + + + Represents a textbox editor element used in RadTextBoxEditor + + + + + Represent a continuous band in Linear Gauge + + + + Gets or sets a value indicating element visibility. + + Setting this property affects also the children of the element. Collapsed means the element and its children would not be painted and would not be + calculated in the layout. + This property has no effect in design-time on objects. + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + The RadLinearGauge control is designed to display a a single quantitative measure. + + + + + The RadLinearGauge control is designed to display a simple value within a definite range. + + + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores to a file RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML reader, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + The ValueChanged event fires when the value is modified. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Specifies the gauge's value + + + + + Set or Get Gauge Orientation + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets the serialization info for RadRadialGauge used by Save/Load loyout methods to persist grid settings to/from XML. + By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + This portion of the bullet graph displays the primary data. + + + + + Presents a value which should be less visually dominant than the featured measure, but easy to see in relation to the featured measure. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Represents the scale labels. + + + + + Specifies the font size. Default value is 8. + + + + + Specifies the start value from which the labels are displayed. + + + + + Specifies the end value to which the labels are displayed. + + + + + Controls how far according to the gauge's arc the labels are rendered + + + + + Specifies the format of the label's value. + + + + + Controls how many labels will be displayed next ticks for the specified range. + + + + + Represent a continuous band in Linear Gauge + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + Present additional information for the RadLinearGauge. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Controls whether the specific ticks are circle or not. + + + + + Specifies the value offset of the needle according to the gauge's value. + + + + + Indicates whether the needle's value is bound to the gauge's Value. + + + + + Specifies the inner radius of the needle's start point. + + + + + Specifies the value with which the needle juts out from the center point. + + + + + Specifies the outer radius of the needle's start point. + + + + + Controls the needle width. + + + + + Specifies the needle's value. + + + + + Controls how long the needle will be rendered. + + + + + Present additional information for the RadLinearGauge, e.g. current value + + + + + Indicates whether the single label's text is bound to the gauge's Value. + + + + + Controls the label's location (x, y) according to the center point. LocationPercentage accepts values withing the range [(-1,-1), (1,1)]. + + + + + Specifies the label size. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Represents the scale ticks. + + + + + Specifies at which index the visible ticks range will start. + + + + + Specifies at which index the visible ticks range will end. + + + + + Controls how far according to the gauge's arc the ticks will be rendered. + + + + + Specifies the width of ticks. + + + + + Specifies the color for the ticks + + + + + Specifies the ticks back length towards the center point. + + + + + Controls the ticks length. + + + + + Specifies how many ticks will be displayed. + + + + + Represent main needle element. This element is container for all other elements in the Gauge + + + + + The ValueChanged event fires when the value is modified. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Specifies the gauge's value + + + + + Set or Get Gauge Orientation + + + + + Represent a continuous band spanning the entire sweep angle. + + + + + Controls the radius of the arc. + + + + + The width of the arc. + + + + + The start of the arc. + + + + + The end value of the arc. + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents the scale labels displayed next to the ticks. + + + + + Specifies the font size. Default value is 8. + + + + + Specifies the start value from which the labels are displayed. + + + + + Specifies the end value to which the labels are displayed. + + + + + Controls how far according to the gauge's arc the labels are rendered + + + + + Specifies the format of the label's value. + + + + + Controls how many labels will be displayed next ticks for the specified range. + + + + + Represent a scale indicator that points to a value. + + + + + Specifies the value offset of the needle according to the gauge's value. + + + + + Indicates whether the needle's value is bound to the gauge's Value. + + + + + Specifies the inner radius of the needle's start point. + + + + + Specifies the value with which the needle juts out from the center point. + + + + + Specifies the outer radius of the needle's start point. + + + + + Controls the needle width. + + + + + Specifies the needle's value. + + + + + Controls how long the needle will be rendered. + + + + + Present additional information for the RadRadialGauge, e.g. current value + + + + + Indicates whether the single label's text is bound to the gauge's Value. + + + + + Controls the label's location (x, y) according to the center point. LocationPercentage accepts values withing the range [(-1,-1), (1,1)]. + + + + + Specifies the label size. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Represents the scale ticks. + + + + + Specifies at which index the visible ticks range will start. + + + + + Specifies at which index the visible ticks range will end. + + + + + Controls how far according to the gauge's arc the ticks will be rendered. + + + + + Controls whether the specific ticks are circle or not. + + + + + Specifies the width of ticks. + + + + + Specifies the color for the ticks + + + + + Specifies the ticks back length towards the center point. + + + + + Controls the ticks length. + + + + + Specifies how many ticks will be displayed. + + + + + The RadRadialGauge control is designed to display a value within a definite range + + + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores to a file RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML reader, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + The ValueChanged event fires when the value is modified. + + + + + Controls the RadRadialGauge's offset in vertical direction. + + + + + Controls the RadRadialGauge's offset in horizontal direction. + + + + + Specifies the gauge's value + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets the serialization info for RadRadialGauge used by Save/Load loyout methods to persist grid settings to/from XML. + By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Represent main needle element. This element is container for all other elements in the Gauge + + + + + The ValueChanged event fires when the value is modified. + + + + + Specifies the gauge's value + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Controls the RadRadialGauge's offset in vertical direction. + + + + + Controls the RadRadialGauge's offset in horizontal direction. + + + + + This class represents the custom editor + shown when the FadeAnimationType of the popup + is adjusted in the Visual Studio Designer. + + + + + Creates an instance of the FadeAnimationTypeEditorUI class. + This class represents the control used to set the + FadeAnimationType property while in the Visual Studio + Designer. + + The inital value of the property. + + + + Gets the result of the editor execution. + + + + + This class stores information about a close request sent to an . + The class stores the reason for the close request, information about the operation result, + and an instance to a context. + + + + + Creates an instance of the class. + The default value of the Closed property is true. + + A value from the enum + that determines the reason for the close request. + A request context. + + + + Defines whether the request is executed or not. + + + + + The reason for the close request. + + + + + The context associated with this the close request. + + + + + This class represents a base class for popup controls + used by editors like ComboBox, MultiColumnComboBox etc. + + + + + This class represents a pop-up form that exposes sizing-grip and + thus can be resized by the user. + + + + + Creates an instance of the RadSizablePopupControl class. + + The owner of the popup-form + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets the element that represents the sizing grip + of the popup. + + + + + Gets the DockLayoutPanel that holds the sizing grips. + + + + + Creates an instance of the RadEditorPopupControlBase class. + This class is used in all popup-powered controls. + + An instance of the RadItem class that + represents the owner of the popup. + + + + Gets or sets the header text of the drop-down menu. + + + + + Gets or sets the header image of the drop-down menu. + + + + + Gets an instance of the + class that represents layout panel that provides scrolling functionality. + + + + + Gets or sets the left column minimal width. + + + + + Gets or sets the right column minimal width. + + + + + This class represents the Telerik's Form control. + You can create RadForm controls by inheriting from this class. + + + + + Represents a RadFormControl. RadFormControlBase is an abstract class and is base class for + all telerik windows forms. + + + + + Determines whether the control and all its child elements should use the new layout system. + + + + + + Loads the element tree. While not loaded, no layout operations are allowed upon the tree. + By default, the tree will be loaded when the control is displayed for the first time. + + + + + Loads the element tree using the specified desired size. + + + + + + Notifies that the control is about to be visualized. + + + + + + In this override we reset the RootElement's BackColor property + since the DocumentDesigner class sets the BackColor of the + Form to Control when initializing and thus overrides the theme. + + + + + + Calls the base OnPaint implementation. This method + can be used by the form behavior to call the base + implementation in case it is needed. + + + + + Calls the base OnPaintBackground implementation. This method + can be used by the form behavior to call the base + implementation in case it is needed. + + + + + Processes a dialog box key. + + true if the keystroke was processed and consumed by the control; otherwise, false to allow further processing. + + + One of the values that represents the key to process. + + + + Updates which button is the default button. + + + + Determines whether the BackColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the specified RadProperty should be serialized. + + + + + + + Called to initialize the behavior of the form. + + + + + + Resets the behavior associated with the Form. This method is used internally. + + Determines whether the InitializeFormBehavior method + will be called after the p + + + + Processes a focus request from the specified element. + + The element that requested the focus. + True if focus is approved, false otherwise. + + + + Processes a capture request from the specified element. + + The element which requested the capture. + + True if the capture request is approved, otherwise false. + + + + Gets a value indicating if control themes by default define PropertySettings for the specified element. + If true is returned the ThemeResolutionService would not not set any theme to the element to avoid duplicatingthe style + settings of the element. + + + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disbaled for this control. + + + + + Gets a boolean value which determines + whether the control is loaded. + + + + + Gets or sets the FormBorderStyle of the Form. + + + + + Gets the behavior associated with this form if any. + + + + + Gets or sets a boolean value indicating whether the Form + customizes its NC area when under Vista with Composition enabled. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this speciffic control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets or sets the Font of the control. This is actually the Font property of the root element. + + + + + Occurs when a RadItem instance iside the RadControl requires ToolTip text. + + + + + Occurs prior the ScreenTip of a RadItem instance inside the RadControl is displayed. + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Prevent the Form from getting the mouse capture when the capture is requested + by one of the system buttons. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + The text associated with this control. + + + + + Gets the RadFormElement instance that represents + the element hierarchy which builds the RadForm appearance. + + + + + Gets or sets the scaling mode of the form's icon. + + + + + Gets or sets a boolean value indicating whether the Form + customizes its NC area when under Vista with Composition enabled. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Enable or Disable the selection of the next or prev. part of the date with arrow keys + + + + + Gets or sets the date and time format used by + RadDateInput. + + + A string specifying the date format used by RadDateInput. The + default value is "d" (short date format). + + + + private void Page_Load(object sender, System.EventArgs e) + { + RadDateInput1.DateFormat = "M/d/yyyy"; //Short date pattern. The same as "d". + } + + + Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load + RadDateInput1.DateFormat = "M/d/yyyy" 'Short date pattern. The same as "d". + End Sub + + + + + + Gets or sets a value that indicates the end of the century that is used to interpret + the year value when a short year (single-digit or two-digit year) is entered in the input. + + + The year when the century ends. Default is 2029. + + + Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. + For example 55 will be interpreted as 1955 but 12 -- as 2012 + + + + + Gets a value that indicates the start of the century that is used to interpret + the year value when a short year (single-digit or two-digit year) is entered in the input. + + + The year when the century starts. Default is 1930. + + + Having a value of 1930 indicates that a short year will be interpreted as a year between 1930 and 2029. + For example 55 will be interpreted as 1955 but 12 -- as 2012 + + + + + Removes the assigned characters between the specified positions from the formatted + string. + + true if the character was successfully removed; otherwise, false. + + + The zero-based index of the first assigned character to remove. + + + The zero-based index of the last assigned character to remove. + + + + + Gets a value indicating whether all required inputs have been entered into the formatted string. + + true if all required input has been entered into the mask; otherwise, false. + + + + + Initializes a new instance of the NumericTextBoxProvider> + class using the specified mask and culture. + + + A that represents the input mask. + + + A that is used to set region-sensitive + separator characters. + + + + + + . + Replaces all ocurances of given parameters with string.Empty. + + + + + Gets the culture that determines the value of the localizable separators and + placeholders in the input mask. + + + A containing the culture information + associated with the input mask. + + + + + Gets the input mask. + + + A containing the full mask. + + + + + Raises the event. + + + An that contains event data. + + + + + Gets a value indicating whether all required inputs have been entered into the formatted string. + + true if all required input has been entered into the mask; otherwise, false. + + + + + Gets or sets the text insertion mode of the masked text box control. + + + An value that indicates the current insertion mode. The default is . + + + An invalid value was supplied when setting this property. + + + + + Occurs after the insert mode has changed. + + + + + Gets a value that specifies whether new user input overwrites existing input. + + true if will overwrite existing characters as the user enters new ones; false if will shift existing characters forward. The default is false. + + 1 + + + + Uses a mask to distinguish between proper and improper user input + + + + + Clears all text from the text box control and Value. + + + + + Clears information about the most recent operation from the undo buffer of the + text box. + + + + + selects the whole text + + + + + Fires the ValueChanging event + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a mask expression. + + + + + Gets or sets the mask type. + + + + + Gets or sets the value associated to the mask edit box + + + + Gets or sets a value that determines whether literals and prompt characters + are included in the formatted string. + One of the values. The + default is . + Property + set with a value that is not + valid. + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + Gets or sets the horizontal alignment of the text. + + + + + Gets or sets + a value indicating whether the defined shortcuts are enabled. + + + + + Gets or sets + the starting point of text selected in the text box. + + + + + Gets or sets a value indicating whether the RadTextBox control has been modified + by the user since the control was created or since its contents were last set. + + + + + Gets or sets + a value indicating whether this is a multiline TextBox control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Gets or sets + a value indicating whether the contents of the TextBox control can be + changed. + + + + + Gets or sets + which scroll bars should appear in a multiline TextBox control. + + + + + Gets or sets a value indicating the currently selected text in the + control. + + + + + Gets or sets + the number of characters selected in the text box. + + + + + Gets or sets a value indicating whether the selected text remains highlighted + even when the RadTextBox has lost the focus. + + + + + Gets or sets + the lines of text in multiline configurations. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline RadTextBox + control creates a new line of text in the control or activates the default button for + the form. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text + box control types a TAB character in the control instead of moving the focus to the + next control in the tab order. + + + + + Gets or sets a value indicating whether the RadTextBox control modifies the + case of characters as they are typed. + + + + + Gets or sets the current culture associated to the RadMaskBox + + + + + Gets or set a value indicating whether end users can set the value to NULL. + This can be achieved by pressing Ctrl + Del or Ctrl + 0 key combinations. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Represents an application drop down menu in Office 2007 style. + + + + + + Represents a drop down button. Essentially the RadDropDownButton class is a + simple wrapper for + RadDropDownButtonElement. + + You can set items that appear when the drop down button is pressed. Also you + can configure the visual appearance in numerous ways through themes. + + The RadDropDownButtonElement class + implements all UI and logic functionality. The RadDropDownButton acts to + transfer the events to and from its + RadDropDownButtonElementinstance. + + + + + Initializes a new instance of the RadDropDownButton class. + + + + Override this method to create custom main element. By default the main element is an instance of + RadDropDownButtonElement. + + Instance of the one-and-only child of the root element of RadDropDownButton. + + + + + + + + + + + + + + + + + + Gets or sets the text value that is displayed on the button. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the instance of RadDropDownButtonElement wrapped by this control. RadDropDownButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDropDownButton. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets a collection representing the right column items of RadApplicationMenu. + + + + + Gets a collection representing the button items of RadApplicationMenu. + + + + + Gets or sets the right column width + + + + + Gets or sets the whether RadApplicationMenu will have TwoColumnDropDownMenu. + + + + + Represents a rad dropdown button element. The + RadDropDownButton control is a simple wrapper + for the RadDropDownButtonElement. All UI and logic functionality is implemented in + RadDropDownButtonElement class. The + RadDropDownButton acts to transfer events to + and from its RadDropDownButtonElement instance. RadDropDownButtonElement can be + nested in other telerik controls. + + + + Initializes a new instance of the DropDownButtonElement class. + + + Determines whether the event is passed up in the control hierarchy. + + + + Shows the drop down menu at given location + + The upper left corner of the drop down in screen coordinates + + + Shows the drop down menu. + + + Hides the drop down menu. + + + + Raises the DropDownOpening event. + + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosed event. + + + + + Fires when the drop-down of the button is about to close. + + An instance of the + class that contains information about the event. + + + + Gets the drop down menu + + + + + Gets the arrow button + + + + + Gets the action button + + + + + Gets or sets the minimum size of the arrow button + + + + + Gets or sets a value indicating the position where the arrow button appears in drop-down button. + + + + + Gets or sets a value indicating the direction in which the dropdown item emerges from its parent container. + + + + + Gets or sets the expand arrow button + + + + + Gets a value indicating whether the drop down is shown + + + + + Gets the Items collection where you can add and remove items from the + DropDownButton. + + + + + Indicates whether the DropDown of the button should have two columns or one column. + + + + + Gets or sets a value indicating whether an arrow button is displayed on the drop-down buuton. + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Specifies the logical combination of image and text primitives in the element. + + + + + Gets a value indicating whether the button item is in the pressed state. + + + + + Gets the border element + + + + + Occurs when the drop-down is opening. + + + + + Occurs when the drop-down has opened. + + + + + Occurs when the drop-down window has closed. + + + + + Occurs when the drop-down window is about to close. + + + + + Gets or sets value indicating whether DropDownMenu will have the same class name as the owner control or its own. + True means that the same class name will be used as the control that opened the dropdown. + + + + + Gets or sets the whether RadApplicationMenu will have TwoColumnDropDownMenu. + + + + + Represents an application drop down menu in Office 2007 style. + + + + + Gets or sets the right column width + + + + + Gets a collection representing the right column items of RadApplicationMenu. + + + + + Gets a collection representing the button items of RadApplicationMenu. + + + + + Represents a context menu + + + + + Displays the context menu in its default position. + + + + + Displays the context menu relative to the specified screen location. + + The horizontal screen coordinate, in pixels. + The vertical screen coordinate, in pixels. + + + + Displays the context menu relative to the specified screen location. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified screen location and with the specified direction. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the context menu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified control location and with the specified direction. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the context menu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified RadItem location and with the specified direction. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified RadItem location and + with specified direction and offset according to the owner. + + The RadItem that is the reference point for the RadDropDownMenu position. + Specifies the offset from the owner in pixels. + One of the RadDirection values. + + + + Raises the DropDownOpening event. + + The event arguments + + + + Raises the DropDownClosing event. + + The event arguments + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosed event. + + + + + Occurs when the drop down is opening. + + + + + Occurs when the drop down is closing. + + + + + Occurs when the drop down is opened. + + + + + Occurs when the drop down is closed. + + + + + Gets menu items collection + + + + + Gets or sets control's preferred theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Gets menu drop down panel + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disabled for this control. + + + + + This class represents the drop-down menu + used in the + component. + + + + + Represents a base class for the RadMenuItem class. + + + + + Initializes a new instance of the RadMenuItemBase class. + + + + + Calls the ShowPopup method and displays the child items in a popup window. + + + + + Closes the RadMenuItemBase popup. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An instance of the class + that contains information about the event. + + + + Raises the event. + + An that contains the event data. + + + + Occurs after the menu item dropdown opens. + + + + + Occurs before the menu item dropdown opens. + + + + + Occurs after the menu item dropdown closes. + + + + + Occurs before the popup is creating. + + + + + Occurs before the popup is closed. + + + + + Gets a value indiciating that the popup containing this menu item's children is shown. + + + + + Gets or sets the direction of the popup which is opened by this menu item. + + + + + Gets a collection of the child items. + + + + + Gets or sets menu header column text + + + + + Gets or sets menu header column image + + + + + Returns the control that owns this item. This can be a RadMenu or RadDropDownMenu. + + + + + Gets a values indicating whether this item has child items to show. + + + + + Gets the drop down menu associated with this menu item + + + + + Gets a value indicating whether this item has child items. + + + + + Gets a value indicating whether this item is in the root items collection. + + + + + Gets or sets the parent menu item. + + + + + Gets the next child item in the parent item's Items collection. + + + + + Gets the previous child item in the parent item's Items collection. + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Provides a reference to the ButtonElement element in the menu item. + + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets the ImagePrimitive of this RadMenuHeaderItem. + + + + + Gets the FillPrimitive of this RadMenuHeaderItem. + + + + + Gets the BorderPrimitive of this RadMenuHeaderItem. + + + + + Gets the TextPrimitive of this RadMenuHeaderItem. + + + + + Represents a menu item which has a combobox placed inside. + + + + + Provides a reference to the hosted control in the menu item. + + + + + Creates an instance of the RadMenuItemPopup class. + This class represents the popup which is used to display menu + items in the RadMenu control. + + An instance of the RadItem class which represents the + owner of the popup. + + + + Defines the animation type used in popups + + + + + No animation is applied. + + + + + The control fades in upon showing. + + + + + The control uses easing animation. + + + + + Both easing and fade animation will be applied. + + + + + Defines the type of fade animation. + + + + + No fade animation is applied. + + + + + The control fades in upon showing. + + + + + The control fades out upon closing. + + + + + Defines the horizontal alignment of the popup + based on the alignment rectangle passed + in the ShowPopup method. + + + + + The left edge of the popup is aligned to the left edge of the alignment rectangle. + + + + + The left edge of the popup is aligned to the right edge of the alignment rectangle. + + + + + The right edge of the popup is aligned to the left edge of the alignment rectangle. + + + + + The right edge of the popup is aligned to the right edge of the alignment rectangle. + + + + + Defines the vertical alignment of the popup + based on the alignment rectangle passed + in the ShowPopup method. + + + + + The top edge of the popup is aligned to the top edge of the alignment rectangle. + + + + + The top edge of the popup is aligned to the bottom edge of the alignment rectangle. + + + + + The bottom edge of the popup is aligned to the top edge of the alignment rectangle. + + + + + The bottom edge of the popup is aligned to the bottom edge of the alignment rectangle. + + + + + Defines the popup alignment correction mode. + The values of this enumerator define how the popup alignment + is adjusted when the default aligning routine is not able + to properly position the popup due to lack of screen space. + + + + + No adjustments to the coordinates are applied. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen, whereby + the popup edge is aligned with an edge of the alignment rectangle. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen, whereby + the popup edge is aligned with an outer edge of the alignment rectangle. + The popup does not cross the alignment rectangle bounds. + + + + + This enum defines how the size of a is + fitted to the screen bounds. + + + + + The size of the popup is not fit to the bounds of the screen. + + + + + The width of the popup is fit to the available space on the screen. + + + + + The height of the popup is fit to the available space on the screen. + + + + + This eunm defines the possible screen space usage modes. + + + + + The whole screen is used when positioning the popup. + + + + + The working area of the screen is used when positioning the popup. + + + + + An enum that defines the possible overlap modes which are + used to position the popup when its location cannot be adjusted so + that it meets all alignment and alignment correction requirements. + + + + + The popup's bounds can overlap with the alignment rectangle. + + + + + The popup will be snapped to the first possible outer edge of the alignment rectangle so that it does not overlap it. + The order of the considered edges depends on the popup alignment settings. + + + + + The RadScrollablePanel control can be used as a container for different UI elements. + This control is powered by the Telerik Presentation Framework and supports + gradient backgrounds, shapes and theming. This control supports also theming + of the scrollbars. + + + + + This method inserts the scrollbars and the container + in the Controls collection of this control. + + + + + Calculates the non-client margin of the control + based on the radius of the round rect shape. + + An instance of the struct + which represents the left, top, right and bottom margin. + + + + This method initializes the scrollbars and the + container control. + + + + + Resizes the panel to fit its contents. + + + + + Gets or sets a value indicating whether the focused control inside the RadScrollablePanel + will be automatically scrolled into view when gaining focus. + + + + + Gets or sets the state of the vertical scroll bar which indicates + whether it will be always visible(), + always hidden() + or determined by the content() - default + + + + + Gets or sets the state of the horizontal scroll bar which indicates + whether it will be always visible(), + always hidden() + or determined by the content() - default + + + + + Gets the current client area margin + of the control. + + + + Gets the default size of the control. + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets an instance of the + class which represents the main element of the control. + + + + + Gets the container panel that holds + all the components added to the panel. + + + + + Gets the vertical scrollbar of the control. + + + + + Gets the horizontal scrollbar of the control. + + + + + This property is not relevant for this class. + + + + + This property is not relevant for this class. + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + /// + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + + + + + + + + + + + + + + + + + + + + + ArrowButton Property + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + Represents an interface for printable objects. + + + + + Called when the printing begins. + + The that has initiated the printing. + The event args. + The number of pages. + + + + Called when the printing ends. + + The that has initiated the printing. + The event args. + [false] if cancel + + + + Prints the page with the specified number. + + The number of the current page. + The that has initiated the printing. + The event args. + [true] if there are more pages, [false] otherwise + + + + Gets a print settings dialog that is specific for the printable object. + + The that has initiated the printing. + The dialog. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the associated with the event. + + + + + Gets the graphics object which is used for painting. + + + + + Gets the bounds in which the element is being painted. + + + + + Represents an UI dialog for editing print settings. + + + + + Loads the settings when the dialog is shown. + + + + + Saves all settings from the dialog into the . + + + + + Creates the specific control for editing the settings of the printed control. + + The that will be displayed on the first page of this dialog + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the page view control of the dialog. + + The page view. + + + + Gets the shown in this dialog. + + + + + If [true] a Preview button is shown, otherwise an OK button is shown. + + + + + Defines a reusable object that sends output to a printer and manages the whole printing process, + when printing from an application. Can be associated with any object that implements the interface. + + + + + Prints the header part of the page. + + The printing arguments. + + + + Prints the footer part of the page. + + The printing arguments. + + + + Prints the watermark of the page. + + The printing arguments. + + + + Called when the associated printable object has changed. + + + + + Parses a given string for special words. + + The string. + The parsed string. + + + + Gets or sets the currently selected page. This page will be the first to be printed when the PrintRange + is set to Current or Selection. + + + + + Gets or sets the count of the selected pages. This indicates how many pages will be printed when the PrintRange + is set to Selection. + + + + + Gets or sets the font of the page header. + + + + + Gets or sets the font of the page footer. + + + + + [true] if the LeftHeader and RightHeader should be reversed on even pages, [false] otherwise. + + + + + [true] if the LeftFooter and RightFooter should be reversed on even pages, [false] otherwise. + + + + + Gets or sets the text that will be printed near the upper left corner of the page. + + + + + Gets or sets the text that will be printed near the upper right corner of the page. + + + + + Gets or sets the text that will be printed at the top center of the page. + + + + + Gets or sets the text that will be printed near the bottom left corner of the page. + + + + + Gets or sets the text that will be printed near the bottom right corner of the page. + + + + + Gets or sets the text that will be printed at the bottom center of the page. + + + + + Gets or sets the height of the header area. + + + + + Gets or sets the height of the header area. + + + + + Gets or sets the object, associated with this document. + + + + + Gets the number of the page being printed. + The value of this property changes during the printing process. + + + + + Gets the total page count. The value is populated when the printing process begins. + + + + + Indicates whether the printing process is running. + + + + + Draws the element using the object in the given rectangle. + + The graphics object used for the drawing. + The draw area. + + + + Draws the element using the object in the given rectangle. + + The graphics object used for the drawing. + The draw area. + + + + Gets or sets the padding arround the text. + + + + + Gets or sets a value indicating whether the text should be drawn. + + + + + Gets or sets the rotation angle of the element. + + + + + Gets or sets the scale factors of the element. + + + + + Gets or sets whether a fill should be drawn. + + + + + Gets or sets whether a border should be drawn. + + + + + Gets or sets whether the cell is right to left. + + + + + Gets or sets the fore color of the element. + + + + + Gets or sets the back color of the element. + + + + + Gets or sets the back color of the element. + + + + + Gets or sets the text alignment of the element. + + + + + Gets or sets the text to be drawn. + + + + + Gets or sets the font used for drawing the text. + + + + + Gets or sets the string trimming mode. + + + + + Gets or sets the string format flags. + + + + + Gets or sets the image of the element. + + + + + Gets or sets the image layout. + + + + + Gets or sets the image alignment + + + + + Represents a series of points that will define the shape of the element. + + + + + Gets or sets a value indicating whether html text will be interpreted or will be printed directly. + + + + + A control which is responsible for displaying print documents. + + + + + Gets or sets the border color for each page. + + + + + Gets or sets the inner border color for each page. + + + + + Gets or sets the current scroll position. + + + + + A dialog for previwing and setting before printing. + + + + + Scrolls the preview with a specified offset. + + The offset. + + + + Sets the zoom factor of the preview. + + The zoom factor. + + + + Localizes the strings in the dialog with strings from the current + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the that should be previewed. + + + + + Gets the RadMenu instance of the form. + + + + + Gets the RadCommandBar instance of the form. + + + + + Gets the that is shown by this dialog. + + + + + Gets the that is shown by this dialog. + + + + + Checks whether the watermark should be printed on the given page. + + The page to check. + True if the watermark should be printed, otherwise false. + + + + Gets a list of integer values for the string Pages. + + + + + Gets or sets a value indicating whether the watermark is printed on all pages. + + + + + Gets or sets a string which indicates on which pages the watermark should be printed. + + + + + Gets or sets the fore color of the text. + + + + + Gets or sets the text. + + + + + Gets or sets the font of the text. + + + + + Gets or sets a value indicating whether the watermark is drawn under or over the printed content. + + + + + Gets a value indicating whether there is a text to be printed. + + + + + Gets or sets the angle at which the text is rotated. + + + + + Gets or sets the text opacity. + + + + + Gets or sets the text horizontal offset. + + + + + Gets or sets the text vertical offset. + + + + + Gets a value indicating whether there is an image to be printed. + + + + + Gets or sets the path to the image. + + + + + Gets or sets the image opacity. + + + + + Gets or sets the image horizontal offset. + + + + + Gets or sets the image vertical offset. + + + + + Gets or sets a value indicating whether the image should tiled. + + + + + Represent a stack layout element + + + + + Arranges the items horizontally. + + The final size. + + + + Arranges the items horizontaly. + + The client rect. + The final size. + Width of the stretchable. + The spacing. + + + + Arranges the items vertically. + + The final size. + + + + Arranges the element. + + The element. + The client rect. + The final rect. + The final size. + + + + Aligns the rectangle according to orientation and element's alignment. + + The element. + The arrange rect. + + + + + Gets or sets the item orientation. + + + The orientation. + + + + + Gets or sets the element spacing between items. + + + The element spacing. + + + + + Gets or sets the right to left mode. + + + The right to left mode. + + + + + Gets or sets a value indicating whether to fit the available size. + + + true if fit the available size; otherwise, false. + + + + + Gets or sets a comparer to be used for defining the order of the child elements. + + + + + Right to left modes in + + + + + Represents a selectable option displayed on a or + in a drop down panel. + + + + + Initializes a new instance of the RadMenuItem class. + + + + + Initializes a new instance of the RadMenuItem class using the displayed + text. + + + + + + Initializes a new instance of the RadMenuItem class using the displayed text. + + + + + + + Raises the ToggleStateChanging event. + + + + + Raises the ToggleStateChanged event. + + + + + Determines whether the arrow is currently displayed for this item. + + + + + Occurs before the item's toggle state changes. + + + + + Occurs when the item's toggle state changes. + + + + + Gets or sets the text that appears as a HintText for a menu item. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + + Gets or sets if the arrow is shown when the menu item contains sub menu. + + + + + Gets or sets the font of the descrition text of the RadMenuItem. + + + + + Gets the visibility of description text element + + + + + Gets or sets the description text associated with this item. + + + + + Gets or sets a value indicating whether a menu item should toggle its CheckState on mouse click. + + + + + Gets the FillPrimitive of RadMenuItem responsible for the background appearance. + + + + + Gets the BorderPrimitive of RadMenuItem responsible for appearance of the border. + + + + Gets or sets a value indicating whether the menu item is checked. + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of a merged item within the current menu. + + + + + Gets or sets the visibility of the separator element between the text and the description text + + + + + Gets or sets the name of the control for use by accessibility client applications. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents event data for some of the progress bar event: + ValueChanged, + MinimumChanged, + MaximumChanged, + StepChanged, + StepWidthChanged, + DashChanged, + IntegralDashChanged, + SeparatorWidthChanged, + TextOrientationChanged, + TextAlignmentChanged, + ProgressOrientationChanged, + ShowProgressIndicatorsChanged and + SeparatorColorChanged. + + + + + Initializes a new instance of the ProgressBarEventArgs class using the sender + of the event. + + Represents the event sender. + + + + Gets or sets the event sender. + + event sender. + + + + Exposes the reason for a progress bar or waiting bar event. + + + + + Indicates that value1 or value2 has been changed. + + + + + Indicates that the Minimum property has been changed. + + + + + Indicates that the Maximum property has been changed. + + + + + Indicates that the Step has been changed. + + + + + Indicates that the Step width has been changed. + + + + + Indicates that the Dash property has been changed. + + + + + Indicates that the Hatch property has been changed. + + + + + Indicates that the IntegralDash property has been changed. + + + + + Indicates that the Text property has been changed. + + + + + Indicates that the SeparatorWidth property has been changed. + + + + + Indicates that the TextOrientatio property has been changed. + + + + + Indicates that the TextAlignment property has been changed. + + + + + Indicates that the ProgressOrientation property has been changed. + + + + + Indicates that the ProgressOrientation property has been changed. + + + + + Indicates that one of the separator colors property has been changed. + + + + + Indicates that the separators gradeient angle property has been changed. + + + + + Indicates that the separator color stop has changed + + + + + Indicates that the separator number of colors changed. + + + + + Initializes the fields. + + + + + Rrepresents a progress indicator used in + + + + + Represents a state manager for the progress bar progress indicators. + + + + + Creates the state manager. + + + + + + Represents a state manager for + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Virtual function that draws the primitive on the screen. + + The graphics object. + The angle. + The scale. + + + + Gets or sets the width of the separator. + + + The width of the separator. + + + + + Gets or sets the width of the step. + + + The width of the step. + + + + + Gets or sets the separator color1. + + + The separator color1. + + + + + Gets or sets the separator color2. + + + The separator color2. + + + + + Gets or sets the separator color3. + + + The separator color3. + + + + + Gets or sets the separator color4. + + + The separator color4. + + + + + Gets or sets the separator gradient angle. + + + The separator gradient angle. + + + + + Gets or sets the separator gradient percentage1. + + + The separator gradient percentage1. + + + + + Gets or sets the separator gradient percentage2. + + + The separator gradient percentage2. + + + + + Gets or sets the number of colors to be used. + + + The number of colors. + + + + + Gets or sets the flow direction of the progress indicator. + + + The progress orientation. + + + + + Gets or sets the sweep angle. + + + The sweep angle. + + + + + Gets or sets a value indicating whether this is dash. + + + true if dash; otherwise, false. + + + + + Gets or sets a value indicating whether this is hatch. + + + true if hatch; otherwise, false. + + + + + Initializes the fields. + + + + + Gets or sets whether this progress indicatior will automatically control its + opacity when close to or over the second progress indicator. + + + + + Gets or sets the minimum opacity level this progress indicator will go to + when over the second progress indicator when AutoOpacity property is set + to true. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + The RadCheckBoxThreeStateAttribute determines whether properties inside will have a three state check box editor or a two state one. + + + + + Creates a new instance of the attribute with the specified value. + + The value defining whether the editor should be three state. + + + + Gets the value of the attribute. + + + + + The RadRangeAttribute is an attribute which specifies the allowed range of values. + It can be applied to properties declarations only. + It is used by an editor when the propertyes is being edited. + + + + + Creates a new instance of the attribute withe the specific range. + + The minimum possible value in the range. + The maximum possible value in the range. + + + + Gets the minimum value of the specified range. + + + + + Gets the maximum value of the specified range. + + + + + The RadSortOrderAttribute is an attribute which specifies the sort order for properties inside . + It can be applied to properties declarations only. + + + + + Creates a new instance of the attribute with the specified value. + + The value defining the sort order. + + + + Gets the value of the attribute. + + + + + Defines an interface used to acces property information in RadPropertyGrid. + + + + + Gets the property name. + + + + + Gets the property display name + + + + + Gets or sets the property value. + + + + + Gets the property description. + + + + + Gets a value indicating whether the property is read only. + + + + + Gets the property category. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the property type. + + + + + Gets the associated with this property. + + + + + Gets the associated with this property. + + + + + Gets the associated with this property. + + + + + Gets the property name. + + + + + Gets the property display name + + + + + Gets or sets the property value. + + + + + Gets or sets the description associated with this property. + + + + + Gets the categoty of the property from its or returns "Other" if no category is specified. + + + + + Gets a value indicating whether the property is editable. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the property type. + + + + + Gets the property descriptor for this property. + + + + + Gets the UITypeEditor associated with this property + + + + + Gets the TypeConverter associated with this property + + + + + Gets the associated with this accessor. + + + + + Expands this instance. + + + + + Collapses this instance. + + + + + Gets the group item. + + The group item. + + + + Gets the expanded state of the group. + + + + + Expandes the item. + + + + + Collapses the item. + + + + + Ensures that this item is visible in the content of the RadPropertyGridElement. + + + + + Selects the grid tiem. + + + + + Allows PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Gets the parent property grid that the item is assigned to. + + + + + Gets or sets a value indicating whether this instance is visible. + + + true if this instance is visible; otherwise, false. + + + + + Gets or sets a value indicating whether this item is selected. + + + true if this item is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this item is expanded. + + + true if this item is expanded; otherwise, false. + + + + + Gets or sets a value indicating whether the item can respond to user interaction. + + The default value is true. + + + + Gets or sets the height of the item. + + The default value is 20. + + + + Gets or sets the image of the node. + + ImageIndex Property + ImageKey Property + + + + Gets or sets the left image list index value of the image displayed when the tree + node is not selected. + + Image Property + ImageKey Property + + + + Gets or sets the key + for the left image associated with this tree node when the node is not selected. + + Image Property + ImageIndex Property + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the description associated with this item. + + + + + Gets or sets the tool tip text associated with this item. + + + + Gets or sets the context menu associated to the item. + Returns an instance of RadDropDownMenu Class that + is associated with the item. The default value is null. + + This property could be used to associate a custom menu and replace the property grid's + default. If the context menu is invoked by right-clicking an item, the property grid's menu + will not be shown and the context menu assigned to this item will be shown instead. + + + + + Gets or sets the tag object that can be used to store user data, corresponding to the item. + + The tag. + + + + Gets a value indicating how deep in the hierarchy this propety is. + + + + + Gets the child items list associated with this item. + + + + + Gets a value indicating whether this item is expandable. + + + + + Gets the parent item for this item. + + + + + Gets the property name + + + + + Resets the property value to its default value. + + + + + Selects this item and puts the Property grid in edit mode. + + + + + Gets the child items for a given item. + + The parent item for which to get the child items. + The instance of the item. + The type of the property. + Collection of . + + + + Gets the default value of the current item. A return parameter determines if the operation succeeded. + + An object where the default value will be stored if there is such. + True if the item has a default value otherwise false. + + + + Determines if the item should update its child items based on the types of the old value and the new one. + + The old value of this item. + The new value of this item. + True if child items should be updated otherwise false. + + + + Converts a string into a password string. + + The input. + + + + + Gets the property name + + + + + Gets or sets the text that would be displayed for this property. + + + + + Gets or sets the description associated with this item. + + + + + Gets the category of the property from its or returns "Other" if no category is specified. + + + + + Gets a value indicating whether the property is read only. + + + + + Gets or sets the item value. + + The text. + + + + Gets the value of the property as a string using its . + + + + + Gets the original property value. + + + + + Gets a value indicating whether the property value is modified. + + + + + Gets a value indicating whether this is a complex property. + + + + + Gets or sets a value defining the sort order of the item when no other sorting is applied. + + + + + Gets or sets a value defining whether check box editor will be three state. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the sub items of the current if it is composed of several subitems. + + + + + Gets or sets the parent of this item. + + + + + Gets or sets an error message to be displayed when property value validation fails. + + + + + Gets the UITypeEditor associated with this property + + + + + Gets the TypeConverter associated with this property + + + + + Gets the property type + + + + + Gets the property descriptor for this property. + + + + + Gets the item accessor for this property item. + + + + + Gets the items. + + + + + + Sets the current. + + The item. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets the property grid element. + + The tree view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Gets the text displayed for this group. + + + + + Gets the items collection of the group. + + + + + Gets a value indicating whether this item is expandable. + + + + + Gets the group created by the Group Factory + + + + + Gets the name of this group. + + + + + Represents a text box control editor in . + + + + + Gets the PropertyGridTableElement. + + + + + Gets the item tha is being processed. + + + + + Gets or sets the GroupKey. The GroupKey is a unique identifier for a group. + + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + PropertyGridSpreadExport is a powerful exporting API, allowing to export RadPropertyGrid to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The RadPropertyGrid to export. + + + + Initializes a new instance of the class. + + The RadPropertyGrid to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export child items grouped. + + + + + Gets or sets a value indicating whether to export item descriptions. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets the indent of child items. + + + + + Gets or sets a value indicating how children of collapsed items are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting item of RadPropertyGrid. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting item. + + + + + Defines the mode that uses to best fit its columns. + + + + + Maximizes the visibility of the strings in the Labels column. + + + + + Maximizes the visibility of the strings in the Values column. + + + + + Uses a mechanism that makes a maximum number of strings from both columns visibile. + + + + + Generates and displays a barcode using a provided encoding method (symbology) and a value. + + + + + Exports the barcode with the current dimentions of the control. + + An image of the barcode. + + + + Layouts the barcode using the provided dimentions and exports it to an image. + + The width of the exported image. + The height of the exported image. + An image of the barcode. + + + + Layouts the barcode using the provided size and exports it to the specified stream. + + The stream to export the barcode to. + The size of the barcode. + + + + Layouts the barcode using the provided size and exports it to the specified file location. + + The location of the file where to export the barcode. + The size of the barcode. + + + + Layouts the barcode using the provided size and exports it to the specified stream in the specified image format. + + The stream to export the barcode to. + The size of the barcode. + The format of the exported image. + + + + Layouts the barcode using the provided size and exports it to the specified file location in the specified image format. + + The location of the file where to export the barcode. + The size of the barcode. + The format of the exported image. + + + + Gets the barcode element of this control. + + + + + Gets or sets the value that will be converted into a barcode. + + + + + Gets or sets the symbology that will be used to convert the value of this element into a visual barcode representation. + + + + + Occurs after the value of the barcode is changed. + + + + + Occurs before the value of the barcode is changed. + + + + + Occurs after the symbology of the barcode is changed. + + + + + Occurs before the symbology of the barcode is changed. + + + + + Updates the layout and invalidates the barcode. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Exports the barcode with the current dimentions of the control. + + An image of the barcode. + + + + Layouts the barcode using the provided dimentions and exports it to an image. + + The width of the exported image. + The height of the exported image. + An image of the barcode. + + + + Layouts the barcode using the provided size and exports it to the specified stream. + + The stream to export the barcode to. + The size of the barcode. + + + + Layouts the barcode using the provided size and exports it to the specified file location. + + The location of the file where to export the barcode. + The size of the barcode. + + + + Layouts the barcode using the provided size and exports it to the specified file location in the specified image format. + + The location of the file where to export the barcode. + The size of the barcode. + The format of the exported image. + + + + Layouts the barcode using the provided size and exports it to the specified stream in the specified image format. + + The stream to export the barcode to. + The size of the barcode. + The format of the exported image. + + + + Called when a property of the symbology changes. Suitable for performing necessary updates based on the changes. + + + + + + + Gets or sets the element factory that is used to create the elements of the displayed barcode. + + + + + Gets or sets the symbology that will be used to convert the value of this element into a visual barcode representation. + + + + + Gets or sets the value that will be converted into a barcode. + + + + + Occurs after the value of the barcode is changed. + + + + + Occurs before the value of the barcode is changed. + + + + + Occurs after the symbology of the barcode is changed. + + + + + Occurs before the symbology of the barcode is changed. + + + + + Gets or sets the horizontal alignment of the text dislayed in the barcode. + + + + + Gets or sets the vertical alignment of the text dislayed in the barcode. + + + + + Gets or sets whether the barcode should display the human readable value of the barcode. + + + + + Gets or sets whether the bars of the barcode should be stretched to fill the space available. + + + + + Gets or sets whether the barcode should calculate a checksum. + + + + + Gets or sets a module by which the barcode can be scaled up. + + + + + Gets the value currently being encoded by the symbology. + + + + + The EncodingMode enumeration determines the type of the acceptable data. + + + + + Auto mode. + + + + + Accepts byte data. + + + + + Allows text data. + + + + + Allows numeric data. + + + + + Creates a new PDF417 symbology with default values which can be used by to encode values into PDF417 barcodes. + + + + + Creates a new PDF417 symbology which can be used by to encode values into PDF417 barcodes. + + The number of columns fro the generated barcode. + The number of rows fro the generated barcode. + How much data will be available for error correction. + + + + Gets or sets how much data will be available for error correction. + + + + + Gets or sets the number of rows fro the generated barcode. + + + + + Gets or sets the number of columns fro the generated barcode. + + + + + Gets or sets a module by which the barcode can be scaled up. + + + + + Gets or sets the type of the acceptable data. + + + + + Gets the true/false values representing each module in the PDF417 code. + + + + + Switch to "Uppercase". + + + + + Switch to "Lowercase". + + + + + Switch to "Mixed". + + + + + Switch to "Punctuation" only for next character. + + + + + Initializes a new instance of the class. + + + + + Provides methods for encoding and validation of double-byte Kanji characters. + + + + + Initializes a new instance of the class. + + + + + This method encodes the data for the Kanji Mode. + + + + + Validates the data, to ensure no invalid characters are present. + + + + + Determines the type of code, such as Numeric, Alphanumeric, Byte or Kanji. + + + + + Byte Mode. + + + + + Allows Numbers [0-9]. + + + + + Allows characters or numbers. + + + + + Kanji Mode. + + + + + Determines how much data is available for error correction. + + + + + Low. + + + + + Medium. + + + + + Quartile. + + + + + High. + + + + + Determines the Extended Channel Interpretation (ECI) mode, which allows for encoding of characters from other sets. + + + + + None. + + + + + ECI 9. + + + + + ECI 8. + + + + + ECI 7. + + + + + ECI 6. + + + + + ECI 5. + + + + + ECI 4. + + + + + ECI 3. + + + + + ECI 2. + + + + + ECI 1. + + + + + ECI 10. + + + + + ECI 11. + + + + + ECI 13. + + + + + ECI 15. + + + + + ECI 17. + + + + + ECI 21. + + + + + ECI 22. + + + + + ECI 23. + + + + + ECI 24. + + + + + UTF-8. + + + + + ECI 27. + + + + + Signifies application of special formatting to the code data. + + + + + None. + + + + + FNC 1 in first position. + + + + + FNC 1 in second position. + + + + + Creates a new QRCode symbology with default values which can be used by to encode values into QR barcodes. + + + + + Creates a new QRCode symbology which can be used by to encode values into QR barcodes. + + The type of code that will be used for encoding. + Determines the size of the QR code and the amount of information that can be encoded. + Accepted values are in the range [1..40]. If you set the version to a number outside this range, version will be calculated automatically. + How much data will be available for error correction. + Extended Channel Interpretation (ECI) mode, which allows for encoding of characters from other sets. + Application of special formatting to the code data. + The application indentifier to be encoded in the QR code. + + + + Gets the true/false values representing each module in the QR code. + + + + + Gets or sets a module by which the barcode can be scaled up. + + + + + Gets the matrix, reflecting the filled modules/positions in the QR code matrix. + + + + + Gets the size of the QR code based on the current version. + + + + + Gets or sets the version of the QR code. The version determines the size of the QR code and the amount of information that can be encoded. + Accepted values are in the range [1..40]. If you set the version to a number outside this range, version will be calculated automatically. + + + + + Gets or sets the type of code that will be used for encoding, such as Numeric, Alphanumeric, Byte or Kanji. + + + + + Gets or sets how much data will be available for error correction. + + + + + Gets or sets the Extended Channel Interpretation (ECI) mode, which allows for encoding of characters from other sets. + + + + + Gets or sets application of special formatting to the code data. + + + + + Gets or sets the application indentifier to be encoded in the QR code. + + + + + Provides localization services for RadBrowseEditor. + + + + + Represents localization strings in RadBrowserEditor. + + + + + Specifies the navigation mode that will be used when user click on header element. + + + + + Exposes the top instance of CalendarView or its derived + types.v + Every CalendarView class handles the real calculation and + rendering of RadCalendar's calendric information. The + CalendarView has the + + CalendarViewCollection collection which contains all the sub views in case of multi view + setup. + + + + + Gets the parent calendar that the current view is assigned to. + + + + Gets or sets the selected cell. + + + + Gets the items collection of the element + + + + + Displays a collection of labeled items, each represented by a ListViewDataItem. + + + + + Shows the of CardTemplate and puts the selected item in customize mode. + + + + + Closes the and puts the selected item out of customize mode. + + + + + Gets the card view element. + + The card view element. + + + + Gets the RadLayoutControl used as a card template. + + + + + Gets or sets the default item size. + + + + + Gets or sets the space between the items. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Occurs when a new is created. + + + + + Occurs when a needs to be formatted. + + + + + Represents the main element of . + + + + + Represents the main element of . + + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Saves the changes. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Discards the changes. + + [true] if success, [false] otherwise + + + + Creates a view element corresponding to the current ViewType. + + The view element. + + + + Suspend any item change notifications until is called. + + + + + Resumes the item change notifications. + + + + + Finds an item with the specified key. + + The key of the searched item. + + + + + Finds an item with the specified key. + + The key of the searched item. + Indicates if the search should check only visible items. + + + + + Causes synchronization of the visual items with the logical ones. + + + + + Ensures that a given item is visible on the client area. + + The item to ensure visibility of. + + + + Ensures that a given item is visible on the client area. + + The item to ensure visibility of. + Indicates whether the view should be scrolled horizontally. + + + + Ensures that a given column is visible on the client area. + + The column to ensure visibility of. + + + + Selects a range of items. + + The items. + + + + Expands all the groups in the element. + + + + + Collapses all the groups in the element. + + + + + Checks all of the selected items. + + + + + Unchecks all of the selected items. + + + + + Checks all of the items. + + + + + Unchecks all of the items. + + + + + Updates the contents of the collection. + + + + + Scrolls the view with a given amount. + + The amount to scroll the view with. + + + + Fires when a group has been expanded. + + + + + Fires when a group is about to expand. Cancelable. + + + + + Occurs when a ListViewDataItem is about to be selected. Cancelable. + + + + + Occurs when the content of the SelectedItems collection has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the index of the selected item has changed. + + + + + Occurs when the ViewType of RadListView is changed. + + + + + Occurs when the ViewType of RadListView is about to change. Cancelable. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user moves the mouse over a ListViewDataItem. + + + + + Occurs when the user hovers a ListViewDataItem. + + + + + Occurs when the mouse pointer enters a ListViewDataItem. + + + + + Occurs when the mouse pointer leaves a ListViewDataItem. + + + + + Occurs when the user clicks a ListViewDataItem. + + + + + Occurs when the user double-clicks a ListViewDataItem. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Occurs when a ListViewDataItem changes its state and needs to be formatted. + + + + + Occurs when a ListViewDataItem needs to be created. + + + + + Occurs when a BaseListViewVisualItem needs to be created; + + + + + Occurs when a DetailsView cell needs to be formatted. + + + + + Occurs when a data-bound item is being attached to a ListViewDataItem. + + + + + Occurs when the CurrentItem property is changed. + + + + + Occurs when the CurrentItem property is about to change. Cancelable. + + + + + Occurs when an editor is required. + + + + + Occurs when an edit operation is about to begin. Cancelable. + + + + + Occurs when an editor is initialized. + + + + + Occurs when a ListViewDataItem is edited. + + + + + Fires when a validation error occurs. + + + + + Occurs when an edit operation needs to be validated. + + + + + Occurs when the value of a ListViewDataItem is changed. + + + + + Occurs when the value of a ListViewDataItem is about to change. Cancelable. + + + + + Occurs when a needs to be created. + + + + + Occurs when a needs to be created. + + + + + Occurs when an item is about to be removed using the Delete key. Cancelable. + + + + + Occurs when an item is removed using the Delete key. + + + + + Gets or sets a value indicating whether column names which differ only in the casing are allowed. + + + + + Gets or sets a value indicating whether the last added item in the RadListView DataSource will be selected by the control. + + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets a value indicating whether the checkboxes should be in ThreeState mode. + + + + + Gets or sets a value indicating whether grid lines shoud be shown in DetailsView. + + + + + Gets or sets a value indicating whether items can be selected with mouse dragging. + + + + + Gets or sets a value indicating whether items should react on mouse hover. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. Always false when lasso selection is enabled. + + + + + Gets or sets a value indicating whether the items should be sorted when clicking on header cells. + + + + + Gets or sets a value indicating whether the column headers should be drawn. + + + + + Gets or sets a value indicating whether the items should be shown in groups. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating if the user can reorder columns via drag and drop. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + Always false when using data source, grouping, filtering, sorting, kinetic scrolling or lasso selection. + + + + + Gets or sets value indicating if the user can resize the columns. + + + + + Gets or sets the current column in Details View. + + + + + Indicates whether there is an active editor. + + + + + Gets or sets the current item. + + + + + Gets or sets the index of the selected item. + + + + + Gets or sets the selected item. + + + + + Gets a collection containing the selected items. + + + + + Gets a collection containing the checked items. + + + + + Gets or sets value indicating whether multi selection is enabled. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets value indicating whether the user can remove items with the Delete key. + + + + + Gets the currently active editor. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default group item size. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets the fill color of the lasso selection rectangle. + + + + + Gets or sets the border color of the lasso selection rectangle. + + + + + Gets or sets the space between the items. + + + + + Gets or sets a collection of ListViewDetailColumn object which represent the columns in DetailsView. + + + + + Gets a value indicating whether the control is in bound mode. + + + + + Gets a collection containing the groups of the RadListViewElement. + + + + + Gets or sets the value member. + + + + + Gets or sets the display member. + + + + + Gets or sets the checked member. + + + + + Gets the DataView collection. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether custom grouping is enabled. + + + + + Gets a collection of filter descriptors by which you can apply filter rules to the items. + + + + + Gets a collection of SortDescriptor which are used to define sorting rules over the + ListViewDataItemCollection. + + + + + Gets a collection of GroupDescriptor which are used to define grouping rules over the + ListViewDataItemCollection. + + + + + Gets the source of the items. + + + + + Gets or sets a collection of ListViewDataItem object which represent the items in RadListViewElement. + + + + + Gets the element that represents the active view. + + + + + Gets or sets the type of the view. + + + + + Gets or sets the data source of a RadListViewElement. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the height of the header in Details View. + + + + + Gets or sets the that is responsible for resizing the columns. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when BaseListViewElement is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + Occurs when the BindingContext has changed. + + + + + Occurs when the process of binding to a data source has finished + + + + + Gets or sets the BindingContext. + + + + + Creates a view element for the current CardView. + + The view element. + + + + Shows the of CardTemplate and puts the selected item in customize mode. + + + + + Closes the and puts the selected item out of customize mode. + + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Initializes the editor. + + The visual item. + The initializable. + The editor. + + + + Sets the selected item value. + + The instance containing the event data. + The new value. + + + + Gets the used as a card template. + + + + + Occurs when a new is created in + + + + + Occurs when a needs to be formatted. + + + + + Represents a base class for view elements. + + + + + Gets the at a specified location. + + The location. + The . + + + + Gets the at a specified location. + + The location. + The . + + + + Scrolls the view with a given amount. + + The amount to scroll with. + + + + Ensures that a given is visible on the client area. + + The to ensure visibility of. + + + + Ensures that a given is visible on the client area. + + The to ensure visibility of. + Indicates if the view should be scrolled horizontally. + + + + Clears the selection. + + + + + Toggles the CheckState of given item. + + The item whose CheckState will be toggled. + + + + Returns a value indicating whether the current view supports given orientation. + + The orientation. + [true] if the current view supports the orientation, [false] otherwise. + + + + Ensures that a given is visible by scrolling the view horizontally. + + The item to ensure visibility of. + + + + Ensures that a given is visible by scrolling the view vertically. + + The item to ensure visibility of. + + + + Ensures that a given is visible when it is below the last visible item in the view. + + The item to ensure visibility of. + + + + Called when the orientation of the view has changed. + + + + + Updates the horizontal scrollbar. + + + + + Updates the visibility of the horizontal scrollbar. + + + + + Processes the MouseUp event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the MouseMove event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the MouseDown event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the KeyDown event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Handles a press of the PageUp key. + + The event args. + + + + Handles a press of the PageDown key. + + The event args. + + + + Handles a press of the Delete key. + + The event args. + + + + Handles a press of the End key. + + The event args. + + + + Handles a press of the Home key. + + The event args. + + + + Handles a press of the Escape key. + + The event args. + + + + Handles a press of the F2 key. + + The event args. + + + + Handles a press of the Left key. + + The event args. + + + + Handles a press of the Right key. + + The event args. + + + + Handles a press of the Down key. + + The event args. + + + + Handles a press of the Up key. + + The event args. + + + + Handles a press of the Space key. + + The event args. + + + + Handles navigation upon key press. + + The character of the pressed key. + + + + This method traverses through the items in the control and fills a queue with these items that start with the . + + + + + + Gets the previous visible item of a given . + + The current item. + The previous item. + + + + Gets the next visible item of a given . + + The current item. + The next item. + + + + Processes the MouseWheel event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the selection of a specified item. + + The which is being processed. + The modifier keys which are pressed during selection. + [true] if the selection is triggered by mouse input, [false] otherwise. + + + + Selects all items that are whitin the lasso rectangle. + + + + + Selects all items that are whitin the specified rectangle. + + + + + Begins the lasso selection. + + + + + Ends the lasso selection. + + + + + Gets the drag hint location according to the specified item. + + The drop target item. + The mouse location in client coordinates. + The location of the drag hint. + + + + Indicates whether an item should be dropped after the given target according to the specified location. + + The drop target item. + The drop location. + [true] if a dropped item should be inserted after the target, [false] otherwise. + + + + Gets the size of the drag hint according to the speficied target. + + The drop target. + The size of the drag hint. + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a column will be dropped after a drag operation. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets the orientation of the view element. + + + + + Gets the that owns the view. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default group item size. + + + + + Gets or sets the fill color of the lasso selection rectangle. + + + + + Gets or sets the border color of the lasso selection rectangle. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Updates the items layout. + + + + + Shows the customize dialog. + + + + + Closes the customize dialog. + + + + + Gets all child items. + + The items. + + + + + Gets the field names. + + + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + XmlWriter to use by the built-in serializer + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + The stream to write to. + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + The file to write to. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The XmlReader to read the XML from. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The stream to read from. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The file to read from. + + + + Gets the default serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML. + + The default serialization info. + + + + Initializes the items of the default context menu. + + + + + Gets the designer host. + + The list view element. + + + + + Gets a value indicating whether the owner is data bound or has any columns created. + + The list view element. + + + + + Synchronizes given CardViewContainerElement to the container of CardTemplate. + + The given container. + The visual item that owns the container. + + + + Updates item bounds and synchronizes properties. + + + + + + + + Handles the RadPropertyChanged event of the GroupItem control. + + The source of the event. + The instance containing the event data. + + + + Gets the item synchronization properties. + + The item synchronization properties. + + + + Gets the layout control used as a template for all displayed cards. + + + + + Gets or sets the context menu. + + + + + Gets the card view element. + + The card view element. + + + + Gets or sets the default item size. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets the serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML. + By default or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Updates the scrollbar metrics. + + + + + Gets the card items container. + + + + + Gets the horizontal . + + + + + Gets the vertical . + + + + + Represents the method that will handle the creating events of CardViewContainerElement items. + + The event sender, typically this is + Instance of containing the data related with this event + + + + Provides data for the CardViewItemCreating event. + + + + + Initializes a new instance of the CardViewItemCreatingEventArgs. + + The CardTemplate item. + The newly created item. + The visual item. + + + + Gets the from CardTemplate. + + + + + Gets or sets the created . + + + + + Gets the . + + + + + Represents the method that will handle the formatting events of CardViewContainerElement items. + + The event sender, typically this is + Instance of containing the data related with this event + + + + Provides data for the CardViewItemFormatting event. + + + + + Initializes a new instance of the CardViewItemFormattingEventArgs class. + + The + The + + + + Gets the . + + + + + Gets the . + + + + + Fires the VisualItemCreating event of . + + The visual item. + The view type of + The data item for which a visual item is being created + The new visual item. + + + + An element which hosts and provides the layout of items that inherit from the . + This element can be found at the root level of , as well as + in or . + + + + + A common interface for elements which host items. + + + + + Gets the the drag hint preview rectangle if an item were to be dragged at a given point. + + The dragged item. + The point in control coordinates. + The preview rectangle. + + + + Gets the the drag hint preview rectangle if an item were to be dragged at a given point. + + The dragged item. + The point in control coordinates. + The type of the dragged item. + The preview rectangle. + + + + Handles dropping an element over another at the specified position. + + The drop target element. + The dragged element. + The specified position. + + + + Rebuilds the layout of the container. + + + + + Rebuilds the layout of the container. + + If [true], forces a layout update. + + + + Updates the layout of the inner controls. + + + + + Updates the layout of the inner controls. + + If [true], goes into nested s recursively. + + + + Gets or sets the fill color of the drag preview rectangle. + + + + + Gets or sets the border color of the drag preview rectangle. + + + + + Gets the associated with this container. + + + + + The collection of items which this container hosts. + + + + + Represents an item which hosts other items that inherit from . + Has a header element and a which holds the items. + Can be expanded and collapsed. + + + + + A base class for all items which can be placed in + + + + + Gets the which owns this item. Can be either + or . + + The owner item. + + + + Gets a value indicating whether this item is currently hidden. + + + + + Gets or sets a value indicating whether this item can be deleted by the + end-user from the Customize dialog. + + + + + Called when the group is expanded or collapsed to do the necessary updates. + + + + + Occurs when the group item is expanded. + + + + + Occurs when the group item is collapsed. + + + + + Occurs when the group item is about to be expanded. Cancelable. + + + + + Occurs when the group item is about to be collapsed. Cancelable. + + + + + Gets or sets a value indicating whether the line in the header element should be shown. + + + + + Gets the header element of the group. + + + + + Gets or sets a value indicating whether the group is currently expanded. + + + + + Gets or sets the height of the header. + + + + + Gets the container element which hosts the items within the group. + + + + + Gets the items within the group. + + + + + This method is used internally! + + + + + This method is used internally! + + + + + + Gets or sets the name of field associated with this item. + + + + + Gets the field. + + + + + This method is used internally! + + + + + + Gets the rectangle in which the text part will be arranged. + + The client area of the item. + The arrange rectangle of the text part. + + + + Gets the rectangle in which the editor will be arranged. + + The client area of the item. + The arrange rectangle of the editor. + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the proportional size of the text part which will be used + when TextSizeMode is set to proportional. + + + + + Gets or sets the fixed size of the text part which will be used + when TextSizeMode is set to fixed. + + + + + Gets or sets the minimum size of the text part. + + + + + Gets or sets the maximum size of the text part. + + + + + Gets or sets the way in which the text part will be sized - proportionally or fixed-size. + + + + + Gets the editor label item. + + + + + Gets or sets the name of field associated with this item. + + + + + Gets the card field. + + + + + The dialog which is opened when is in edit mode. Provides interface + to access the hidden items, bring new items to the control, or preview and edit the existing item structure. + + + + + Called to update the Hidden Items group in the Items tab + + + + + Called to update the tree view in the Structure tab + + + + + Gets the text which should be displayed in an item in the Hidden Items group or the Structure tree view. + + The item to get the text for. + The text for the item. + + + + Gets the image which should be displayed in an item in the Hidden Items group or the Structure tree view. + + The item to get the image for. + The image for that item. + + + + Called to rearrange the items when the RightToLeft property of the dialog has changed. + + + + + Called when the drag drop service of the list view has started. + + + + + Called to handle dropping a dragged item from the list view on the Items tab. + + + + + Handles dropping a list view item over a . + + The dragged list view item. + The drop target item. + + + + Handles dropping a list view item over an empty container. + + The container. + The dragged item. + + + + Called to create a new when dropping an item from the New Items group. + + The dragged item. + The newly created item + + + + Handles the DragOver event of the list view's drag drop service. + + + + + Gets the drag context of a dragged item. + + The dragged item. + The type of the associated item. + + + + Handles the NodeRemoving event of the tree view on the structure tab. + + + + + Handles the Click event of the Save Layout button. + + + + + Handles the Click event of the Load Layout button. + + + + + Handles the NodeEdited event of the tree view on the Structure tab. + + + + + Handles the SelectedNodeChanged event of the tree view on the Structure tab. + + + + + Handles the MouseMove event of the tree view on the Structure tab. + + + + + Handles the MouseDown event of the tree view on the Structure tab. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Shows the provided overlay in the control. + + The message that contains the overlay info. + + + + Hides any overlays that are currently displayed by the control. + + + + + Adds a new message to the chat. Typical messages are , , , and + + The message to be displayed in the chat. + + + + Gets the main chat element. + + + + + Gets or sets the current author. This instance is used when is set to true as well as to determine the messages alignment and styling. + + + + + Gets or sets a value indicating whether messages typed by the user will automatically be added as to the chat. + + + + + Gets or sets the size of the avatar images. + + + + + Gets or sets whether avatar images will be displayed in the chat window next to messages. + + + + + Gets or sets whether messages will be displayed aligned to only one side of the chat window or on both. + + + + + Gets or sets the time interval between messages that will trigger the automatic addition of a Time separator. + If set to no Time separators will be added. + + + + + Occurs when the user performs an action e.g hits the Enter key, clicks the Send message button, clicks on a Suggested Action or a Card Action, clicks OK on an overlay. + + + + + Occurs when the user clicks on a Suggested Action + + + + + Occurs when the user clicks on a Card Action + + + + + Occurs when the user clicks on a Toolbar Action + + + + + Occurs after a new message is added. Allows you to decide whether a time separator should be inserted before the currently added message. + + + + + Occurs when the data item of a visual element is changed and the element is prepared for visualization. + + + + + Shows the provided overlay in the control. + + The message that contains the overlay info. + + + + Hides any overlays that are currently displayed by the control. + + + + + Adds a new message to the chat. Typical messages are , , , and + + The message to be displayed in the chat. + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The card which triggered the event. + The event arguments. + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The event arguments. + + + + Gets or sets the current author. This instance is used when is set to true as well as to determine the messages alignment and styling. + + + + + Gets or sets a value indicating whether messages typed by the user will automatically be added as to the chat. + + + + + Gets or sets the size of the avatar images. + + + + + Gets or sets whether avatar images will be displayed in the chat window next to messages. + + + + + Gets or sets whether messages will be displayed aligned to only one side of the chat window or on both. + + + + + Gets or sets the time interval between messages that will trigger the automatic addition of a Time separator. + If set to no Time separators will be added. + + + + + Occurs when the user performs an action e.g hits the Enter key, clicks the Send message button, clicks on a Suggested Action or a Card Action, clicks OK on an overlay. + + + + + Occurs when the user clicks on a Suggested Action + + + + + Occurs when the user clicks on a Card Action + + + + + Occurs when the user clicks on a Toolbar Action + + + + + Occurs after a new message is added. Allows you to decide whether a time separator should be inserted before the currently added message. + + + + + Occurs when the data item of a visual element is changed and the element is prepared for visualization. + + + + + Gets or sets the size of the avatar images. + + + + + Gets or sets whether avatar images will be displayed in the chat window next to messages. + + + + + Gets or sets whether messages will be displayed aligned to only one side of the chat window or on both. + + + + + Gets or sets the time interval between messages that will trigger the automatic addition of a Time separator. + If set to no Time separators will be added. + + + + + Represent item scroller + + + + + + Called when tool tip text is needed. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Scrolls to item. + + The item. + + + + + Scrolls to item. + + The item. + if set to true scroll visibility is checked before processing scrolling. + + + + + Scrolls to begin. + + + + + + Scrolls to end. + + + + + + Scrolls to specified position. + + The position. + + + + + Scrolls down to specified position. + + The step. + + + + + Gets the height of the scroll. + + The item. + + + + + Scrolls up. + + The step. + + + + + Updates the on scroll. + + The instance containing the event data. + + + + + Updates the scroll range. + + + + + Updates the scroll value. + + + + + Updates the scroll range with concrete range. + + The width. + if set to true [update scroll value]. + + + + Updates the scroll step. + + + + + Sets the scroll bar visibility. + + + + + Shows scroller's tool tip + + + + + Determines the ToolTip text + + + Returns the ToolTip's text + + + + + Determines the traverser's current item index + + + The Index of the current item + + + + + Hides scroller's tooltip + + + + + When set to true, allows the scroller to scroll through the items + when the scrollbar is not visible. + + + + + Gets the max width of item. + + + The width of the max item. + + + + + Gets or sets the state of the scroll. + + + The state of the scroll. + + + + + Gets or sets the associated traverser. + + + The traverser. + + + + + Gets or sets the associated scrollbar. + + + The scrollbar. + + + + + Gets or sets the element provider. + + + The element provider. + + + + + Gets or sets the scroll mode. + + + The scroll mode. + + + + + Gets or sets the client size. + + + The size of the client. + + + + + Gets or sets the item height. + + + The height of the item. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Gets the position. + + + The position. + + + + + Gets or sets the tool tip. + + + The tool tip. + + + + + Gets or sets a value indicating whether scrolling is asynchronous. + + + true if [asynchronous scrolling]; otherwise, false. + + + + + Occurs when the scroller is updated. + + + + + Occurs when tool tip text is needed. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Gets or sets the image of the element. + + + The image. + + + + + Gets the image primitive. + + + The image primitive. + + + + + This class represents the container which holds + all controls put in a + control. The scrolling support comes from this container. + + + + + Creates an instance of the + class. This constructor is used by the Visual Studio Designer. + + + + + Creates an instance of the + class. + + An instance of the + class which represents the owner of this container. + + + + Gets or sets a value indicating whether the focused control inside the RadScrollablePanel + will be automatically scrolled into view when gaining focus. + + + + + Initializes a new instance of the class. + + + + + Initializes the internal container which holds the controls. + + + + + Creates the child items. + + The parent. + + + + Creates the controls container which holds the controls. + + + + + + Creates the collapsible panel element. + + + + + + Creates a new instance of the control collection for the control. + + + A new instance of assigned to the control. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Gets the default size of the control. + + The default of the control. + + + + Gets the controls container. + + + The controls container. + + + + + Gets the panel container which contains the controls of the RadCollapsiblePanel. + + + The panel container. + + + + + Gets the collapsible panel element. + + + The collapsible panel element. + + + + + Gets or sets the expand direction. + + + The expand direction. + + + + + Gets or sets a value indicating whether to use animation to expand or collapse the control. + + + true if the expand/collapse animations are enabled; otherwise, false. + + + + + Gets or sets the content sizing mode. + + + The content sizing mode. + + + + + Gets a or Sets value indicating whether the control is expanded. + + + true if the control is expanded; otherwise, false. + + + + + Gets a value indicating whether the control is currently animating. + + + true if the control is currently animating; otherwise, false. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + Gets or sets the header text. + + + The header text. + + + + + This value is set when the control is about to be collapsed and is used to restore the control's size when expanding. It should only be set by the control itself. + + + + + Gets or sets the animation interval. + + + The animation frames. + + + + + Gets or sets the animation frames. + + + The animation frames. + + + + + Gets or sets the easing type to be applied to the animation when expanding or collapsing + + + The animation easing type. + + + + + Gets or sets the type of the expand or collapse animation. + + + The type of the animation. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + This property is not relevant for this class. + + + + + Occurs after the control is expanded. + + + + + Occurs after the control is collapsed. + + + + + Occurs before the control is expanded. + + + + + Occurs before the control is collapsed. + + + + + Synchronizes its size, location and margin with the specified instance + + The element to synchronize with. + + + + Synchronizes its size with the specified instance + + The element to synchronize with. + + + + Synchronizes its location with the specified instance + + The element to synchronize with. + + + + Synchronizes its margin with the specified instance + + The element to synchronize with. + + + + Suspends the child controls layout. + + + + + Suspends the child controls layout where the controls are not docked. + + + + + Resumes the child controls layout. + + if set to true [perform layout]. + + + + Resumes the child controls layout. + + + + + Draws the control to a + + A new instance of + + + + Gets the container panel that holds + all the components added to the panel. + + + + + Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent. + + One of the values. The default is . + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usaage of the control. + + + + + Initializes a new instance of the class. + + The owner control. + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the header element. + + + + + + Creates the layout element. + + + + + + Raises the event. + + The instance containing the event data. + + + + Called when the button in the CollapsiblePanel's header is clicked. + + The sender. + The instance containing the event data. + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + If the Control is expanded it will be collapsed and vice-versa. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Creates the instance which will be used to animate the control. + Create it according to its value. + + + + + + Creates the instance which will be used to animate the control. + + if set to true expand animation will be created, otherwise collapse animation will be created. + + + + + Sets the control bounds after it is collapsed. + + + + + Creates the expand animation. + + + + + + Setups the reveal expand animation. + + The animation to be set up. + + + + Setups the slide expand animation. + + The animation to be set up. + + + + Creates the collapse animation. + + The new instance + + + + Setups the reveal collapse animation. + + The animation to be set up. + + + + Setups the slide collapse animation. + + The animation to be set up. + + + + Executes the collapse preparations. This method is invoked before the panel starts collapsing. + + If the current enumeration is not supported + + + + Executes the collapse finalizations. This method is invoked after the panel has collapsed. + + If the current enumeration is not supported + + + + Executes the expand preparations. This method is invoked before the panel starts expanded. + + If the current enumeration is not supported + + + + Executes the expand finalizations. This method is invoked after the panel has expanded. + + If the current enumeration is not supported + + + + Gets the object to be animated. This object is used by the current animation object. + + + If the current enumeration is not supported + + + + Gets the header element. + + + The header element. + + + + + Gets or sets the expand direction. + + + The expand direction. + + + + + Gets or Sets a value indicating whether the control is expanded. + + + true if the control is expanded; otherwise, false. + + + + + Gets or sets a value indicating whether to use animation to expand or collapse the control. + + + true if the expand/collapse animations are enabled; otherwise, false. + + + + + Gets or sets the content sizing mode. + + + The content sizing mode. + + + + + Gets or sets a value indicating whether the control is currently animating. + + + true if the control is currently animating; otherwise, false. + + + + + Gets or sets the animation interval. + + + The animation interval. + + + + + Gets or sets the animation frames. + + + The animation frames. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + Gets the layout element. + + + The layout element which is responsible for the position of the ControlsContainer + + + + + Gets or sets the header text. + + + The header text. + + + + + This value is set when the control is about to be collapsed and is used to restore the control's size when expanding. It should only be set by the control itself. + + + + + Gets or sets the easing type to be applied to the animations + + + The animation easing type. + + + + + Gets or sets the type of the expand or collapse animation. + + + The type of the animation. + + + + + Occurs when the control is expanded. + + + + + Occurs when the control is collapsed. + + + + + Occurs when the control is about to be expanded. Cancelable. + + + + + Occurs when the control is about to be collapsed. Cancelable. + + + + + Initializes member fields to their default values. + This method is called prior the CreateChildItems one and allows for initialization of members on which child elements depend. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the button element. + + + + + + Creates the text element. + + + + + + Creates the line element. + + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the expand collapse button element. + + + The expand collapse button element. + + + + + Gets the header text element. + + + The header text element. + + + + + Gets the header line element. + + + The header line element. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + The content will be horizontally positioned in the center of its parent. + + + + + The content will be horizontally positioned to the center of its parent. + + + + + The content will be horizontally positioned to the left of its parent. + + + + + The content will stretched so all children have equal width. + + + + + The content will be vertically positioned in the center of its parent. + + + + + The content will be vertically positioned to the bottom of its parent. + + + + + The content will be vertically positioned to the top of its parent. + + + + + The content will stretched so all children have equal height. + + + + + Represents a MaskedEditBox in . + + + + + A base class for all of the items contained in . + + + + + Represents a base class for most of the elements. + + + + + Gets or sets the orientation of the element - colud be horizontal or vertical. + + + + + Gets or sets the name that is displayed in command bar dialogs and context menus. + + + + + Raises the event. + + Event data. + + + + Raises the event. + + Event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + Event data. + + + + Occurs when the orientation is changed + + + + + Occurs before the orientation is changed + + + + + Occurs when the property is changed. + + + + + Show or hide item from the strip overflow menu + + + + + Gets or sets the Orientation of the item. + + + + + Show or hide item from the strip + + + + + Gets or sets that the orientation will be inherit from parent + + + + + Occurs when the element is double-clicked. + + + + + Gets or sets a mask expression. + + + + + Gets or sets the mask type. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the hosted . + + + + + Gets or sets the name of the descriptor. + + The name of the descriptor. + + + + Gets or sets the type of the descriptor. + + The type of the descriptor. + + + + Gets or sets a value indicating if this descriptor item is auto generated. + + The is auto generated. + + + + Gets or sets the default filter operator. + + The default filter operator. + + + + Gets or sets the default value. + + The default value. + + + + Gets the filter operators. + + The filter operators. + + + + Gets the filter operation context. + + The filter operation context. + + + + Gets or sets the data source that populates the items for the . + + + + + Gets or sets a string that specifies the property or database column from which to get values that correspond to the items in the . + + + + + Gets or sets a string that specifies the property or database column from which to retrieve strings for display in the items. + + + + + Specifies the mode for the automatic completion feature used in the . + + + + + Gets or sets a value specifying the style of the . + + + + + Gets or sets the editor's value. + + + + + Gets or sets a value indicating whether the node is selected. + + + + + Gets or sets a value indicating that this is the current node. + + + + + Gets or sets a value indicating whether the node is expanded. + + + + + Gets or sets a value indicating whether the control contains the focus. + + + + + Gets a value indicating whether the node is currently at root level. + + + + + Gets or sets the arbitrary height for this particular node. + Valid when the owning RadTreeViewElement's AllowArbitraryHeight property is set to true. + + + + + Gets a value indicating that this is the hot tracking node. + + + + + Gets a value indicating whether this node contains child nodes. + + + + + Synchronizes this instance. + + + + + Sets the control cursor. + + The cursor. + + + + Gets or sets the currently editing element. + + The editing element. + + + + Gets the drag element. + + The drag element. + + + + Gets the close button. + + The close button. + + + + Gets the data filter element. + + The data filter element. + + + + Initializes new instance of the RadTreeNode class. + + The text to be used as label text. + A boolean value indicating whether the node is expanded. + + + + Finds the specified match. + + The match. + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Initiates the editing of the tree node. + + + + + + Ends the edit. + + + + + + Cancels the edit. + + + + + + Collapses the tree node. + + + + + Collapses the and optionally collapses its children. + + if set to true [ignore children]. + + + + Ensures that the tree node is visible, expanding tree nodes and scrolling the tree view control as necessary. + + + + + Expands the tree node. + + + + + Expands all the child tree nodes. + + + + + Returns the number of child tree nodes. + + if set to true [include sub trees]. + + + + + Removes the current tree node from the tree view control. + + + + + Toggles the tree node to either the expanded or collapsed state. + + + + + Returns a that represents the tree node. + + + A that represents the tree node. + + + + + This method is used internally! + + + + + Execute the action for every RadTreeNode in the branch + + + + + + Creates a new object that is a copy of the current instance. + + + A new object that is a copy of this instance. + + + + + Allows PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Sets the IBindingList which holds the child nodes in Object Relational Binding mode + + + + + + Gets the last matches using Find method. + + Gets the last matches using Find method. + + + + Gets the style. + + The style. + + + + Gets a value indicating whether this instance has style. + + true if this instance has style; otherwise, false. + + + + Gets or sets a value indicating whether the node can respond to user interaction. + + The default value is true. + + + + Gets the root parent node for this RadTreeView. + + The default value is null. + + + + Gets the parent tree view that the tree node is assigned to. + + + + + Gets or sets a value indicating whether this is checked. + + true if checked; otherwise, false. + + + + Gets or sets the state of the check element. + + The state of the check. + + + + Gets or sets the type of the check element. + + The type of the check. + + + Gets or sets the context menu associated to the node. + + Returns an instance of RadDropDownMenu Class that + is associated with the node. The default value is null. + + + This property could be used to associate a custom menu and replace the treeview's + default. If the context menu is invoked by right-clicking a node, the treeview's menu + will not be shown and the context menu assigned to this node will be shown + instead. + + RadContextMenu Property (Telerik.WinControls.UI.RadTreeView) + + + + Gets or sets a value indicating whether this instance is visible. + + + true if this instance is visible; otherwise, false. + + + + + Gets the index. + + The index. + + + + Gets a value indicating whether this instance is editing. + + + true if this instance is editing; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is selected. + + + true if this instance is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is current. + + + true if this instance is current; otherwise, false. + + + + + Gets or sets the tree view element. + + The tree view element. + + + + Gets or sets a value indicating whether this instance is expanded. + + + true if this instance is expanded; otherwise, false. + + + + + Gets or sets the parent. + + The parent. + + + + Gets or sets the text. + + The text. + + + + Gets or sets the node value. + + The text. + + + + Gets the nodes. + + The nodes. + + + + Gets the level. + + The level. + + + + + Gets or sets the name of the RadTreeNode. + + A String that represents the name of the tree node. + + The Name of a TreeNode is also the node's key, when the node is part of a + TreeNodeCollection. If the node does not + have a name, Name returns an empty string (""). + + + + + Gets the first node. + + The first node. + + + + Gets the last node. + + The last node. + + + + Gets the next node. + + The next node. + + + + Gets the next visible node. + + The next visible node. + + + + Gets the prev node. + + The prev node. + + + + Gets the prev visible node. + + The prev visible node. + + + + Gets or sets the tag object that can be used to store user data, corresponding to the tree node. + + The tag. + + + + Gets or sets the text that appears when the mouse pointer hovers over a tree node. + + The default value is "". + + + + Gets the full path. + + The full path. + + + + Gets or sets the image of the node. + + ImageIndex Property + ImageKey Property + + + + Gets or sets the left image list index value of the image displayed when the tree + node is not selected. + + Image Property + ImageKey Property + + + + Gets or sets the key for the left image associated with this tree node. + + Image Property + ImageIndex Property + + + + Gets or sets the height of the tree node in the tree view control. + + The default value is 20. + + + + Gets or sets the measured desired width for this node. + + + + + Gets or sets the measured desired width for this node. + + + + + Gets or sets a value indicating whether [allow drop]. + + true if [allow drop]; otherwise, false. + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets a value if the node is root node + + + + + Gets the data-bound object that populated the node. + + + + + Gets or sets the font of the node text. + + The default value is null. + + + + Gets or sets the foreground color of the tree node. This color is applied to the text label. + + + + + Gets or sets the backcolor of the tree node. Color type represents an ARGB color. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, gel, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the border color of the tree node. + + + + + Gets or sets gradient angle for linear gradient. + + GradientStyle Property + GradientPercentage Property + GradientPercentage2 Property + NumberOfColors Property + The default value is 90.0. + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + GradientStyle Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + GradientStyle Property + GradientPercentage Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + The default value is + GradientStyles.Linear. + + GradientStyles Enumeration + GradientPercentage Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + + + + Gets or sets the number of used colors in the gradient effect. + + BackColor Property + BackColor2 Property + BackColor3 Property + BackColor4 Property + GradientStyle Property + The default value is 4. + + + + Gets or sets the text alignment. + + + The default value is ContentAlignment.MiddleLeft. + + + + + Gets the associated group node. + + The associated group node. + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the drop down button. + + The drop down button. + + + + Compares the specified x. + + The x. + The y. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Synchronizes this instance. + + + + + Gets the value of field, operator and value elements. + + + + + + Updates the descriptor value. + + The value. + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the criteria node. + + The criteria node. + + + + Gets the field element. + + The field element. + + + + Gets the operator element. + + The operator element. + + + + Gets the value element. + + The value element. + + + + Removes the current tree node from the tree view control. + + + + + Gets the formatted value. + + + + + Gets or sets the associated filter descriptor. + + The descriptor. + + + + Gets or sets the descriptor item. + + The descriptor item. + + + + Gets or sets the property name of associated filter descriptor. + + The name of the property. + + + + Gets or sets the filter operator of associated filter descriptor. + + The filter operator. + + + + Gets or sets the value of associated filter descriptor. + + The descriptor value. + + + + Gets the type of the value. + + The type of the value. + + + + Gets or sets the node value. + + The text. + + + + Creates a new tree node in the target RadTreeView using the information from the source tree. + + The source tree node. + A new instance of if successfull. + + + + Gets or sets a value indicating whether show drop hint should be shown. + + true if [show drop hint]; otherwise, false. + + + + Gets or sets a value indicating whether drag hint should be shown. + + true if [show drag hint]; otherwise, false. + + + + Determines whether this instance can start the specified context. + + The context. + + + + + Determines whether this instance [can drag over] the specified drop position. + + The drop position. + The target node element. + + + + + Cancels the preview drag drop. + + The instance containing the event data. + + + + + Gets the editor element. + + The editor. + + + + + Gets the editor. + + The editor. + + + + Gets or sets the type of the editor. + + The type of the editor. + + + + Creates the element. + + The data. + The context. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Synchronizes this instance. + + + + + Updates the descriptor value. + + The value. + + + + Gets the logical operator form text. + + The text. + + + + + Gets the logical operator of group node. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the size of the editor. + + Size of the available. + The editor element. + + + + + Gets the group node. + + The group node. + + + + Gets the logical operator element. + + The logical operator element. + + + + Gets the text element. + + The text element. + + + + Gets the logical operator. + + The logical operator. + + + + Adds child descriptor. + + The descriptor to add. + + + + Removes child descriptor. + + The descriptor to remove. + + + + Removes the current tree node from the tree view control. + + + + + Gets or sets the associated composite descriptor. + + The composite descriptor. + + + + Gets or sets the logical operator of associated CompositeDescriptor. + + The logical operator. + + + + Gets or sets the associated add node. + + The associated add node. + + + + Gets or sets the full desired size calculated by the virtualized container + + + + + Gets the first found item, with property name equal to item descriptor name specified, case-sensitive. + + RadItem if found, null (Nothing in VB.NET) otherwise + + + + + Gets the operator. + For example: If the operator is LIKE and the value is '%s%' - returns Contains. + + The filter operator. + The value. + + + + + Gets the display value. Returns a value depending on filter operator. + + The filter operator. + The value. + + + + + Gets the display name from localization provider. + + The filter operator. + The value. + + + + + Gets the filter operations that are suitable for the given data type. + + Type of the data. + + + + + Gets the name. + + The name. + + + + Gets the operator. + + The operator. + + + + Updates the properties from current SourceControl. + + + + + Gets the field names. + + + + + + Applies the filter to the SourceControl. + + The expression. + Thrown if the SourceControl is not initialized. + Thrown if the SourceControl is not implementer of System.ComponentModel.IBindingListView, System.Data.DataTable or System.Data.DataView + + + + Gets the type of the field. + + Name of the field. + + + + + Gets the property descriptor. + + Name of the property. + + + + + Gets or sets the source control. + + The source control. + + + + Gets or sets the property descriptors. + + The property descriptors. + + + + Creates the provider. + + The source control. + + + + + Applies the filter expression to the DataFilter. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the data filter. + + The data filter. + + + + Gets or sets the data source of DataFilter. + + The data source. + + + + RadDataFilter localization strings. + + + + + Provides localization services for RadDataFilter. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + Displays a hierarchical collection of filter expressions. + + + + + Displays a hierarchical collection of labeled items, each represented by a RadTreeNode. + + + + + Sets the error. + + The text. + The RAD tree node. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The new node if the operation is successful. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The path separator. + The new node if the operation is successful. + + + + Gets a node by specifying a path to it. + + The path to the node. + The node if found. + + + + Gets a node by specifying a path to it. + + The path to the node. + The path separator. + The node if found. + + + + Gets a node with the specified name. + + The name of the node. + A node with the specified name. + + + + Gets a node with the specified name. + + The name of the node. + /// The node which the should be taken as a root. + A node with the specified name. + + + + Brings the into view. + + The node. + + + + Finds the specified match. + + The match. + + + + + Finds the specified match. + + The match. + The argument. + + + + + Finds the specified text. + + The text. + + + + + Execute the specified action for every RadTreeNode in the tree + + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Finds the nodes. + + The text. + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Begins the edit. + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Loads the XML. + + Name of the file. + The extra types that will be load + + + + Loads the XML. + + The stream. + The extra types that will be load + + + + Saves the XML. + + Name of the file. + The extra types that will be saved + + + + Saves the XML. + + The stream. + The extra types that will be saved + + + + Disables any update of the tree view. + + + + + Ends the update. + + + + + Defers the refresh. + + + + + + Collapses all the tree nodes. + + + + + Collapses all nodes in a given collection. + + The collection of nodes to be collapsed. + + + + Expands all the tree nodes. + + + + + Expands all nodes in a given collection. + + The collection of nodes to be expanded. + + + + Retrieves the tree node that is at the specified point. + + The System.Drawing.Point to evaluate and retrieve the node from. + The System.Windows.Forms.TreeNode at the specified point, in tree view (client) coordinates, or null if there is no node at that location. + + + + Retrieves the tree node at the point with the specified coordinates. + + The System.Drawing.Point.X position to evaluate and retrieve the node from. + The System.Drawing.Point.Y position to evaluate and retrieve the node from. + The System.Windows.Forms.TreeNode at the specified location, in tree view (client) coordinates, or null if there is no node at that location. + + + + Retrieves the number of tree nodes, optionally including those in all subtrees, assigned to the tree view control. + + The number of tree nodes, optionally including those in all subtrees, assigned to the tree view control. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Executes a command over an entire subtree starting with the specified nodes. + + The nodes form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The results from the batch execution. + + + + Executes a command over an entire subtree starting with the specified node. + + The node form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The first result from the batch execution. + + + + Executes a command over an entire subtree starting with the specified node. + + The node form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The results from the batch execution. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a value indicating whether the TreeView load child Nodes collection in NodesNeeded event only when Parent nodes expanded. + + true if [lazy mode]; otherwise, false. + + + + Gets or sets the color of the drop hint. + + + The drop feedback is a visual cue that assists the user with information where to + drop during the drag and drop operation. + + ShowDropHint Property + + The default value is + + black. + + + + + Gets or sets a value indicating whether [show drop feedback]. + + true if [show drop feedback]; otherwise, false. + + + + Gets or sets a value indicating whether [show drop feedback]. + + true if [show drop feedback]; otherwise, false. + + + + Contains data binding settings for related data. + + + + Gets or sets the type of the expand animation enumeration. + AllowPlusMinusAnimation enumeration + PlusMinusAnimationStep Property + ExpandAnimation Enumeration + + The default value is ExpandAnimation.Opacity. + + + + Gets or sets the opacity animation step for expand/collapse animation. + + Returns a double value from double.Epsilon to 1 representing the opacity changing step with + which the plus minus buttons are animated. The default value is 0.025. + + + + + Gets or sets a value indicating whether animation of collapse/expand images is enabled. + + ShowExpanCollapse Property + PlusMinusAnimationStep Property + The default value is false. + + + + The default image index for nodes. + + The index of the image. + + + + The default image key for nodes. + + The image key. + + + + Gets or sets a value indicating whether drag and drop operation with treeview + nodes is enabled. + + AllowDragDropBetweenTreeViews Property + AllowDrop Property (Telerik.WinControls.UI.RadTreeNode) + The default value is false. + + + + Gets or sets a value indicating whether the user is allowed to select more than one tree node at time + + true if [multi select]; otherwise, false. + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets the associated with this control. + + + + The for this control, or null if there is no . The default is null. + + + + + Gets or sets the filter. + + The filter. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets a value indicating whether checkboxes are displayed beside the nodes. + + The default value is false. + + + + Gets or sets a value indicating whether the child nodes should be auto checked when RadTreeView is in tri state mode + + The default value is false. + + + + Gets or sets a value indicating whether the highlight spans the width of the tree + view. + + The default value is false. + + + + Gets or sets a value indicating whether [hide selection]. + + true if [hide selection]; otherwise, false. + + + + Gets or sets a value indicating whether [hot tracking]. + + true if [hot tracking]; otherwise, false. + + + + Gets or sets the indent. + + The indent. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets a value indicating whether nodes can have different height. + + The default value is false. + + + Gets or sets the spacing in pixels between nodes. + The default value is 0. + + + + Gets or sets a value indicating whether editing is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether adding new nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether removing nodes is allowed. + + true if [allow edit]; otherwise, false. + + + Gets a value indicating whether there is an open editor in the tree view. + + + Gets the active editor in the tree. + + The IValueEditor Interface if any. + + + + + Gets or sets the color of the line. + + The color of the line. + + + + Gets or sets the path separator. + + The path separator. + + + + Gets or sets the selected node. + + The selected node. + + + + Gets the checked nodes. + + The checked nodes. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets a value indicating whether expand/collapse (plus-minus) buttons are + shown next to nodes with children. + + The default value is true. + + + + Gets the top node. + + The top node. + + + + Gets the visible count. + + The visible count. + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the display member. + + The display member. + + + + Gets or sets the value member. + + The value member. + + + + Gets or sets the checked member. + + The checked member. + + + + Gets or sets the child member. + + The child member. + + + + Gets or sets the parent member. + + The parent member. + + + + Gets or sets a that will be used to convert the toggle state of the checkboxes + to the underlying data type it is bound to. + + + + + Gets the collection of tree nodes that are assigned to the tree view control. + + A System.Windows.Forms.TreeNodeCollection that represents the tree nodes assigned to the tree view control. + + + + Gets the tree view element. + + The tree view element. + + + + Gets the Horizontal scroll bar. + + The Horizontal scroll bar. + + + + Gets the Vertical scroll bar. + + The Vertical scroll bar. + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Dot. + + + + + Gets or sets a value indicating whether tri state mode is enabled. + + The default value is false. + + + + Gets or sets a value indicating the default tree view toggle mode. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadTreeView is focused. + + The default value is false. + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + The default value is 300ms. + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + RadTreeView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadTreeView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Occurs when the RadTreeView NodesNeeded event is handled and LazyMode property is true. + + + + + Occurs when the RadTreeView report the data error. + + + + + Occurs when the user begins dragging an item. + + + + + Occurs when TreeView required editor. + + + + + Occurs before the tree node label text is edited. + + + + + Occurs when initializing the active editor. + + + + + Occurs after the tree node label text is edited. + + + + + Occurs when the editor is changing the value during the editing process. + + + + + Occurs when the editor finished the value editing. + + + + + Occurs when the editor changed the value editing. + + + + + Occurs when editor validating fails. + + + + + Occurs when a drag is ending + + + + + Occurs when a drag has ended + + + + + Occurs when a drag is starting + + + + + Occurs when a drag has started + + + + + Occurs when drag feedback is needed for a node. + + + + + Occurs before a tree node is selected. + + + + + Occurs after the tree node is selected. + + For more information about handling events, see also SelectedNodeChanging. + + + + + + Occurs when selected nodes has been cleared. + + + + + Occurs when SelectedNodes collection has been changed. + + + + + Occurs when the user presses a mouse button over a RadTreeNode. + + + + + Occurs when the user releases a mouse button over a RadTreeNode. + + + + + Occurs when the user moves the mouse in the area of a RadTreeNode. + + + + + Occurs when the mouse enters the area of a RadTreeNode. + + + + + Occurs when the mouse leaves the area of a RadTreeNode. + + + + + Occurs when the mouse hovers over a RadTreeNode. + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when the value of the Checked property of a RadTreeNode is changing. + + + + + Occurs when the value of the Checked property of a RadTreeNode is changed. + + + + + Occurs before the value of the Expanded property of a tree node is changed. + + + + + Occurs after the value of the Expanded property of a tree node is changed. + + + + + Occurs when the Nodes collection requires to be populated in Load-On-Demand mode using LazyTreeNodeProvider. + + + + + Occurs when the node changes its state and needs to be formatted. + + + + + Occurs when a new node is going to be created. + + + + + Occurs when a new node element is going to be created. + + + + + Occurs when opening the context menu. + + + + + Occurs after a node is removed. + + + + + Occurs before a node is removed. + + + + + Occurs after a node is being added. + + + + + Occurs after a node is bound to a data item. + + + + + Occurs before a node is being added. + + + + + Gets or sets a value indicating whether single node expand is enabled. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Applies the filter to the DataSource. + + + + + Signals the object that initialization is complete. + + + + + Loads the XML with reader. + + The reader. + The extra types. + + + + Saves the XML with writer. + + The writer. + The extra types. + + + + Gets or sets the auto generate descriptor items. + + The auto generate descriptor items. + + + + A collection of descriptor items used to identify the property names and their corresponding types. + + + + + Gets or sets the data source that the is displaying filters for. + + + + + Gets the data filter element. + + The data filter element. + + + + Gets or sets the expression. + + The expression. + + + + Gets or sets a value indicating whether the name of fields in fields drop down should be sorted. + + + + + Gets or sets a value indicating how the field names are sorted when SortFieldNames is true. + + + + + Gets the collection of tree nodes. + + + A System.Windows.Forms.TreeNodeCollection that represents the tree nodes assigned to the data filter control. + + + + + Gets or sets a value indicating whether drag and drop operation with RadDataFilter + nodes is enabled. + + AllowDragDropBetweenTreeViews Property + AllowDrop Property (Telerik.WinControls.UI.RadTreeNode) + The default value is false. + + + + Gets or sets a value indicating whether adding new nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether removing nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether editing is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets the color of the line. + + The color of the line. + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Solid. + + + + + Gets or sets a value indicating the default tree view toggle mode. + + + + + Occurs when a property text is about to be displayed on the screen. Allows the developer to substitute property names with + user-friendly display strings. + + + + + Raises the event. + + The instance containing the event data. + + + + Sets the error. + + The text. + The RAD tree node. + The context where this error occured. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The new node if the operation is successful. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The path separator. + The new node if the operation is successful. + + + + Gets a node by specifying a path to it. + + The path to the node. + The node if found. + + + + Gets a node by specifying a path to it. + + The path to the node. + The path separator. + The node if found. + + + + Gets a node with the specified name. + + The name of the node. + A node with the specified name. + + + + Gets a node with the specified name. + + The name of the node. + /// The node which the should be taken as a root. + A node with the specified name. + + + + Puts the current node in edit mode. + + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Updates the visual items in the three view + + Indicated the update action + + + + Updates the visual items in the three view + + Indicated the update action + Array representing the nodes which should be updated + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Defers the refresh. + + + + + + Collapses all. + + + + + Expands all. + + + + + Gets an enumerator which enumerates all nodes in the tree. + + The enumerator. + + + + Gets an enumerator which enumerates all descendant nodes of a node. + + The enumerator. + + + + Gets the node at. + + The x. + The y. + + + + + Gets the node at. + + The pt. + + + + + Gets the node element at. + + The x. + The y. + + + + + Gets the node element at. + + The pt. + + + + + Gets the node count. + + if set to true [include sub trees]. + + + + + Finds the specified match. + + The match. + + + + + Finds the specified text. + + The text. + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Finds the nodes. + + The text. + + + + + Execute the specified action for every RadTreeNode in the tree + + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Scrolls to. + + The delta. + + + + Ensures that the specified tree node is visible within the tree view element, scrolling the contents of the element if necessary. + + The node to scroll into view + + + + Ensures that the specified tree node is visible within the tree view element, scrolling the contents of the element if necessary. + This method expands parent items when necessary. + + The node to bring into view + + + + This method traverses through the visible nodes of RadTreeView and returns a node that matches the . + + + + + + + Occurs when [data error]. + + + + + Occurs when [binding context changed]. + + + + + Occurs when is formatting + + + + + Occurs when is created. + + + + + Occurs when is created. + + + + + Occurs after a node is bound to a data item. + + + + + Occurs when is mouse down. + + + + + Occurs when is mouse up. + + + + + Occurs when mouse is move over a . + + + + + Occurs when LazyMode is true and NodesNeeded event is handled + + + + + Occurs when mouse enters a + + + + + Occurs when mouse leaves a + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when is hovered. + + + + + Occurs when node's checked state is changing. + + + + + Occurs when node's checked state is changed. + + + + + Occurs when node is expanding. + + + + + Occurs when node has been expanded. + + + + + Occurs when the selected node is changing + + + + + Occurs when selected node has been changed. + + + + + Occurs when selected node has been cleared. + + + + + Occurs when SelectedNodes collection has been changed. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when node's value is changing. + + + + + Occurs when node's value has been changed. + + + + + Occurs when node's value is validating. + + + + + Occurs when validation error occurs by canceling the ValueValidating event. + + + + + Occurs when the user begins dragging an item. + + + + + Occurs when a drag is starting + + + + + Occurs when a drag has started + + + + + Occurs when a drag is ending + + + + + Occurs when a drag has ended + + + + + Occurs when drag feedback is needed for a node. + + + + + Occurs when nodes are needed in load on demand hierarchy + + + + + Occurs after a node is removed. + + + + + Occurs after a node is being added. + + + + + Gets or sets the default sort Comparer for RadTreeView. The default comparer compares the nodes according to their text. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether the TreeView load child Nodes collection in NodesNeeded event only when Parend nodes expanded. + + true if [lazy mode]; otherwise, false. + + + + Gets or sets a value indicating whether the child nodes should be auto checked when RadTreeView is in tri state mode + + The default value is false. + + + + Contains data binding settings for related data. + + + + Gets or sets the type of the expand animation enumeration. + AllowPlusMinusAnimation enumeration + PlusMinusAnimationStep Property + ExpandAnimation Enumeration + + + The default value is ExpandAnimation.Opacity. + + + + Gets or sets the opacity animation step for expand/collapse animation. + + Returns a double value from double.Epsilon to 1 representing the opacity changing step with + which the plus minus buttons are animated. The default value is 0.025. + + + + + Gets or sets a value indicating whether animation of collapse/expand images is enabled. + + ShowExpanCollapse Property + PlusMinusAnimationStep Property + The default value is false. + + + + The default image index for nodes. + + The index of the image. + + + + The default image key for nodes. + + The image key. + + + + + Gets or sets a value indicating whether [tri state mode]. + + true if [tri state mode]; otherwise, false. + + + + Gets or sets the toggle mode. + + The toggle mode. + + + + Gets or sets the drag drop service used when dragging nodes within RadTreeView or between different instances of RadTreeView. + + The drag drop service. + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where an item will be dropped after a drag operation. + + + + + Gets the last node. + + The last node. + + + + Gets or sets a value indicating whether [allow drag drop]. + + true if [allow drag drop]; otherwise, false. + + + + Gets or sets a value indicating whether [multi select]. + + true if [multi select]; otherwise, false. + + + + Gets or sets a value indicating whether [show expander]. + + true if [show expander]; otherwise, false. + + + + Gets the selected nodes. + + The selected nodes. + + + + Gets the checked nodes. + + The checked nodes. + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating whether [check boxes]. + + true if [check boxes]; otherwise, false. + + + + Gets or sets a value indicating whether [hide selection]. + + true if [hide selection]; otherwise, false. + + + + Gets or sets a value indicating whether [hot tracking]. + + true if [hot tracking]; otherwise, false. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets the active editor. + + The active editor. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets the default RadTreeNode edit mode. + + The edit mode. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets a value indicating whether there is an open editor in the tree view. + + + + + Gets or sets the selected node. + + The selected node. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets a value indicating whether [show root lines]. + + true if [show root lines]; otherwise, false. + + + + Gets or sets a value indicating whether [show node tool tips]. + + true if [show node tool tips]; otherwise, false. + + + + Gets the first visible tree node in the tree view. + + + + + Gets or sets the color of the lines connecting the nodes in the tree view. + + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Dot. + + + + + Gets the number of tree nodes that are visible in the tree view + + + + + Gets or sets the path separator. + + The path separator. + + + + Gets or sets the tree node provider. + + The tree node provider. + + + + Gets or sets the binding context. + + The binding context. + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets the nodes. + + The nodes. + + + + Gets or sets the indent of nodes, applied to each tree level. + + + + + Gets or sets the filter. + + The filter. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a property name which will be used to extract a value from the data items. The value of the property with + this name will be available via the Value property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to extract the checked state of the data items. The value of the property with + this name will be available via the Checked property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the text of the data items. The value of the property with + this name will be available via the Text property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a that will be used to convert the toggle state of the checkboxes + to the underlying data type it is bound to. + + + + + Gets or sets the expand image + + + + + Gets or sets the expand image + + + + + Gets or sets the hovered expand image + + + + + Gets or sets the hovered collapse image + + + + + Gets or sets a value indicating whether nodes can have different height. + + The default value is false. + + + + Gets or sets a value indicating whether to select the full row. + + The default value is false. + + + + Gets or sets the vertical spacing among nodes. + + + + + Gets or sets the alternating row color. + + + + + Gets or sets a value indicating whether to show rows with alternating row colors. + + + + + Gets the index of the first visible node. + + + + + Gets or sets a value indicating whether single node expand is enabled. + + + + + Gets or sets a property that controls the visibility of the horizontal scrollbar. + + + + + Gets or sets a property that controls the visibility of the vertical scrollbar. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether to scroll horizontally RadTreeView to ensure that the clicked node is visible. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Provides a callback so that the default filtering expression parser can be substituted. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadTreeViewElement is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Gets or sets the expand timer interval - this is the interval of time in milliseconds which will pass before a hovered node is being expanded during drag and drop operation. + + + The expand timer interval. + + + + + Builds the tree based on the collection of filter descriptors. + + + + + Applies the filter to the DataSource. + + + + + Adds child nodes, based on the given filter descriptor and its child descriptors. + + The filter. + The node, that will be the parent of created nodes. + + + + Removes the child node. + + The node to remove. + + + + Removes the child node. + + The parent node. + The child node. + + + + Clears the child nodes of given group node. + + The node. + + + + Validates if adding new node is allowed. + + + + + Gets the default name of field property. + + + + + Updates the value and operator of the descriptor. + + The descriptor. + + + + Gets the field names. + + + + + Gets the type of the editor. + + Type of the value. + + + + + Puts the current node in edit mode. + + + + + Ends the init. + + + + + Normalizes the expression. + + + + + Normalizes the child descriptor. + + The composite descriptor. + + + + Called when [editor required]. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Setups the drop down list. + + The criteria node. + The editor. + The display value. + + + + Gets the editor. + + Type of the editor. + + + + + Initializes the editor. + + Type of the value. + The editor. + + + + Gets the type of the field by given property name. + + Name of the property. + + + + Initializes the spin editor. + + The spin editor. + Type of the value. + + + + Saves the editor value. + + The node element. + The new value. + + + + Gets the designer host. + + + + + Updates the nodes collection by removing all the nodes that does not have corresponding property name in the Descriptors collection. + + + + + Fires the event. + + + + + Gets or sets the provider. + + The provider. + + + + Gets or sets the data source that the is displaying filters for. + + + + + Gets or sets the expression. + + The expression. + + + + A collection of descriptor items used to identify the property names and their corresponding types. + + + + + Gets or sets the auto generate descriptor items. + + The auto generate descriptor items. + + + + Gets or sets a value indicating whether the name of fields in fields drop down should be sorted. + + + + + Gets or sets a value indicating how the field names are sorted when SortFieldNames is true. + + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow drag drop]. + + true if [allow drag drop]; otherwise, false. + + + + Gets or sets the default date editor format. + + The default date editor format. + + + + Gets or sets the default custom date editor format. + + The default custom date editor format. + + + + Occurs when a property text is about to be displayed on the screen. Allows the developer to substitute property names with + user-friendly display strings. + + + + + Represents a to be used in control. + + + + + Represents an item of which can have an associated control. + Responsible for arranging the associated control within the . + Can display a text in addition to the control. + + + + + Gets the rectangle in which the text part will be arranged. + + The client area of the item. + The arrange rectangle of the text part. + + + + Gets the rectangle in which the associated control will be arranged. + + The client area of the item. + The arrange rectangle of the control. + + + + Updates the bounds of the associated control. + + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the proportional size of the text part which will be used + when TextSizeMode is set to proportional. + + + + + Gets or sets the fixed size of the text part which will be used + when TextSizeMode is set to fixed. + + + + + Gets or sets the minimum size of the text part. + + + + + Gets or sets the maximum size of the text part. + + + + + Gets or sets the way in which the text part will be sized - proportionally or fixed-size. + + + + + Gets or sets the control associated with this item. + + + + + Gets the arrange rectangle of the validation text label. + + The client rectangle of the item. + The arrange rectangle of the validation label. + + + + Gets or sets the fixed size of the validation label. If set to 0, the text will be autosized. + + + + + Gets the validation label element. + + + + + An extension of the which adds data binding functionality. + When set with a DataSource, RadDataLayout automatically generates editors for each + of the fields in the datasource. Provides validation functionality and additional + interface for displaying validation messages. + + + + + Initializes a new instance of the class. + + + + + Initializes the and the ValidationPanel + + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Updates the validation panel visibility. + + + + + Gets the instance of which is the main element + in the hierarchy tree and encapsulates the actual functionality of RadDataLayout. + + + + + Gets or sets the DataSource. Setting the DataSource will auto-generate editors + for the fields in it. + + + + + Gets or sets the number of columns which will be used to arrange generated controls. + + Number Of Columns should be at least one + + + + Gets the validation panel. + + + + + Gets the inner . + + + + + Gets or sets a value indicating whether the validation panel should appear. + + + + + Gets or sets a value indicating the flow direction of generated editors when the ColumnCount property has value bigger than 1. + + + + + The ItemDefaultHeight property sets the height that generated items should have. + + + + + Gets the BindingManagerBase manager that is used to manage the current DataSource. + + + + + If [true], the labels will have a fixed size, best-fitted to the largest text in the column. + If [false], the labels will have their default proportional size. + + + + + Gets the current object. + + + + + This property is not relevant for this class. + + + + + Occurs when the value of editor is changed. + + + + + Occurs when the value of editor is about to change. + + + + + Occurs when editor is being initialized. This event is cancelable + + + + + Occurs when the editor is Initialized. + + + + + This event is firing when the item associated with a given field is about to be Initialized. This event is cancelable.. + + + + + Occurs the item is already Initialized. + + + + + Occurs when a binding object for an editor is about to be created. This event is cancelable. + + + + + Occurs when binding object is created. + + + + + Gets the margin around the client area of the control. + In the default case, this should be the border thickness. + + + + + The main element of control. Handles the logic of creating and arranging items + when the control is databound. + + + + + The error icon property + + + + + Initializes the fields. + + + + + Binds this instance. + + + + + Clears this instance. + + + + + Initializes the data entry. + + + + + Finds the required properties. + + + + + Arranges the controls. + + + + + Creates a control with the specified type for a given property. + + The property. + The suggested editor type. + A Control instance. + + + + Generates the controls run time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Generates the controls design time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Creates the binding. + + The control. + Name of the property. + The data member. + Binding. + + + + Arranges the labels. + + + + + Gets the suggested editor type for the specified property type. + + The property type. + The type of the suggested editor. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + The ItemDefaultHeight property sets the height that generated items should have. + + + + + Gets or sets the number of columns which will be used to arrange generated controls. + + Number Of Columns should be at least one + + + + Gets or sets a value indicating the flow direction of generated editors when the ColumnCount property has value bigger than 1. + + + + + If [true], the labels will have a fixed size, best-fitted to the largest text in the column. + If [false], the labels will have their default proportional size. + + + + + Gets or sets the data source. + + + + + Gets the current object. + + + + + Gets the manager. + + + + + Gets or sets the icon of the Error provider. + + The error icon. + + + + Represents a data entry. The RadDataEntry class is essentially a simple wrapper + for the RadScrollablePanelElement. All UI and + logic functionality is implemented in the + RadScrollablePanelElement class. The RadDataEntry acts + to transfer the events to and from its corresponding + RadScrollablePanelElement instance. The + RadScrollablePanelElement may be nested in other + telerik controls. + + + + + The validation panel + + + + + The show validation panel + + + + + Initializes a new instance of the class. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Creates the panel element. + + RadScrollablePanelElement. + + + + Creates the controls instance. + + Control.ControlCollection. + + + + Wires the events. + + + + + Unwires the events. + + + + + This method initializes the scrollbars and the + container control. + + + + + This method inserts the scrollbars and the container + in the Controls collection of this control. + + + + + Handles the ControlRemoved event of the ValidationPanel control. + + The source of the event. + The instance containing the event data. + + + + Handles the ControlAdded event of the ValidationPanel control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemValidated event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemValidating event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the BindingCreated event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the BindingCreating event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the EditorInitialized event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the EditorInitializing event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemInitializing event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemInitialized event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Updates the validation panel visibility. + + + + + Gets or sets whether the edit control is auto-sized + + true if [automatic size]; otherwise, false. + + + + Gets the default size of the control. + + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets the instance of RadDataEntryElement wrapped by this control. RadDataEntryElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDataEntry. + + The data entry element. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets a value indicating whether the amount of columns that RadDataEntry will use to arrange generated controls. + + The number of columns. + + + + Gets or sets a value indicating whether the generated editors should fit their width to width of the RadDataEntry. + + true if [fit to parent width]; otherwise, false. + + + + Gets the validation panel. + + The validation panel. + + + + Gets or sets a value indicating whether [show validation panel]. + + true if [show validation panel]; otherwise, false. + + + + Gets or sets a value indicating whether generating flow of editors when the ColumnCount property has value bigger than 1. + + The flow direction. + + + + Gets or sets the between the generated items. + + The item space. + + + + The ItemDefaultSize property sets the size that generated items should have if FitToParentWidth property has value false. + When property the FitToParentWidth has value true the width of items are calculated according the width of the RadDataEntry + + The default size of the item. + + + + Gets the BindingManagerBase manager that is used for current DataSource. + + The manager. + + + + In RadDataEntry control there is logic that arranges the labels of the editors in one column according to the longest text. + This logic can be controlled by the AutoSizeLabels property. + + true if [resize labels]; otherwise, false. + + + + Gets the current object. + + The current object. + + + + This property is not relevant for this class. + + + + + Occurs when the value of editor is changed. + + + + + Occurs when the value of editor is about to change. + + + + + Occurs when editor is being initialized. This event is cancelable + + + + + Occurs when the editor is Initialized. + + + + + This event is firing when the panel that contains the label, editor and validation label is about to be Initialized. This event is cancelable.. + + + + + Occurs the item is already Initialized. + + + + + Occurs when a binding object for an editor is about to be created. This event is cancelable. + + + + + Occurs when binding object is created. + + + + + This class represents the main element of the + control. This element contains + a + and a . + + + + + Creates an instance of the RadPanelElement class. + + + + + Gets an instance of the + class which represents the text of the panel. + + + + + Gets an instance of the class + which represents the border of the panel. + + + + + Gets an instance of the + class which represents the fill of the panel. + + + + + Creates an instance of the + class. This constructor is used by the Visual Studio Designer. + + + + + Creates an instance of the class. + + An instance of the + class which represents the owner of this container. + + + + Class RadDataEntryElement. + + + + + The error icon property + + + + + Initializes the fields. + + + + + Binds this instance. + + + + + Clears this instance. + + + + + Initializes the data entry. + + + + + Finds the required properties. + + + + + Arranges the controls. + + + + + Creates the enum. + + The property. + Control. + + + + Creates the text box. + + The property. + Control. + + + + Creates the image. + + The property. + Control. + + + + Creates the color. + + The property. + Control. + + + + Creates the boolean. + + The property. + Control. + + + + Creates the date time. + + The property. + Control. + + + + Generates the controls run time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Generates the controls design time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Setups the inner controls. + + The pair. + Size of the property item control. + The property item control location. + The property item container. + The label control. + The validation control. + The editor control. + + + + Arranges the labels. + + + + + Creates the binding. + + The control. + Name of the property. + The data member. + Binding. + + + + Converts the image to icon. + + The image. + Icon. + + + + Clears the borders. + + + + + Handles the Validated event of the control control. + + The source of the event. + The instance containing the event data. + + + + Handles the Validating event of the control control. + + The source of the event. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Gets or sets a value indicating whether the amount of columns that RadDataEntry will use to arrange generated controls. + + The number of columns. + Number Of Columns should be at least one + + + + Gets or sets a value indicating whether generating flow of editors when the ColumnCount property has value bigger than 1. + + The filling order. + + + + Gets or sets the between the generated items. + + The item space. + + + + Gets or sets a value indicating whether the generated editors should fit their width to width of the RadDataEntry. + + true if [fit to parent width]; otherwise, false. + + + + The ItemDefaultSize property sets the size that generated items should have if FitToParentWidth property has value false. When property the FitToParentWidth has value true the width of items are calculated according the width of the RadDataEntry + + The default size of the item. + + + + In RadDataEntry control there is logic that arranges the labels of the editors in one column according to the longest text. This logic can be controlled by the AutoSizeLabels property. + + true if [resize labels]; otherwise, false. + + + + Gets or sets the data source. + + The data source. + + + + Gets the current object. + + The current object. + + + + Gets the manager. + + The manager. + + + + Gets the type of the theme effective. + + The type of the theme effective. + + + + Gets the data entry control. + + The data entry control. + + + + Gets or sets the icon of the Error provider. + + The error icon. + + + + Class RadBindingNavigator. + + + + + Creates the element. + + An instance of . + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Propagete ThemeName to child bar's menu + + + + + Apllies the orientation to the control and its child elements. + + The orientation to apply + Indicates whether events should be fired + + + + Gets the binding navigator element. + + The binding navigator element. + + + + Gets or sets the binding source. + + The binding source. + + + + Gets or sets the count item format. + + The count item format. + + + + Gets or sets a value indicating whether the control will handle internally the creation of new items. + + true if [automatic handle add new]; otherwise, false. + + + + Gets the rows of the binding navigator. + + + + + Gets or sets which RadBindingNavigator borders are docked to its parent control and determines + how a control is resized with its parent. + + + One of the values. The default + is . + + + The value assigned is not one of the + values. + + 1 + + + + Gets the menu opened upon rightclick on the control. + + + + + Gets the width and height of a rectangle centered on the point the mouse button was pressed, within which a drag operation will not begin. + + + + + Gets or sets the orientation of the RadBindingNavigator - could be horizontal or vertical. + This property is controlled by the Dock property of the RadBindingNavigator control. + + + + + This property is not relevant for this class. + + + + + Occurs before the orientation is changed. + + + + + Occurs after the orientation is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs after a floating strip is docked. + + + + + Occurs when opening the context menu. + + + + + Represents the RootElement of the RadBindingNavigator control. + + + + + Represents the main element of the RadCommandBar control. + Contains a collection of element. + + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is going to be floating. + True if the creating of a floating form should be canceled, False otherwise. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is made floating. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is going to be docked. + True if the docking of a floating form should be canceled, False otherwise. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that was docked. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Moves a specific to the upper . + + The element to move. + The that contains the element to move. + + + + Moves a specific to the lower . + + The element to move. + The that contains the element to move. + + + + Saves the visual state of the to a specified file. + + The name of the destination file. + + + + Saves the visual state of the to a specified stream. + + The destination stream. + + + + Saves the visual state of the to a specified XmlWriter. + + The XmlWriter to save the visual state data. + + + + Loads the visual state of the from a specified file. + + The name of the file containing the visual state data. + + + + Loads the visual state of the from a specified stream. + + The source stream. + + + + Loads the visual state of the from a specified XmlReader. + + The XmlReader to read the visual state data. + + + + Creates a floating form of a specified . + + The strip element of which the floating form should be created. + The that contains the strip element. + The initial location of the floating form. + + + + Creates an XmlDocument containing the current visual state data of the . + + The created document. + + + + Restores the visual state of the from the specified XmlDocument. + + The document containing the visual state data. + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs when a floating strip is docked. + + + + + Gets the object that provides information about strips owned by the . + + + + + Gets or sets the size in pixels when current strip is being Drag and Drop in next or previous row + + + + + Gets or sets the orientation of the . + + + + + Gets the rows of the . + + + + + Allows inheritors to provide custom load logic. + + + + + Maps the controls. + + + + + Adds the standard items. + + + + + Disposes the managed resources of this instance. + + + + + Creates the first top strip element child elements. + + + + + Creates the second bottom strip element child elements. + + + + + Attaches the events. + + + + + Unwires the buttons and text box events. + + + + + Handles the Click event of the FirstButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the PreviousButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the NextButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the LastButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the KeyDown event of the currentNumberTextBox control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the DeleteButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the AddNewButton control. + + The source of the event. + The instance containing the event data. + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Binds this instance. + + + + + Updates the visibility. + + + + + Updates the text box. + + + + + Updates the label text. + + + + + Updates the add new button visibility. + + + + + Gets or sets the command bar row element. + + The command bar row element. + + + + Gets the first top strip element. + + The first top strip element. + + + + Gets or sets the first button. + + The first button. + + + + Gets or sets the previous button. + + The previous button. + + + + Gets or sets the current number text box. + + The current number text box. + + + + Gets or sets the page label. + + The page label. + + + + Gets or sets the next button. + + The next button. + + + + Gets or sets the last button. + + The last button. + + + + Gets or sets the second bottom strip element. + + The second bottom strip element. + + + + Gets or sets the add new button. + + The add new button. + + + + Gets or sets the delete button. + + The delete button. + + + + Gets or sets the binding source. + + The binding source. + + + + Gets the type of the theme effective. + + The type of the theme effective. + + + + Gets or sets the image of the button that navigates to the first item. + + The first item button image. + + + + Gets or sets the image of the button that navigates to the previous item. + + The previous item button image. + + + + Gets or sets the image of the button that navigates next item. + + The next item button image. + + + + Gets or sets the image of the button that navigates to the last item. + + The last item button image. + + + + Gets or sets the image of the button that adds new item. + + The add new button image. + + + + Gets or sets the image of the button that deletes the current item. + + The delete button image. + + + + Gets or sets the count item format. + + The count item format. + + + + Gets or sets a value indicating whether the control will handle internally the creation of new items. + + true if adding new items is handled by the binding navigator; otherwise, false. + + + + Enumerate the which part will be included when checking for NullValue. + + + + + Only Date + + + + + Only Time + + + + + Both + + + + + Represents an arrow button element. Each telerik control has a + corresponding tree of RadElements; the RadArrowButtonElement can be nested + in other telerik controls. + + + + Gets the default size of the + + + Gets or sets the + %arrow direction:Telerik.WinControls.Primitives.ArrowPrimitive.ArrowDirection%. + + + Gets the BorderPrimitive object. + + + Gets the FillPrimitive object. + + + Gets the ArrowPrimitive object. + + + + If set to true shows and OverflowPrimitive instead of an ArrowPrimitive. + + + + + This class represents the dialog form shown to the user when they drop + a RadRibbonBar control on a RadForm control in the Visual Studio designer. + + + + + Creates an instance of the RadFormDesignerRibbonDialog + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + This is a base class for a behavior that can be associated with a + RadFormControlBase instance. The behavior defines the behavior and appearance of the form. + + + + + Creates an instance of the RadFormBehaviorBase class. + This instance has no Form associated with it. + + + + + Creates an instance of the RadFormBehaviorBase class. + + + An implementation of the IComponentTreeHandler which + this behavior applies to + + + + Creates an instance of the RadFormBehavior class. + + + An implementation of the IComponentTreeHandler which + this behavior applies to + + + + + Occurs when a form is associated with the behavior. + + + + + Gets the RadElement instance that represents the root element + containing the hierarchy that builds the visual appearance of the form. + + + + + Determines whether the CreateChildItems call is + routed to the handler of the behavior. + Used by the RadFormControlBase class. + + + + + Gets the width of the form border + + + + + Gets the height of the caption that is drawn + by the behavior. + + + + + Gets the margin that describes the size and position + of the client area. + + + + + A class that represents a border for a Form which is built by images. + + + + + Gets a Padding object that represents + the left, top, right and bottom width of the border. + + + + + Gets or sets the left Image which represents the + transition between the image border and the + title bar element. + + + + + Gets or sets the right Image which represents the + transition between the image border and the + title bar element. + + + + + Gets or sets the texture for the left image border. + + + + + Gets or sets the texture for the bottom image border. + + + + + Gets or sets the texture for the right image border. + + + + + Gets or sets the image for the bottom left border corner. + + + + + Gets or sets the image for the bottom right border corner. + + + + + This class represents the root element of a RadFormControlBase Element Tree. + This class is needed because some extended region calculations are needed when the control + is a Form and shape is applied to it. + + + + + Creates an instance of the FormRootElement class. + + The RadFormControlBase which is owner of this root element + + + + A standard behavior for RadForm. + + + + + This class represents a base class for all behaviors that + modify the non-client area of the form and enable custom painting + in it. + + + + + Creates an instance of the ThemedFormBehavior class. + + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + A flag that determines whether the CreateChildItems + call is rerouted to the behavior. + + + + This method transforms screen coordinates + into local coordinates. + + The screen point to transform. + The transformed point. If the handle of the associated Form is + not created, the method returns the input. + + + + This method returns the maximum available height according + to the current position of the form in multi-monitor setup. + + + + + + Fires when the window state of the form is changed. Uses the SIZE_* values + to define the window states. + + The old window state of the form. + The new window state of the form + + + + Immediately refreshes the whole non-client area of the form + which this behavior is associated with. + + + + + Invalidates the specified bounds in the non-client area + of the form this behavior is associated with. + + + + + + This event is fired when the WM_GETMINMAXINFO message is sent to the form. + + Contains information about the position, maximum/minimum size of the form etc. + Can be modified to adjust the settings applied to the form. + + + + This event is fired when the WM_NCPAINT message is sent to the form. + + The NC Graphics. + + + + Paints an element on a specified graphics. + + The Graphics object to paint on. + The clipping rectangle. + The element to paint. + + + + Gets a bool value that determines whether the Form's window state is maximized. + + + + + Gets a bool value that determines whether the Form's window state is minimized. + + + + + Gets a boolean value that determines whether the Form's window state is normal. + + + + + Gets an integer value that determines the current Form state: + Possible values come from the SIZE_RESTORED, SIZE_MAXIMIZED, SIZE_MINIMIZED win32 constants. + + + + + Gets a boolean value showing whether a MDI child form is maximized. + + + + + Gets the MdiClient control of the Form. + Returns null if the Form is not MdiContainer. + + + + + Gets a boolean value determining whether there is a Menu in the Form. + + + + + Gets the maximized MDI child if any. + + + + + This rectangle represents the top sizing frame of a window. + + + + + This rectangle represents the topleft sizing corner of a window. + + + + + This rectangle represents the left sizing frame of a window. + + + + + This rectangle represents the bottomleft sizing corner of a window. + + + + + This rectangle represents the bottom sizing frame of a window. + + + + + This rectangle represents the bottomright sizing corner of a window. + + + + + This rectangle represents the right sizing frame of a window. + + + + + This rectangle represents the topright sizing corner of a window. + + + + + This rectangle represents the caption frame of a window. + + + + + This rectangle represents the left border frame of a window. + + + + + This rectangle represents the bottom border frame of a window. + + + + + This rectangle represents the right border frame of a window. + + + + + This rectangle represents the client rectangle of a window. + + + + + Gets the rectangle that contains the menu of the form. + + + + + Gets the rectangle that contains the system buttons of the form. + + + + + Gets the rectangle that contains the form's icon. + + + + + Gets the rectangle that contains the form's caption text. + + + + + Gets or sets a bool value indiciating + whether the behavior applies NC theming + to the form. + + + + + Gets the current form CreateParams settings. + + + + + Gets or sets the form associated with this behavior. + Used only in design-time. + IMPORTANT: This property can be assigned only one time. + An InvalidOperationException is thrown when the property + is assigned more than once. + + + + + Creates an instance of the RadFormBehavior class. + This instance has no Form associated with it. + + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + A flag that determines whether the CreateChildItems + call is rerouted to the behavior. + + + + Calculates the bounding rectangle of the vertical scrollbar. + + An instance of the Rectangle struct that represents + the position and the size of the vertical scrollbar + + + + Calculates the bounding rectangle of the horizontal scrollbar. + + An instance of the Rectangle struct that represents + the position and the size of the horizontal scrollbar. + + + + This method synchronizes the values of the standard vertical scrollbar + with the RadScrollBarElement in the Form's element hierarchy. + + + + + This method synchronizes the values of the standard horizontal scrollbar + with the RadScrollBarElement in the Form's element hierarchy. + + + + + Gets the Caption Height according to the Styles applied and + the current state of the form. + + A value representing the height of the caption. + + + + Gets a Padding object which represents the window NC margin according + to the currently set styles. + + The form NC margin. + + + + Calculates the client margin based on the current form and form element settings + + + + + + This method translates a point which is in client coordinates + to a point in NC coordinates. Used when the Form has captured the mouse + and NC mouse events have to be processed. + + A point in client coordinates. + The point in NC coordinates. + + + + Fires when a Form has been associated with the behavior. + + + + + This method adjusts the Element tree according + to the current AllowTheming property value. + If AllowTheming is true, the Element tree is painted, + otherwise not. + + + + + Changes the visibility of the separate items within the RadFormElement's element tree + according to the current Form state. + + The state of the Form as it comes from the WM_SIZE message + + + + This method adjusts the FormElement according to the styles currently applied to the Form. + For example, the MinimizeButton, MaximizeButton and CloseButton in the Title Bar are enabled/disabled + according to whether the corresponding window style is applied. + + + + + Gets the bounding rectangle of the sizing grip that appears + when both scrollbars are visible. + + + + + Gets the bounding rectangle of the horizontal scrollbar. + Returns an empty rectangle if the scrollbar is not visible. + + + + + Gets the bounding rectangle of the vertical scrollbar. + Returns an empty rectangle if the scrollbar is not visible. + + + + + Gets or sets a boolean value indicating + whether the behavior paints in the NC area of the + Form when OS is Vista or later and Composition is enabled. + + + + + Gets the Caption Height of the Form. + + + + + Gets the Border width of the Form. + + + + + Gets the margin that determines the position and size of the client + area of the Form. + + + + + A Delegate which is used for invoking the base implementation of WndProc of this form. + + + + + + This is the class that represents the element hierarchy which + is painted in the non-client area of a RadForm. + + + + + Gets or sets a boolean value to determine whether the form + should appear as active or inactive. + Using this property, you can override the default theme styles + which define different appearance of the form when in active/inactive state. + + + + + Gets the square element that appears at the end of the horizontal + scrollbar. + + + + + Gets the composed width of the border + built on the width of the line and image borders. + + + + + Gets the MdiControlStrip item that should appear + below the title bar when a MDI child is maximized. + + + + + Gets the BorderPrimitive of the RadFormElement. + + + + + Gets the FormImageBorderPrimitive of the RadFormElement. + + + + + Gets the RadFormTitleBarElement of the RadFormElement. + + + + + Gets the horizontal scrollbar element of the form element. + + + + + Gets the vertical scrollbar element of the form element. + + + + + Gets an instance of the + class that represents the fill of the MDI strip. + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + Gets the ImagePrimitive representing the Icon + of the currently maximized MDI child. + + + + + This class represents a Form that hosts a RadRibbonBar control and extends the behavior + of a standard form by providing Office 2007 form-like appearance. + + + + + Gets the RadRibbonBar control associated with this form. + + + + + Gets or sets a boolean value that determines + whether Vista Aero effects are enabled. + + + + + Creates an instance of the class. + + + + + Creates an instance of the class. + The implementation + which this behavior is associated with. + + + + + Creates an instance of the class. + + The associated implementation. + Determines whether the behavior + handles the CreateChildItems call. + + + + This method adjusts the form's element tree according to the composition state + of MS Windows. If Composition is enabled, the element tree is hidden and the glass + effects of the form are visible. + + + + + This method translates a point which is in client coordinates + to a point in NC coordinates. Used when the Form has captured the mouse + and NC mouse events have to be processed. + + A point in client coordinates. + The point in NC coordinates. + + + + Returns a zero for the caption height. + + + + + Gets an integer representing the top client margin of + the form when composition is enabled. + + + + + Gets a boolean value indicating whether composition effects + are enabled for the form. + + + + + Gets a value indicating whether composition effects are enabled for the Operating System. + + + + + Gets or sets value indicating whether the RadRibbonBar + is drawn over the Aero glass under Vista or later + versions of Windows. + + + + + This class serves as a dummy MenuStrip used by the RadRibbonFormBehavior + to prevent the default MDI caption from being painted when a MDI child is maximized + since the RadRibbonBar controls takes care to handle MDI children. + + + + + A class that represents the Border Primitive used in the new RadRibbonForm. + + + + + Gets or sets the color of the form's first broder. + + + + + Gets or sets the color of the form's second broder. + + + + + Gets or sets the color of the form's client area shadow. + + + + + This is the class that represents the element hierarchy which + is painted in the non-client area of a RadForm. + + + + + Gets the BorderPrimitive of the RadFormElement. + + + + + Represents a title bar element. All logic and UI functionality + is implemented in the RadFormTitleBarElement class. + You can use RadFormTitleBarElement events to substitute the title bar in a + borderless application. + + + + + Represents a title bar element. The RadTitleBar class is a simple + wrapper for the RadTitleBarElement class. The former acts to transfer events to and + from its corresponding RadTitleBarElement instance. All logic and UI functionality + is implemented in the RadTitleBarElement class. + You can use RadTitleBarElement events to substitute the title bar in a + borderless application. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Determines whether the parent form can be resized by dragging the title bar's edges. + + + + + Determines whether the parent form can be moved by dragging the title bar. + + + + + Fires when a close action is performed by the user (the close button is pressed + or the system menu is pressed twice). The system menu is not visible by default. + Use the Visual Style Builder to set which elements are visible and to change their + appearance. + + + + + Fires when a minimize action is performed by the user + + + + + Fires when a maximize/restore action is performed by the user (maximizes button + is pressed or the title bar is double clicked). + + + + + An Icon that represents the icon for the form. + + + + + Represents the default context menu for a . + + + + + Initializes a new instance of the class. + + The RadGanttView element. + + + + Raises the DropDownOpening event. + + The event arguments + + + + Called when the Add menu item is clicked. + + The menu item. + + + + Called when the Delete menu item is clicked. + + The menu item. + + + + Called when one of the Progress menu items is clicked. + + The menu item. + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Gets the add menu item. + + + The add menu item. + + + + + Gets the add child menu item. + + + The add child menu item. + + + + + Gets the add sibling menu item. + + + The add sibling menu item. + + + + + Gets the delete menu item. + + + The delete menu item. + + + + + Gets the progress menu item. + + + The progress menu item. + + + + + Gets or sets a value indicating whether progress menu items should be shown. + + + true if progress menu items should be shown; otherwise, false. + + + + + Gets or sets the step by which the progress values will increment. + + + The progress step. + + + + + Represents a menu item for the . + + + + + Initializes a new instance of the class. + + The command. + The text. + + + + Gets the command of this menu item. + + + The command. + + + + + Represents an abstract class containing the methods needed to be implemented so one can populate a + + + + + Initializes a new instance of the class. + + The gantt. + + + + Gets the items. + + + + + + Sets the current. + + The GanttView data item. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets the Gantt view. + + The Gantt view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Represents a class that describes the relations used to extract data from a data source to populate a . + + + + + Gets or sets the name of the relation. + + The name of the relation. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets the tasks data member. + + The data member. + + + + Gets or sets the links data member. + + The data member. + + + + Gets or sets the title member. + + The title member. + + + + Gets or sets the parent member. + + The parent member. + + + + Gets or sets the child member. + + The child member. + + + + Gets or sets the start member. + + The start member. + + + + Gets or sets the end member. + + The end member. + + + + Gets or sets the progress member. + + The progress member. + + + + Gets or sets the link start member. + + The link start member. + + + + Gets or sets the link end member. + + The link end member. + + + + Gets or sets the link type member. + + The link type member. + + + + Represents the converter used to convert the type of the links from/to the data source format to/from the enumeration. + + + + + Converts the given value to a instance. + + The value. + + + + + Converts a instance to another type; + + Type of the link. + + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Represents the data item uses to represent the data it is displaying. + + + + + Initializes a new instance of the class. + + + + + Sets a boolean property. + + Name of the property. + The property key. + The new value. + + + + + Notifies the that the expanded property of this item changed. + + The item. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Expands this item. + + + + + Performs an update with the specified update actions. + + The update actions. + + + + Updates the parent item. + + + + + Sets the data bound item for this data item. + + if set to true the method assumes the data is set through data binding. + The value. + DataBoundItem can not be set explicitly in bound mode. + + + + Called when the Start property of a child item changes. + + The child item which Start changed. + + + + Called when the End property of a child item changes. + + The child item which End changed. + + + + Called when the Progress property of a child item changes. + + The child item which Progress changed. + + + + Called when a child item is added. + + The child item that is added. + + + + Called when a child item is removed. + + The child item that is removed. + + + + Called when the collection that will hold this children of this item is being created. + + + + + + Called when a child Start or End changes. + + + + + Called when a child progress changes. + + + + + Gets or sets the title. + + + The title. + + + + + Gets or sets the start. + + + The start. + + + + + Gets or sets the end. + + + The end. + + + + + Gets or sets the progress. + + + The progress. + + + + + Gets or sets a value indicating whether this is visible. + + + true if visible; otherwise, false. + + + + + Gets or sets the tag. + + + The tag. + + + + + Gets the child items of this item. + + + The child items. + + + + + Gets or sets a value indicating whether this instance is current. + + + true if this instance is current; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is selected. + + + true if this instance is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is enabled. + + + true if this instance is enabled; otherwise, false. + + + + + Gets the hierarchy level of this task. + + The level. + + + + Gets the parent of this data item. + + The parent. + + + + Gets the index of this item in its parent items collection. + + The index. + + + + Gets or sets a value indicating whether this item is expanded. + + + true if this item is expanded; otherwise, false. + + + + + Gets the next item. + + The next item. + + + + Gets the prev visible item. + + The prev visible item. + + + + Gets or sets a value indicating whether the item is read only. + + + true if the item is read only; otherwise, false. + + + + + Gets or sets the context menu associated to the item. + + + Returns an instance of RadDropDownMenu Class that + is associated with the node. The default value is null. + + RadContextMenu Property (Telerik.WinControls.UI.RadTreeView) + + This property could be used to associate a custom menu and replace the ganttview's + default. If the context menu is invoked by right-clicking an item, the ganttview's menu + will not be shown and the context menu assigned to this item will be shown instead. + + + + + Gets a value indicating whether this data item is used in the RadGanttView. + + + + + Gets the data bound item. + + + The data bound item. + + + + + Gets or sets the value within the specified column of this item. + + + The value. + + The column. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The owner. + + + + Refreshes this instance. + + + + + Gets the gantt view data item enumerator. + + + + + + Gets the gantt view data item enumerator. + + The position. + + + + + Gets the gantt view data item enumerator. + + The item. + + + + + Updates this instance. + + + + + Updates the view. + + + + + Inserts the item at the specified index. + + The index. + The item. + + + + + Sets the item at the specified index. + + The index. + The item. + + + + Removes the item at the specified index. + + The index. + + + + Removes all the items. + + + + + Raises the NotifyCollectionChanged event. + + The item. + + + + Raises the NotifyCollectionChanging event. + + The item. + + + + Raises the event. + + The instance containing the event data. + + + + Syncs the version of this collection with the binding provider. + + + + + Resets the version of this collection. + + + + + Gets the owner. + + The owner. + + + + Gets the gantt view. + + The tree view. + + + + Gets a value indicating whether the collection needs a refresh. + + + true if a refresh is needed; otherwise, false. + + + + + Gets a value indicating whether this instance is empty. + + + true if this instance is empty; otherwise, false. + + + + + Initializes a new instance of the class. + + The owner. + + + + Determines the index of a specific item. + + The object to locate. + + The index of if found in the collection; otherwise, -1. + + + + + Inserts an item to the collection at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the collection. + + + + Adds the item to the collection. + + The object to add. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + + + Removes all items. + + + + + Determines whether the collection contains a specific value. + + The object to locate. + + true if is found; otherwise, false. + + + + + Copies all items to the given array. + + The array. + Index of the array. + + + + Removes the first occurrence of a specific object. + + The object to remove. + + true if was successfully removed; otherwise, false. + + + + + Returns an enumerator that iterates through the collection. + + + An IEnumerator that can be used to iterate through the collection. + + + + + Gets the gantt view data item enumerator. + + + + + + Gets the gantt view data item enumerator. + + The position. + + + + + Gets the gantt view data item enumerator. + + The item. + + + + + Updates this instance. + + + + + + Updates the view. + + + + + + Gets or sets the element at the specified index. + + The index. + + + + + Gets the number of elements contained in this collection. + + + The number of elements contained in this collection. + + + + + Gets a value indicating whether ththis collection is read-only. + + true if this collection is read-only; otherwise, false. + + + + + Gets a value indicating whether this instance is attached. + + + true if this instance is attached; otherwise, false. + + + + + Gets a value indicating whether this instance is empty. + + + true if this instance is empty; otherwise, false. + + + + + Represents a data item used by to store links. + + + + + Raises the event. + + The name of the property that changed. + + + + Raises the event. + + The instance containing the event data. + + + + Sets the data bound item for this link. + + if set to true the method assumes the value is set through data binding. + The value. + DataBoundItem can not be set explicitly in bound mode. + + + + Gets or sets the start item for this link. + + + The start item. + + + + + Gets or sets the end item for this link. + + + The end item. + + + + + Gets or sets the type of this link. + + + The type of the link. + + + + + Gets the data bound item of this link. + + + The data bound item. + + + + + Gets the points wehre this link will be drawn. + + + The lines. + + + + + Gets the that owns this link. + + + The gantt view element. + + + + + Occurs when a property value changes. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The gantt view element. + + + + Refreshes this instance. + + + + + Syncs the version of this instance with the binding provider. + + + + + Resets the version of this instance. + + + + + Inserts the item at the specified index. + + The index. + The item. + + + + + Sets the item at the specified index. + + The index. + The item. + + + + Removes the item at the specified index. + + The index. + + + + Removes all the items. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the that owns this collection. + + + The gantt view element. + + + + + Gets a value indicating whether this instance needs refresh. + + + true if a refresh is needed; otherwise, false. + + + + + Represents a column shown in . + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The name. + + + + Initializes a new instance of the class. + + The name. + The header text. + + + + Initializes a new instance of the class. + + The name. + The header text. + Name of the field. + + + + Fires the PropertyChanged event. + + Name of the property. + + + + Updates the width. + + + + + Gets or sets the name of the column. + + + The name. + + + + + Gets or sets a value indicating the type of the data this column is displaying. + + + + + Gets or sets the tag of the column. + + + The tag. + + + + + Gets or sets the header text of the column. + + + The header text. + + + + + Gets or sets the name of the field used to populate this column + + + The name of the field. + + + + + Gets or sets the format string. + + + The format string. + + + + + Gets or sets a value indicating whether this is visible. + + + true if visible; otherwise, false. + + + + + Gets or sets a value indicating whether this is current. + + + true if current; otherwise, false. + + + + + Gets the that is the owner of this column. + + + The owner. + + + + + Gets or sets the width of the column. + + + The width. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the accessor of the column. + + + The accessor. + + + + + Occurs when a property value changes. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The owner. + + + + Adds a column with the specified name. + + The name. + + + + Adds a column with the the specified name and header text. + + The name. + The header text. + + + + Removes a column with the specified column name. + + Name of the column. + + + + Determines whether the collection contains a column with the specified column name. + + Name of the column. + + true if a column with the specified name is contained in the collection; otherwise, false. + + + + + Gets the index of the column with the specified name or -1 if the column is not found. + + Name of the column. + The index of the column if found otherwise returns -1. + + + + Adds the specified collection of columns to the collection. + + The columns. + + + + Adds the specified collection of columns to the collection. + + The columns. + + + + Renames the column with the specified name with the new name. + + The name. + The new name. + + + + Sets a unique name name to the column. + + The column. + + + + Gets a unique name for a column of the collection. + + A base name to use. + the unique name for the collection. + + + + Inserts the item. + + The index. + The column. + The approved action. + + + + Removes the item. + + The index. + + + + Clears the items. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the that owns this collection. + + + The owner. + + + + + Gets the with the specified column name. + + + The . + + Name of the column. + + + + + Defines the type of range the timeline of a will be displayed in. + + + + + Weeks view + + + + + Months view + + + + + Years view + + + + + Years view with half years for the sub items. + + + + + Years view with quarters for the sub items. + + + + + Days view + + + + + Days view with half hours for the sub items. + + + + + Days view with quarter hours for the sub items. + + + + + Hours view. + + + + + When this value is set the user is responsible for providing the items for the gantt timeline view. + + + + + Defines the type of the link a represents. + + + + + A finish to finish link. + + + + + A finish to start link. + + + + + A start to finish link. + + + + + A start to start link. + + + + + Defines when will enter edit mode. + + + + + Edit mode will begin on every click. + + + + + Edit mode will begin on second click. + + + + + Represents the event arguments for the CreateDataItem event of RadGanttView. + + + + + Gets or sets the data item. + + + The data item. + + + + + Represents the event arguments for the CreateLinkDataItem event of RadGanttView. + + + + + Gets or sets the link data item. + + + The link data item. + + + + + Represents the event arguments for an item event raised by RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Gets the item. + + + The item. + + + + + Represents the event arguments for a link event of RadGanttView. + + + + + Initializes a new instance of the class. + + The link. + + + + Gets the link. + + + The link. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the SelectedLinkChanging event of RadGanttView. + + + + + Represents the event arguments for a cancelable link event of RadGanttView. + + + + + Initializes a new instance of the class. + + The link. + + + + Gets the link. + + + The link. + + + + + Initializes a new instance of the class. + + The link data item. + + + + Represents the event arguments for the HeaderCellElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The cell element. + + + + Gets or sets the cell element. + + + The cell element. + + + + + Initializes a new instance of the class. + + The data item. + + + + Gets the data item. + + + + + Gets or sets the item element. + + + + + Represents the event arguments of the ContextMenuOpening event of . + + + + + Represents the event arguments for a cancelable item event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Gets the item. + + + The item. + + + + + Initializes a new instance of the class. + + The item. + The menu. + + + + Gets or sets the menu. + + + The menu. + + + + + Represents the event arguments for the DataCellElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The cell element. + + + + Gets or sets the cell element. + + + The cell element. + + + + + Represents the event arguments for the EditorRequired event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + Type of the editor. + + + + Gets the current column of the item. + + + The column. + + + + + Gets or sets the editor that will be used for editing. + + + The editor. + + + + + Gets or sets the type of the editor. + + + The type of the editor. + + + + + Represents the event arguments for the ExpandedChanged event of RadGanttView. + + + + + Represents the event arguments for the ExpandedChanging event of RadGanttView. + + + + + Represents the event arguments for the GraphicalViewItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents the event arguments for the ItemAdded event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemAdding event of RadGanttView. + + + + + Initializes a new instance of the class. + + The data item. + + + + Represents the event arguments for the ItemChildIdNeeded event of . + + + + + Initializes a new instance of the class. + + The item. + + + + Gets or sets the child id that will be used to identify the item. + + + The child id. + + + + + Represents the event arguments for the ItemDataBound event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemDataError event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The error text. + The context. + + + + Gets the error text. + + + The error text. + + + + + Gets the context of the error. + + + The context. + + + + + Represents the event arguments for the ItemEdited event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The editor. + if set to true [commit]. + + + + Gets a value indicating whether the edit operation will be committed. + + + true if commit; otherwise, false. + + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the ItemEditing event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + The editor. + + + + Gets the column. + + + The column. + + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the EditorInitialized event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The editor. + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the ItemElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The view element. + + + + Gets the view element. + + + The view element. + + + + + Gets or sets the item element. + + + The item element. + + + + + Represents the event arguments of the ItemPaint event of . + + + + + Initializes a new instance of the class. + + The element. + The graphics. + + + + Gets the element which is painted. + + + The element. + + + + + Gets the graphics object used for drawing. + + + The graphics. + + + + + Represents the event arguments for the ItemRemoved event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemValidated event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + + + + Gets the column. + + + The column. + + + + + Represents the event arguments for the ItemValidating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + The new value. + The old value. + + + + Gets the column. + + + The column. + + + + + Gets the new value. + + + The new value. + + + + + Gets the old value. + + + The old value. + + + + + Represents the event arguments for the LinkAdded event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the even arguments for the LinkAdding event of RadGanttView. + + + + + Initializes a new instance of the class. + + The link data item. + + + + Represents the event arguments for the LinkDataBound event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the LinkDataError event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The error text. + The context. + + + + Gets the error text. + + + The error text. + + + + + Gets the context of the error. + + + The context. + + + + + Represents the event arguments for the LinkRemoved event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the SelectedItemChanged event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the SelectedItemChanging event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the CellFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The cell element. + The column. + + + + Gets the column. + + + The column. + + + + + Gets the cell element. + + + The cell element. + + + + + Represents the event arguments for the ItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents the event arguments for the TimelineItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item. + + + The item. + + + + + Gets the item element. + + + The item element. + + + + + Localizes the strings in the control by using the current . + + + + + Loads the from the printed into the dialog + + The print settings. + + + + Loads the into the dialog. + + The print settings. + + + + Saves all settings form the dialog. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the settings edited in the dialog. + + + The print settings. + + + + + Displays a hierarchical collection of task items along with the relations between them. Each item is represented by a and each link is represented by a . + + + + + Creates the child items. + + The parent. + + + + Creates the . + + + + + + Determines whether the pressed key is input key. + + The key data. + + true if the pressed key is an input key; otherwise, false. + + + + + Disables all notifications in the RadGanttView + + + + + Ends the update. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Processes a dialog key. + + One of the values that represents the key to process. + + true if the key was processed by the control; otherwise, false. + + + + + Handles windows messages. + + The message. + + + + Hanles the windows message for showing the context menu. + + The m. + + + + Directly prints the to the default printer. + + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + As instance of used to control the print process. + + + + Shows a for editing the print settings. + + + + + Shows a for editing the print settings. + + As instance of used to control the print process. + + + + Called when the printing begins. + + The that has initiated the printing. + The event args. + + The number of pages that will be printed. + + + + + Called when the printing ends. + + The that has initiated the printing. + The event args. + + false if the printing was canceled + + + + + Prints the page with the specified number. + + The number of the current page. + The that has initiated the printing. + The event args. + + true if there are more pages, false otherwise + + + + + Gets a print settings dialog that is specific for the printable object. + + The that has initiated the printing. + + The dialog. + + + + + Draws the current page by slicing a portion of the big bitmap. + + The graphics object. + The printed page. + + + + Draws the grid portion of the gantt view and the graphical view to the big bitmap. + + The BMP. + + + + Draws the grid cells and graphical tasks to the bitmap. + + The graphics. + + + + Draws the links to the bitmap. + + The g. + + + + Draws the header and the timeline view items to bitmap. + + The BMP. + + + + Draws the timeline items to bitmap. + + The g. + + + + Draws the header cells to bitmap. + + The g. + + + + Prints a gantt view element to the graphics object. + + The Graphics object used for painting the element. + The print element context. + The rectangle of the print element. + The text of the print element. + The data item of the print element. + + + + Prints a gantt view element to the graphics object. + + The Graphics object used for painting the element. + The print element context. + The rectangle of the print element. + The text of the print element. + The data item of the print element. + The column name of the print element. + + + + Gets the shape of an element based on the print context and the provided rectangle. + + The context. + The rect. + + + + + Gets an initialized print element based on the provided context. + + The context. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item that will be printed. + The index of the item in a flat representation of the items hierarchy. + + + + + Gets the link lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the start to start lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the start to finish lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the finish to start lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the finish to finish lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Gets the collection of links. + + + The links. + + + + + Gets the collection of task items. + + + The task items. + + + + + Gets the collection of columns shown in the . + + + The columns. + + + + + Gets or sets the ratio between the text view and the graphical view. + + + The ratio. + + + + + Gets or sets the height of the items. + + + The height of the item. + + + + + Gets or sets the height of the header row and the timeline container. + + + The height of the header. + + + + + Gets or sets the width of the splitter. + + + The width of the splitter. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets or sets a value indicating whether summary items are editable by the user or their value is auto-calculated from their sub items. + + + + + Gets or sets the gantt view behavior. + + + The gantt view behavior. + + + + + Gets or sets the drag drop service. + + + The drag drop service. + + + + + Gets or sets a link type converter that will be used to convert values coming from the data source to and vice versa. + + + The link type converter. + + + + + Gets or sets the selected item. + + The selected item. + + + + Gets or sets the selected link. + + The selected link. + + + + Gets or sets the current column. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the name of the list or table in the data source from which the will extract tasks data. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the title of the data items. + + + + + Gets or sets a property name which will be used to extract the start of the data items. + + + + + Gets or sets a property name which will be used to extract the end of the data items. + + + + + Gets or sets a property name which will be used to extract the Progress of the data items. + + + + + Gets or sets the name of the list or table in the data source from which the will extract links data. + + + + + Gets or sets a property name which will be used to extract links start item. + + + + + Gets or sets a property name which will be used to extract the links end item. + + + + + Gets or sets a property name which will be used to extract the link type of the data items. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether custom painting is enabled. + + + true if custom painting is enabled; otherwise, false. + + + + + Gets the default size of the control. + + + The default of the control. + + + + + Gets or sets the context menu associated with the control. + + + A that represents the context menu associated with the control. + + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets or sets a instance, which enables integration with other controls. + + + The data provider. + + + + + Gets or sets a instance, which hold the default print settings. + + + The print settings. + + + + + Gets or sets a value indicating whether the gantt view is read only. + + + true if the gantt view is read only; otherwise, false. + + + + + RadGanttView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadGanttView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Occurs when an item needs an id for storing in data sources. + + + + + Occurs when an item is painted. Allows custom painting over the item. EnableCustomPainting must be set to true for this event to be fired. + + + + + Occurs when a context menu is about to be opened. + + + + + Occurs when a new data item is created. + + + + + Occurs when a new link data item is created. + + + + + Occurs before an is added to the Items collection. + + + + + Occurs before an is added to the Links collection. + + + + + Occurs when there is an error in the data layer of RadGanttView related to data operations with Item objects. + + + + + Occurs when there is an error in the data layer of RadGanttView related to data operations with Link objects. + + + + + Occurs when the selected item is about to be changed. + + + + + Occurs when selected item has been changed. + + + + + Occurs when the selected link is about to be changed. + + + + + Occurs when selected link has been changed. + + + + + Occurs when an item is about to be expanded or collapsed. + + + + + Occurs after an item is expanded or collapsed. + + + + + Occurs when an item is data bound. + + + + + Occurs when a new item is added to the Items collection. + + + + + Occurs when an item removed from the Items collection. + + + + + Occurs when an item's property is changed. + + + + + Occurs when a link is data bound. + + + + + Occurs when a new link added to the Links collection. + + + + + Occurs when a link is removed from the Links collection. + + + + + Occurs when a new header cell element needs to be created. + + + + + Occurs when a new data cell element needs to be created. + + + + + Occurs when the content of a cell needs to be formatted for display. + + + + + Occurs when an item in the state changes and it needs to be formatted. + + + + + Occurs when the state of a timeline item changes and it needs to be formatted. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a link item in the changes and it needs to be formatted. + + + + + Occurs when an item element needs to be created. + + + + + Occurs when a timeline item element needs to be created. + + + + + Occurs when an element will be printed. Allows formatting of the element. + + + + + Occurs after an element is printed. Allows for custom painting over the element. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + + + + Creates the the . + + The gantt view. + + + + + Creates the . + + + + + + Creates the . + + The gantt view. + + + + + Performs an update according the specified update action. + + The update action. + + + + Performs an update according the specified update action. + + The update action. + The items. + + + + Updates the visual items in the gantt view + + Indicates the update action + Array representing the items which should be updated + + + + Updates the instance when an item expanded state changes. + + The item. + + + + + Updates the scrollers on add. + + The item. + + + + Updates the scrollers. + + The skip item. + The update action. + + + + Synchronizes all item elements. + + + + + Creates a new task. + + A new + + + + Creates a new link. + + A new + + + + Begins an update. + + + + + Ends an update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Processes the item for selection. + + The item. + + + + Processes the item as current. + + The item. + + + + + Processes the item for selection. + + The item. + + + + Ensures that the specified item is visible within the gantt view element, scrolling the contents of the element if necessary. + + The item to scroll into view + + + + Ensures the item is visible vertically. + + The item. + The item element. + + + + + Ensures the item visible vertically. + + The item. + + + + + Ensures that the specified item is visible within the gantt view element, scrolling the contents of the element if necessary. + This method expands parent items when necessary. + + The item to bring into view + + + + Clears the selection. + + + + + Puts the current item in edit mode. + + + + + + Commits any changes and ends the edit operation on the current item. + + + + + + Close the currently active editor and discard changes. + + + + + + Ends the editing of an item and commits or discards the changes. + + Determines if the changes are commited [true] or discarded [false]. + + + + + Gets the type of the editor to be used for editing the given item and column. + + The item. + The column. + + + + + Determines whether the given type is a numeric type. + + The type to check. + + true if the type is numeric; otherwise, false. + + + + + Gets an editor based on its type. + + Type of the editor. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Called when [selected item changed]. + + The item. + + + + Called when an item expanded is changing. + + The item. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Processes mouse down. + + The instance containing the event data. + + + + + Processes mouse move. + + The instance containing the event data. + + + + + Processes mouse up. + + The instance containing the event data. + + + + + Processes mouse click. + + The instance containing the event data. + + + + + Processes double click. + + The instance containing the event data. + + + + + Processes mouse enter. + + The instance containing the event data. + + + + + Processes mouse leave. + + The instance containing the event data. + + + + + Processes mouse wheel. + + The instance containing the event data. + + + + + Processes mouse hover. + + The instance containing the event data. + + + + + Processes key down. + + The instance containing the event data. + + + + + Processes key press. + + The instance containing the event data. + + + + + Processes key up. + + The instance containing the event data. + + + + + Gets or sets a value indicating whether summary items are editable by the user or their value is auto-calculated from their sub items. + + + + + Gets a value indicating whether the inks collection is populated. + + + true if this instance has links; otherwise, false. + + + + + Gets the collection of links. + + + The links. + + + + + Gets the collection of task items. + + + The task items. + + + + + Gets the . + + + The text view element. + + + + + Gets the . + + + The graphical view element. + + + + + Gets the . + + + The splitter element. + + + + + Gets the columns shown in the . + + + The columns. + + + + + Gets the root item for the gantt view hierarchye. + + + The root. + + + + + Gets or sets a value indicating whether custom painting is enabled. + + + true if custom painting is enabled; otherwise, false. + + + + + Gets or sets the ratio between the text view and the graphical view. + + + The ratio. + + + + + Gets or sets the minimum width of a column. + + + The minimum width of a column. + + + + + Gets or sets the height of the items. + + + The height of the item. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the height of the header row and the timeline container. + + + The height of the header. + + + + + Gets or sets the minimum length of the link. + + + The minimum length of the link. + + + + + Gets or sets the width of the splitter. + + + The width of the splitter. + + + + + Gets or sets the minimum width of a task when resizing it with the mouse. The size is in pixels and is for the current zoom. + + + The minimum width of the task. + + + + + Gets or sets a value indicating whether the gantt view is read only. + + + true if the gantt view is read only; otherwise, false. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets the active editor. + + + + + Gets or sets the begin edit mode. + + + The begin edit mode. + + + + + Gets or sets the drag drop service. + + + The drag drop service. + + + + + Gets or sets the gantt view behavior. + + + The gantt view behavior. + + + + + Gets the that is responsible for kinetic scrolling. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a link type converter that will be used to convert values coming from the data source to and vice versa. + + + The link type converter. + + + + + Gets or sets the selected item. + + The selected item. + + + + Gets or sets the selected link item. + + The selected link item. + + + + Gets or sets the current column. + + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets or sets the default sort Comparer for RadGanttView. The default comparer compares the items according to their start time. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the name of the list or table in the data source from which the will extract tasks data. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the title of the data items. + + + + + Gets or sets a property name which will be used to extract the start of the data items. + + + + + Gets or sets a property name which will be used to extract the end of the data items. + + + + + Gets or sets a property name which will be used to extract the Progress of the data items. + + + + + Gets or sets the name of the list or table in the data source from which the will extract links data. + + + + + Gets or sets a property name which will be used to extract links start item. + + + + + Gets or sets a property name which will be used to extract the links end item. + + + + + Gets or sets a property name which will be used to extract the link type of the data items. + + + + + Gets the binding provider. + + + The binding provider. + + + + + Gets the data item provider. + + + The data item provider. + + + + + Gets or sets a value indicating whether to disable ensure item visible horizontal. + + + true if ensure item visible horizontal is disabled; otherwise, false. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether the default context menu may be shown. + + + true if the default context menu may be shown; otherwise, false. + + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets or sets the BindingContext for the object. + + + + + Occurs when an item needs an id for storing in data sources. + + + + + Occurs when an item is painted. Allows custom painting over the item. EnableCustomPainting must be set to true for this event to be fired. + + + + + Occurs when a context menu is about to be opened. + + + + + Occurs when the binding context is changed. + + + + + Occurs when a new data item is created. + + + + + Occurs when a new link data item is created. + + + + + Occurs before an is added to the Items collection. + + + + + Occurs before an is added to the Links collection. + + + + + Fired when there is an error in the data layer of RadGanttView related to data operations with Item objects. + + + + + Fired when there is an error in the data layer of RadGanttView related to data operations with Link objects. + + + + + Occurs when the selected item is about to be changed. + + + + + Occurs when the selected link is about to be changed. + + + + + Occurs when selected item has been changed. + + + + + Occurs when selected link has been changed. + + + + + Occurs when an item is about to be expanded or collapsed. + + + + + Occurs after an item is expanded or collapsed. + + + + + Occurs when an item is data bound. + + + + + Occurs when a new item is added to the Items collection. + + + + + Occurs when an item removed from the Items collection. + + + + + Occurs when an item's property is changed. + + + + + Occurs when a link is data bound. + + + + + Occurs when a new link added to the Links collection. + + + + + Occurs when a link is removed from the Links collection. + + + + + Occurs when a new header cell element needs to be created. + + + + + Occurs when a new data cell element needs to be created. + + + + + Occurs when the content of a cell needs to be formatted for display. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a timeline item changes and it needs to be formatted. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a link item in the changes and it needs to be formatted. + + + + + Occurs when an item element needs to be created. + + + + + Occurs when a timeline item element needs to be created. + + + + + Occurs when an editor is required to edit a cell the text view. + + + + + Occurs when an cell is about to be edited. + + + + + Occurs when an editor has been initialized. + + + + + Occurs when an item validating is edited and needs to be validated. + + + + + Occurs when an item is validated. + + + + + Occurs when an item has been edited. + + + + + Occurs when the root item is created. + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Represents a traverser which can traverse the hierarchical data structure of the data displayed by a . + + + + + Initializes a new instance of the class. + + The owner. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + + + + Moves to the previous. + + + + + + Moves to the last item. + + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Moves to the specified item. + + The item. + + + + + Moves to the next item. + + true if the move was successful; otherwise false + + + + Moves to the previous item. + + true if the move was successfull; otherwise false + + + + Gets the last visible item in the given parent children. + + The parent. + + + + + Gets or sets a value indicating whether the traverser will go through an item's children no matter if it is expanded or not. + + + true if traversing all items; otherwise, false. + + + + + Occurs when the traverser moves. + + + + + Gets or sets the position. + + + The position. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Represents the method that will handle events in . + + + + + + + Represents the event arguments for the Traversing event of a + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + true if GanttViewRowInfo is processed otherwise, false. + + + + Gets the row. + + The row. + + + + Represents a class that is responsible for handling all the input for a + + + + + Initializes a new instance of the class. + + + + + Represents the base item element for the graphical and text view elements of + + + + + Represents the base visual item for all elements in + + + + + Initializes the class. + + + + + Attaches the specified data to the element. + + The data. + The context. + + + + Detaches this instance from the data it has been previously attached to. + + + + + Synchronizes this instance with its data item. + + + + + Determines whether the specified data is compatible with this element. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the data item of this element. + + + The data. + + + + + Gets or sets a value indicating whether this is selected. + + + true if selected; otherwise, false. + + + + + Gets or sets a value indicating whether this is current. + + + true if current; otherwise, false. + + + + + Represents the base view element for the and . + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Creates the element provider for the items of this view element. + + + + + + Gets the gantt view element that parents this instance. + + + The gantt view element. + + + + + Represents the class that handles the drag drop operations in . + + + + + Initializes a new instance of the class. + + The owner. + + + + Prepares the context for the drag drop operation. + + + + + + Notifies that a start request has occured. Cancelable. + + + + + + Handles the mouse move. + + The mouse pos. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Notifies that a stop request has occured. Cancelable. + + + + + + Notifies that a running operation has stopped. + Allows inheritors to perform some additional logic upon stop. + + + + + Location from where Drag is started + + + + + Gets or sets the owner. + + + The owner. + + + + + Represents the element used as a separator between the and . + + + + + Initializes the fields. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Represetns the element provider used by the virtualized view elements for creating visual item elements. + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates an element for the given data opbecj in the given context. + + The data. + The context. + + + + + Gets the size of the element based on the given data item. + + The item. + + + + + Called when a new item element is created. + + The item. + + + + + Represents the base item element for all items inside the . + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + The graphical view element. + + + + Creates the task element. + + + + + + Creates the left handle element. + + + + + + Creates the right handle element. + + + + + + Paints the children. + + The graphics. + The clip rectangle. + The angle. + The scale. + if set to true [use relative transformation]. + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance with its data item. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the graphical view element. + + + The graphical view element. + + + + + Gets the task element. + + + The task element. + + + + + Gets the left link handle element. + + + The left link handle element. + + + + + Gets the right link handle element. + + + The right link handle element. + + + + + Represents a base class for all task elements in a . + + + + + Initializes the fields. + + + + + Initializes the class. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether the element may be dragged. + + + + + + + Determines whether this instance can be resized. + + + true if this instance can be resized; otherwise, false. + + + + + Gets or sets a value indicating whether the mouse is over the left area where resize could start. + + + true if this instance is mouse over start resize rectangle; otherwise, false. + + + + + Gets or sets a value indicating whether the mouse is over the right area where resize could start. + + + true if this instance is mouse over end resize rectangle; otherwise, false. + + + + + Represents the element which displays the graphical part of a . + + + + + Initializes the fields. + + + + + Creates the child elements. + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Disposes the managed resources. + + + + + Updates the timeline data items. + + + + + Builds the timeline elements. + + + + + Applies the scroll offset to the link lines. + + The lines. + + + + + Determines whether the given link should be drawn. + + The link. + The link lines. + + + + + Calculates the link lines for all links. + + + + + Calculates the link lines for all links connected to the given item. + + The item. + + + + Calculates the link lines for the given link and optional point when a new link is being created. + + The link. + The position of the mouse (if creating or editing a link). + + + + Calculates the start to start lines for the given link and optional point when a new link is being created. + + The link. + The position of the mouse (if creating or editing a link). + + + + Calculates the start to finish lines for the given link and optional point when a new link is being created. + + The link. + The position of the mouse (if creating or editing a link). + + + + Calculates the finish to start lines for the given link and optional point when a new link is being created. + + The link. + The position of the mouse (if creating or editing a link). + + + + Calculates the finish to finish lines for the given link and optional point when a new link is being created. + + The link. + The position of the mouse (if creating or editing a link). + + + + Populates the flat tasks collection which is used for positioning links. + + + + + Returns a value indicating whether a line represented with two points intersects the given rectangle. + + The begin point of the line. + The end point of the line. + The rectangle. + + + + + Returns a value indicating whether two lines intersect. + + The begin point of the first line. + The end point of the first line + The begin point of the second line. + The end point of the second line. + + + + + Updates the specified update action. + + The update action. + + + + Updates the scrollers. + + The update action. + + + + Synchronizes the item elements. + + + + + Updates the inner state. + + + + + Updates the timeline zoom. + + + + + Updates the text view scroller when the scroll bar is moved. + + + + + Called when the OnePixelTime property is assigned a new value. + + Indicated whether the change results in a zoom-in or zoom-out. + + + + Returns a rectangle with zero width representing the coordinates where an object should be positioned or drawn for the given item and time. + + The item . + The datetime. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + if set to true the horizontal scroll bar offset is taken into account. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + if set to true the horizontal scroll bar offset is taken into account. + if set to true the vertical scroll bar offset is taken into account. + if set to true the header header height is added to the y coordinate of the result. + + + + + Scrolls the graphical view to the given date. The date is placed in the middle of the view. + + The date to scroll to. + true if the scroll operation was successful otherwise false. + + + + Gets the link item in the given position if such exists otherwise returns null; + + The location in control coordinates where to search for a link. + + + + + Paints the children. + + The graphics. + The clip rectangle. + The angle. + The scale. + if set to true [use relative transformation]. + + + + Draws the link lines. + + The graphics. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Gets or sets how many pixels along the link of a link will trigger selection. + + + + + Gets or sets how wide the selection highlight color will be painted along a selected link. + + + + + Gets the horizontal scroll bar element. + + + The horizontal scroll bar element. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets the today indicator element. + + + The today indicator element. + + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets the timeline today indicator element. + + + The timeline today indicator element. + + + + + Gets the timeline scroller. + + + The timeline scroller. + + + + + Gets the timeline container. + + + The timeline container. + + + + + Gets the timeline items. + + + The timeline items. + + + + + Gets or sets the behavior which handles the perations related to the gantt view timeline items. + + + + + Gets or sets the timeline start date. + + + The timeline start. + + + + + Gets or sets the timeline end date. + + + The timeline end. + + + + + Gets or sets the type of the timeline range. + + + The timeline range. + + + + + Gets or sets a value indicating whether the TimeRange of the gantt view will be handled by the control. + + + + + Gets or sets how much time a single pixel represents. + + + The one pixel time. + + + + + Gets or sets the color of the links. + + + The color of the links. + + + + + Gets or sets the size of the links handles. + + + The size of the links handles. + + + + + Gets or sets the new link instance. This is not null when a new link is being created. + + + The new link. + + + + + Gets or sets a value indicating whether a new link is being created. + + + true if a new link is being created; otherwise, false. + + + + + Represents a milestone element in a + + + + + Initializes the fields. + + + + + Determines whether this instance can be resized. + + + true if this instance can be resized; otherwise, false. + + + + + Represents an element that displayes a milestone item in a + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates the task element. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Represents a summary element in a + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the progress indicator element. + + + + + + Gets the element used for indicating the progress of the summary element. + + + + + Gets the left edge element of the summary element. + + + + + Gets the right edge element of the summary element. + + + + + Gets the element thats between the two edges of the summary element. + + + + + Represents an element that displays a summary item in a + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates the task element. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Represents a task element in a . + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the progress indicator element. + + + + + + Gets the progress indicator element. + + + The progress indicator element. + + + + + + + + + + Represents an element that displayes a task item in a + + + + + Initializes the fields. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Represents an element that visualizes the progress of a summary. + + + + + Represents an element that visualizes the progress of a task. + + + + + Gets a list of s that will be shown in the timeline. + + + + + Returns a list of s for week range. + + + + + Returns a list of s for month range. + + + + + Returns a list of s for year range. + + + + + Returns a list of s for year range with half years for the sub-items. + + + + + Returns a list of s for year range with quarter years for the sub-items. + + + + + Returns a list of s for day range. + + + + + Returns a list of s for day range with half hours for the sub-items. + + + + + Returns a list of s for da range with quarter hours for the sub-items. + + + + + Returns a list of s for hour range. + + + + + Gets the week number for the given date using ISO8601 stadard. + + The date. + + + + + Gets the time line top element text. + + The item to get text for. + + + + + Gets the timeline lower element text for the specified index. + + The timeline item. + The index of the lower element. + + + + + Gets the number of cells and optionally a start index to be displayed for the given timeline data item and time range. + + The data item for which the cell info is calculated. + The time range for which the cell info is calculated. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Creates the element. + + + + + + Fills the RangesMinWidths property (dictionary) with the minimum width for each . These values are used when AutomaticTimelineTimeRange is se to true. + + + + + Gets a new time range based on the current state of the . If no change is needed returns the value of the input range. + + The current . + Indicates whether a zoom-in or a zoom-out operation is performed. + A value of the enumeration. If no change is needed returns the input range. + + + + Gets the gantt graphical view this behavior is associated with. + + + + + Gets or sets the format for the upper row items of the timeline. + + + The timeline upper item format. + + + + + Gets or sets the format for the lower row items of the timeline. + + + The timeline lower item format. + + + + + Gets a value which enlarges the timeline end so only whole cells would be displayed. + + + + + Gets a value which enlarges the timeline start so only whole cells would be displayed. + + + + + Gets a dictionary where the key is a time ranges and the value is the minimum width for a single item in the timeline view for that time range. + + + + + Gets or sets the number of cells to be added. + + + + + Gets or sets a value indicating the first cell index. The value is optional. + + + + + Represents an element displayed in the timeline of a + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + The element. + + + + Represents a virtualized stack container that shows the items in the timeline of a + + + + + + + + + + + + + Type of the ViewElement + + + + Updates the items' layout + + + + + Begins the measure. + + Size of the available. + + + + + Ends the measure. + + + + + + Determines whether the specified item is visible. + + The item. + + true if item is visible; otherwise, false. + + + + + Gets the element context. + + + + + + Removes the element. + + The position. + + + + Inserts the element. + + The position. + The element. + The data. + + + + Finds the compatible element. + + The position. + The data. + + + + + Updates the element at concrete position + + The position. + The data. + + + + + Gets or sets the associated element provider. + + + The element provider. + + + + + Gets or sets the associated data provider. + + + The data provider. + + + + + Gets a value indicating whether the data provider is empty. + + + true if data provider is empty; otherwise, false. + + + + + Measures the element core. + + The element. + Size of the available. + + + + + Arranges the element core. + + The element. + The final size. + The arrange rect. + + + + + Adds artificial offset on IsItemVisible when we want to use the method to hide the items + which are above the top edge of the control (we hide them to improve the virtualization performance). + The artificial offset will make the ArrangeOverride method start arranging items from + their actual position, as if the hidden items were there. + + The offset to add. + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the items orientation. + + + The orientation. + + + + + Gets or sets a value indicating whether the elements fit to size. + + + true if [fit elements to size]; otherwise, false. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the that is the owner of this container. + + + The owner. + + + + + Represents a data item for a timeline. + + + + + Initializes a new instance of the class. + + The start. + The end. + The range. + The one pixel time. + + + + Gets or sets the start date for the item. + + + The start. + + + + + Gets or sets the end date for the item. + + + The end. + + + + + Gets or sets the range. + + + The range. + + + + + Gets or sets how much time a single pixel represents. + + + The one pixel time. + + + + + Gets the width of this item. + + + The width. + + + + + Represents the provider that creates elements for the timeline of a . + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a new element. + + The data. + The context. + + + + + Gets the size of the element for a given item. + + The item. + + + + + Called when a new item element is created. + + The item. + + + + + Gets the that is the owner of this provider. + + + The owner. + + + + + Represents the stack container in the lower half of a timeline item. + + + + + Represents an element that is used in a timeline. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the timeline item top element. + + + + + + Creates the timeline item bottom stack element. + + + + + + Initializes a new instance of the class. + + The data. + The graphical view element. + + + + Calculates the items that will be displayed in the timeline. + + + + + Called when the displayed data is changed. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance with its data item. + + + + + Determines whether the specified data is compatible with this element. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the graphical view element that parents this element. + + + The graphical view element. + + + + + Gets the top element. + + + The top element. + + + + + Gets the bottom stack element. + + + The bottom element. + + + + + Gets the data item for this element. + + + The data. + + + + + Represents the top portion of a . + + + + + Represents the bottom portion of a . + + + + + Updates the scroll range. + + + + + Represents the layout for the expander element of each row in a + + + + + Initializes a new instance of the class. + + The item element. + + + + Creates the self-referencing cell's elements. + + The cell element. + + + + Disposes all MANAGED resources - such as Bitmaps, GDI+ objects, etc. + + + + + Disposes the link elements. + + + + + Updates the associated instance of expander primitive + + + + + Updates the indent items + + + + + Binds the row properties. + + + + + Unbinds the row properties. + + + + + Gets the data item assiciated with the layout + + + + + Gets the item element assiciated with the layout + + + + + Gets the expander element assiciated with the layout + + + + + Gets the stack layout element. + + The stack layout element. + + + + Gets the cell element. + + The cell element. + + + + Gets the witdh of the hierarchy indent. + + + + + Gets a value that indicates the indents count + + + + + Gets a collection that contains all indents + + + + + Represents a stack element which holds the expander element, the indent element(s) and the cell. + + + + + Represents an element that is used for displaying indentation in a item element. + + + + + Initializes a new instance of the class. + + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents an item element of a text part. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + The text view. + + + + Creates the column container. + + + + + + Creates the element provider. + + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance and all cells. + + + + + Disposes the self reference layout. + + + + + Synchronizes the properties. + + + + + Updates the info of each cell. + + + + + Gets the cell element for the given column. + + The column. + + + + + Gets or sets a value indicating whether this instance is expanded. + + + true if this instance is expanded; otherwise, false. + + + + + Gets the cell container. + + + The cell container. + + + + + Gets the self reference layout. + + + The self reference layout. + + + + + Gets the . + + + The text view. + + + + + Represents the element for a cell in a text part. + + + + + Initializes the fields. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + The owner. + The column. + + + + Disposes the managed resources. + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance. + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Updates the info. + + + + + Updates the core. + + + + + Updates the self reference layout. + + + + + Arranges the self reference panel. + + The final size. + The client rect. + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Gets the editor element. + + The editor. + + + + + Gets the column of this cell. + + + The data. + + + + + Gets the column. + + + The column. + + + + + Gets the owner of this cell. + + + The owner. + + + + + Gets the data item. + + + The data item. + + + + + Gets the self reference layout. + + + The self reference layout. + + + + + Gets the expander. + + + The expander. + + + + + Gets a value indicating whether this instance is first cell. + + + true if this instance is first cell; otherwise, false. + + + + + Gets a value indicating whether this instance is last cell. + + + true if this instance is last cell; otherwise, false. + + + + + Gets a value indicating whether this instance can update info. + + + true if this instance can update info; otherwise, false. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets the editor. + + + The editor. + + + + + Privedes cell elements for the item elements of + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a new element for the given data and context. + + The data. + The context. + + + + + Gets the size of the element. + + The item. + + + + + Gets the owner. + + + The owner. + + + + + Represents a container in which columns can be displayed. + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets or sets the owner. + + + The owner. + + + + + Gets or sets a value indicating whether [scroll columns]. + + + true if [scroll columns]; otherwise, false. + + + + + Represetns a scroller for the columns. + + + + + Represents a traverser which can traverse the columns of a + + + + + Initializes a new instance of the class. + + The columns. + + + + Called when [items navigating]. + + The current. + + + + + Represents the element that displayes the grid part of a + + + + + Creates the child elements. + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Gets the first visible column. + + The first visible column. If there are no visible columns returns null. + + + + Gets the last visible column. + + The first visible column. If there are no visible columns returns null. + + + + Columnses the collection changed. + + The instance containing the event data. + + + + Updates the specified update action. + + The update action. + + + + Synchronizes the item elements. + + + + + Gets the first visible column. + + + The first visible column. + + + + + Gets the last visible column. + + + The last visible column. + + + + + Gets the column container. + + + The column container. + + + + + Gets the column scroller. + + + The column scroller. + + + + + Gets the columns. + + + The columns. + + + + + Gets or sets the indent of the hierarchy rows. + + + The indent. + + + + + Represents a header cell element of a column in a + + + + + Initializes a new instance of the class. + + The owner. + The column. + + + + Synchronizes this instance. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether this instance [can be resized]. + + + true if this instance [can be resized]; otherwise, false. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Gets or sets a value indicating whether this instance is mouse over resize rectangle. + + + true if this instance is mouse over resize rectangle; otherwise, false. + + + + + Privedes header cell elements for the item elements of + + + + + Creates a new element for the given data and context. + + The data. + The context. + + + + + Gets the size of the element. + + The item. + + + + + Represents the expander item of a row in a . + + + + + Represents an expander that is drawn in expander cells + + + + + This event fires when the expanded state is changed. + + + + + Initializes a new instance of the class. + + + + + Paints the sign's fill + + The IGraphics to use for painting the sign's fill + Rectangle containing sign bounds + + + + Paint the sign's border + + The IGraphics to use for painting the sign's border + Rectangle containing sign bounds + + + + Paints the sign + + The IGraphics to use fo painting the sign + Rectangle containing sign bounds + + + + Gets or sets the padding sizes of the sign. + + + + + Gets or sets the width of the sign. + + + + + Gets or sets the border width of the sign. + + + + + Gets or sets the padding sizes of the border around the sign. + + + + + Gets or sets a value indicating that the sign's border must be drawn + + + + + Gets or sets a value indicating that the sign's fill must be drawn + + + + + Gets or sets the sign's border color + + + + + Gets or sets sign's back color + + + + + Gets or sets sign's second back color + + + + + Gets or sets sign's third back color + + + + + Gets or sets sign's fourth back color + + + + + Gets or sets the number of colors used for drawing sign's background + + + + + Gets or sets the gradient style of sign's background + + + + + Gets or sets the gradient angle of sign's background + + + + + Gets or sets the gradient percentage of sign's background + + + + + Gets or sets the second gradient percentage of sign's background + + + + + Gets or sets the sign's style + + + + + Gets or sets a value indicating that the sign must maintain square size + + + + + Gets or sets the sign's size + + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Gets or sets the sign image. + + + + + Gets or sets a value detemining the link lines that be rendered around the expander sign + + + + + Gets or sets a value determining the style of the link lines + + + + + Gets or sets a value determining the color of the link lines + + + + + Defines a lines that will be render around the primitive + + + + + Initializes a new instance of the class. + + The item element. + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Gets the item element. + + + The item element. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the main element of the editor. + + + + + Gets or sets the current bitmap. If you want to open an image for edit use one of the OpenImage methods. + + + + + Gets or sets the path that will be used for save operations. + + + + + Gets or sets the zoom factor of the editor. + + + + + Occurs after an image is loaded in the editor. + + + + + Occurs when the progress of an async load operation changes. + + + + + Occurs when an operation results in an error or an exception. + + + + + Closes the open dialog. + + + + + Fires the event. + + + + + + Fires the event. + + + + + + Fires the event. + + + + + + Gets the element containing the buttons with commands. + + + + + Gets the element that is responsible for drawing the image. + + + + + Gets the element continaing the zooming controls. + + + + + Gets the scroll viewer controller. + + + + + Gets or sets the current bitmap. If you want to open an image for edit use one of the OpenImage methods. + + + + + Gets or sets the original image when performing editing operations. + + + + + Gets or sets the path that will be used for save operations. + + + + + Gets or sets the zoom factor of the editor. + + + + + Gets or sets a factory used for creating dialogs. + + + + + Gets or sets the width of the . + + + + + Gets or sets the height of the + + + + + Gets the undo operations stack. + + + + + Gets the redo operations stack. + + + + + Occurs after an image is loaded in the editor. + + + + + Occurs when the progress of an async load operation changes. + + + + + Occurs when an operation results in an error or an exception. + + + + + Represents a draggable, selectable, and resize-able item which displays a snapshot + of its associated . This item is used in + when the + is in customize mode. + + + + + Invalidates the preview of the associated item. + + + + + Gets or sets the overlay color which is displayed when the item is selected. + + + + + Gets or sets the border color which is displayed when the item is selected. + + + + + Gets the associated . + + + + + Gets the inner container of the current item. Such will exist if this item represents a + + + + + + Gets the inner item of the current item. Such will exist if this item represents a + . + + + + + Gets or sets a value indicating whether the item is currently selected. + + + + + An element which hosts . + The main element of . Also used + as a child in when the represented item + is . + + + + + A responsible for the drag operations in . + + + + + Represents a control which overlays the when the last is put in customize mode. + + + + + Updates the preview of the underlying items. + + + + + Updates the preview of the underlying items. + + If [true], child elements will be reinitialized, + if [false], only the snapshot of existing elements will be updated. + + + + Selects the specified item. + + The item to select. + + + + Selects the specified item. + + The item to select. + If [true], item will be added to the current selection, + otherwise only the specified item will be selected + + + + Gets the items from all levels in the control. + + An enumeration to the items. + + + + Gets all items which are descendants of the specified parent element. + + The parent element. + An enumeration to the items. + + + + Sets the bounds of the drag preview rectangle. + + The bounds. + + + + Finds the associated of the specified . + + The specified item. + The associated draggable item. + + + + Starts the with the specified item as a drag context. + + The item to drag. + + + + Gets the owning + + + + + Gets the main element of the control. + + + + + The responsible for the drag operations in the control. + + + + + Gets a collection of the selected items. + + + + + Provides access to the default icons and images used in . + + + + + The image displayed next to in the customize dialog. + + + + + The Customize context menu icon. + + + + + The image displayed next to an empty in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The icon of the LoadLayout button in the customize dialog. + + + + + The icon of the SaveLayout button in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + Provides options for sizing the text part of the + + + + + Text will be sized proportionally to the whole size of the item. + + + + + Text will have a fixed size in pixels. + + + + + Provides options for arranging the text part of the + + + + + The text will appear above the control. + + + + + The text will appear below the control. + + + + + The text will appear on the left side of the control. + + + + + The text will appear on the right side of the control. + + + + + Represents a item which can display text. + + + + + Represents a item which displays a separator line. + Stands for visually separating logical groups of controls. + + + + + Gets or sets the thickness of the item. + + + + + Gets the current orientation of the item. The orientation is automatically + determined depending on the item's position. + + + + + Represents a item which displays a splitter line. + The splitter stands for visually separating logical groups of controls. In addition, + it allows the end user to resize the groups on both sides of it by dragging the splitter + with the mouse. + + + + + Gets or sets the image used by the splitter when in horizontal orientation. + + + + + Gets or sets the image used by the splitter when in vertical orientation. + + + + + A items which displays s + in a tabbed interface. + + + + + Gets the index at which a group should be inserted if dropped at the specified point. + + The specified point. + The index at which the group should be inserted. + + + + Gets the drag preview rectangle which is used when dropping over the tab items. + + The desired insert index + The bounds of the drag preview rectangle. + + + + Gets the main tab strip element. + + + + + Gets a collection of s which will be displayed + in the tabbed interface of this item. + + + + + Gets the of the selected . + + + + + Gets the selected . + + + + + A inheritor used to display the tab strip + inside s in . + + + + + Encapsulates the UI representation of a RadPageView instance. Different views will be described by different instances of this class. + + + + + Base element for all visual elements across RadPageView. + + + + + Adds padding and border size to the provided measured size. + + + + + + + Applies the Min/Max size constraints to the already measured size. + + + + + + + Gets the content orientation for this item. + + + + + Gets the content orientation for this item. + + + + + Gets or sets the padding that defines the offset of element's fill. + This does not affect element's layout logic such as size and location but has only appearance impact. + + + + + Gets or sets the padding that defines the offset of the border. + This does not affect element's layout logic such as size and location but has only appearance impact. + + + + + Gets an instance of the class that + represents the content area associated with the given item. By default, this method + returns the main content area of the control. + + + + + + + Gets the area, where the currently active page may be displayed. + + + + + Gets the rectangle where items reside. + + + + + + Displays the item list menu, using the provided element as menu's owner. + + + + + + Displays the item list menu, using the provided element as menu's owner and the specified horizontal and vertical alignment. + + + + + + + + + + + + + + Gets the item that contains the porvided point (in control's client coordinates). + + + + + + + Arranges the items and returns the available rectangle where the content area should be positioned. + + + + + + + Gets the default (automatic) item orientation, which may depend on some settings in inheritors such as RadPageViewStripElement. + + True to indicate that content orientation is to be retrieved, false to get orientation for border and fill. + + + + + Puts the current node in edit mode. + + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Gets the RadElement instance that parents all the items. + + + + + Determines CloseButton will be displayed in each item, allowing that item to be closed. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where an item will be dropped after a drag operation. + + + + + Gets or sets the RadDragDropService instance which handles item drag requests. + + + + + Gets or sets the mode that controls item drag operation within the element. + + + + + Determines whether the currently selected item will be automatically scrolled into view. + + + + + Gets or sets the spacing between two items within the element. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Defines how each item's border and fill is oriented within this instance. + + + + + Gets the RadPageView instance that owns this element. May be null if element is hosted on another RadControl instance. + + + + + Gets the element which represents the content area of the tab view. + + + + + Gets the header element of the view. + + + + + Gets the footer element of the view. + + + + + Gets or sets the currently selected item in the view. + + + + + Gets or sets the mouse button that will be used to select items. Equals to MouseButtons.Left by default. + + + + + Gets all the items currently present within this element. + + + + + Gets or sets whether the pages will be wrapped around when performing selection using the arrow keys. + If the property is set to true, pressing the right arrow key when the last page is selected will result in selecting the first page. + + true if [wrapped around]; otherwise, false. + + + + Determines whether selecting an item will update the element's ContentArea. + + + + + Gets or sets the active editor. + + The active editor. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets a value indicating whether there is an open editor in the tree view. + + + + + Gets the RadPageViewStripItem which stands for adding + new pages on click. + + + + + Gets or sets the item of the page which is opened for preview on the far side of the + regular items. + + + + + Determines if the PinButton will be displayed in each item, allowing that item to be pinned. + + + + + Gets or sets the visibility of the internal NewItem. + + + + + Determines whether strip scrolling will be animated. + + + + + Gets or sets the easing type of the strip scroll animation. + + + + + Gets the container that holds item layout and strip buttons panel. + + + + + Determines scroll buttons' visibility. + + + + + Determines the alignment of items within the strip layout. + + + + + Determines the fit mode to be applied when measuring child items. + + + + + Gets or sets the alignment of item strip within the view. + + + + + Selects the specified . + + The group item to select. + + + + Gets the currently selected . + + + + + An inheritor of used in . + Stands for displaying the tabs of s inside a . + Keeps track of its associated . + + + + + Indicates whether the item is pinned. Pinned items appear in from of the others. + + + + + Indicates whether the item is opened for preview. + + + + + Gets or sets the length of the associated + with this . By default, this property returns -1; + + + + + Determines whether the content of the current item is visible. This property is equivalent + to the IsSelected property, however its semantics can be changed in scenarios where multiple + content areas can be visible as in the . + + + + + Determines whether the current instance is internally created by the ViewElement and represents some built-in functionality. + + + + + Gets the RadPageViewItemButtonsPanel that contains all the buttons, associated with the item. + + + + + Gets or sets the alignment of item's associated buttons. + + + + + Gets or sets a boolean value that determines whether the item margin will be automatically + flipped according to the orientation of the items in the control. + + + + + Gets or sets the title of the item. Title is visualized in the Header area of the owning view element. + + + + + Gets or sets the description of the item. Description is visualized in the Footer area of the owning view element. + + + + + Gets or sets the RadElement instance that represents the content of this item. + The content is used when item is not bound to a RadPageViewPage instance. + + + + + Gets the size that is forced by the layout element for this item. It may differ from the DesiredSize one. + + + + + Gets the current size of the item. This may differ from Bounds.Size as it reflects internal changes within the item itself. + + + + + Determines whether the item is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Gets the RadPageViewPage instance associated with this item. + + + + + Gets the RadPageViewElement that owns this item. + + + + + Gets or sets the use mnemonic. + + The use mnemonic. + + + + Gets or sets the show keyboard cues. + + The show keyboard cues. + + + + Gets or sets a property which determines whether to consider the ItemBorderAndFillOrientation of RadPageViewElement. + + + + + The associated with this tab strip item. + + + + + Represents a visual element, which contains set of common buttons for a instance. + + + + + Gets or sets the size to be applied to each of the embedded buttons. + + + + + Gets or sets the spacing between each two buttons. + + + + + Gets the RadPageViewButtonElement instance which represents the CloseButton for the owning item. + + + + + Gets the RadPageViewPinButtonElement instance which represents the PinButton for the owning item. + + + + + Provides localization settings for . + + + + + String IDs for the localizable strings in . + + + + + Provides the resize functionality for . + + + + + Begins the resize operation given a starting point and resize orientation. + + The starting point. + The resize direction. + [true] if successful, [false] otherwise. + + + + Begins the resize operation given a . + + The splitter item. + [true] if successful, [false] otherwise. + + + + If the behavior is active, moves the resize position to the specified point. + + The point in coordinates relative to the owning . + + + + Ends the resize operation. + + + + + Gets the mouse cursor that should be displayed at the specified position. + + The point in coordinates relative to the owning . + The cursor. + + + + Indicates whether the behavior is currently active. + + + + + Provides the XML serialization functionality for . + + + + + A container control which keeps its child controls arranged in a consistent way and scales their layout as the control size changes. + Allows runtime customization and serializing the layout. + + + + + Initializes the items of the default context menu. + + + + + Puts the control in an initialization state where it will not update until EndUpdate is called. + + + + + Puts the control out of the initialization state caused by calling BeginUpdate and updates it. + + + + + Adds a control at a specified position next to a specified control. + + The control to add. + An existing control next to which the new control will be added. + The position at which the new control will be added. + + + + Adds a control at a specified position next to a specified item. + + The control to add. + An existing item next to which the new control will be added. + The position at which the new control will be added. + + + + Adds a control to the specified container. + + The control to add. + The container. + + + + Adds an item at a specified position next to a specified existing control. + + The item to add. + An existing control next to which the new control will be added. + The position at which the new control will be added. + + + + Adds an item at a specified position next to a specified existing item. + + The item to add. + An existing item next to which the new control will be added. + The position at which the new control will be added. + + + + Adds an item at the root level of the control and rebuilds the layout. + + The item to add. + + + + Adds an item to the specified container and rebuilds its layout. + + The item to add. + The container to add the item to. + + + + Removes the specified control from the RadLayoutControl. + + The control to remove. + + + + Removes the specified item from the RadLayoutControl. + + The item to remove. + + + + Resizes the specified item with a specified amount. Resize direction depends + on the position of item. + + The item to resize. + The amount to resize with. + + + + Resizes the specified control with a specified amount. Resize direction depends + on the position of item. + + The control to resize. + The amount to resize with. + + + + Hides an item from the RadLayoutPanel and places it in the HiddenItems collection. + + The item to hide. + + + + Hides a control from the RadLayoutPanel and places it in the HiddenItems collection. + + The control to hide. + + + + Shows the control which allows reordering + and resizing the items. + + + + + Hides the . + + + + + Shows the and puts the control in customize mode. + + + + + Gets the initial location of the . + + The location. + + + + Closes the and puts the control out of customize mode. + + + + + Finds the item associated with a given control. + + The control. + The control's associated item. + + + + Finds the item associated with a given control. + + The control. + [true] if the HiddenItems collection should be searched, + [false] otherwise. + The control's associated item. + + + + Gets the items from all levels which are nested in the control. + + An enumeration of the items. + + + + Gets the items from all levels which are nested in the control. + + + + + + + Updates the scrollbar metrics. + + + + + Updates the bounds of nested controls. + + + + + Gets the mouse cursor which should be shown at a given point. + + The point. + The cursor to be shown at that point. + + + + Gets the that should be activated at a given point. + + The point. + The resizing behavior at that point. + + + + Gets all child items iterated recursively. + + The items. + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + XmlWriter to use by the built-in serializer + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + The stream to write to. + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + The file to write to. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The file to read from. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The stream to read from. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The XmlReader to read the XML from. + + + + Called after load layout to ensure the visibility of the controls is the same + as the visibility of the items. + + + + + Gets the default serialization info for RadLayoutControl used by Save/Load loyout methods to persist the layout to/from XML. + + The default serialization info. + + + + Fired when the items of the control or the items of the inner containers + (such as groups and tabbed groups) have changed. + + + + + Gets or sets a value indicating whether the control should draw its border. + + + + + Gets or sets the Customize Dialog form which is shown via the context menu. + + + + + Gets or sets a value indicating whether resizing is enabled when the Customize Dialog is not shown. + + + + + Gets or sets a value indicating whether the end-user is allowed to hide and show existing items. + + + + + Gets or sets a value indicating whether the end-user is allowed show the Customize Dialog and modify the existing layout. + + + + + Gets or sets the context menu. + + + + + Gets the vertical . + + + + + Gets the horizontal . + + + + + Gets the main which hosts the items on the root level. + + + + + Gets a collection containing the items on the root level. + + + + + Gets a collection containing the hidden items. + + + + + Gets the control which appears when the Customize Dialog is shown. + + + + + Indicates whether the DragOverlay control is visible. + + + + + Indicates whether the user is currently resizing the items. + + + + + If the user is currently resizing, returns the active , otherwise returns null. + + + + + This property is not relevant for this class. + + + + + Gets the serialization info for RadLayoutControl used by Save/Load loyout methods to persist the layout to/from XML. + By default or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Gets the margin around the client area of the control. + In the default case, this should be the border thickness. + + + + + Adds the control to the underlying collection without creating a for it. + + The control to add. + + + + Removes the control from the underlying collection without destroying its associated item. + + + + + + Finds the item associated with a given control. + + The control. + The associated item. + + + + This class represents data in a list layout similar to the ListBox control provided by Microsoft. + + + + + Initializes all event key objects and performs other static initialization. + + + + + Subscribes to the relevant events of the underlaying RadListElement. + + + + + Unsubscribes from the relevant events of the underlaying RadListElement. + + + + + + + + Forces re-evaluation of the current data source (if any). + + + + + Suspends internal notifications and processing in order to improve performance. + This method is cumulative, that is, if BeginUpdate is called N times, EndUpdate must also be called N times. + Calling BeginUpdate will cause the ItemsChanged event to stop firing until EndUpdate is called. + + + + + Resumes the internal notifications and processing previously suspended by BeginUpdate. + + + + + Defers the refresh. + + + + + + Selects all items if the SelectionMode allows it. + This method throws an InvalidOperationException if SelectionMode is One or None. + + + + + Clears the currently selected items and selects all items in the closed range [startIndex, endIndex]. + + The first index at which to start selecting items. + The index of one item past the last one to be selected. + + + + Scrolls to the provided item so that the item will appear at the top of the view if it is before the currently visible items + and at the bottom of the view if it is after the currently visible items. + + The item to scroll to. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the beginning of the items. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Raises the event. + + + An instance that contains the event data. + + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Indicates whether the items should be displayed in groups. + + + + + Gets the collection of groups that items are grouped into + + + + + Gets or sets a value that indicates whether text case will be taken into account when sorting. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListControl is focused. + + + + + The ListElement responsible for the majority of the control logic. The RadListControl is a wrapper of the RadListElement. + + + + + Gets the Items collection. Items can not be modified in data bound mode, and a DataSource can not be assigned while there + are items in this collection. + + + + + Provides a read only interface to the selected items. In order to select an item, use its Selected property. + + + + + Gets or sets the SelectionMode of RadListControl. This property has a similar effect to the SelectionMode of the + standard Microsoft ListBox control. + + + + + Gets or sets the SelectedValue. A linear search is performed to find a data item that has the same value + in its Value property and SelectedItem and SelectedIndex are updated to it and its index respectively. + + + + + Gets or sets the active item. The Active item is relevant only in MultiSimple SelectionMode or MultiExtended in combination with + the control keyboard key. + + + + + Gets or sets the currently selected item. + + + + + Gets or sets the currently selected index. + + + + + Gets or sets an object which will provide the data to be visualized as a list. + + + + + Gets or sets a property name which will be used to extract a string value from the data items in order to provide + a meaningful display value. + + + + + Gets or sets a property name which will be used to extract a value from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets the sort style. + + + + + Gets or set the scroll mode. + + + + + Gets or sets a format string which will be used for visual formatting of the items text. + + + + + Gets or sets a value that indicates whether the FormatString and FormatInfo properties will be used to format + the items text. Setting this property to false may improve performance. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets a value that determines whether the FindString() method searches via the text property + set by the user or by the text provided by the data binding logic, that is, by DisplayMember. + + + + + Gets or sets a value that indicates if this RadListControl will stop firing the ItemsChanging and ItemsChanged events. + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + This property is not relevant for this class. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + This event fires when the selected index property changes. + + + + + This event fires before SelectedIndex changes. This event allows the operation to be cancelled. + + + + + This event fires only if the SelectedValue has really changed. For example it will not fire if the previously selected item + has the same value as the newly selected item. + + + + + This event fires before a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event fires for every item provided by the data source. + This event allows a custom RadListDataItem to be provided by the user. + + + + + This event fires after a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event is fired for every item provided by the data source. + + + + + This event allows the user to create custom visual items. + It is fired initially for all the visible items and when the control is resized afterwards. + + + + + This event fires when the SortStyle property changes. + + + + + The VisualItemFormatting event fires whenever a property of a visible data item changes + and whenever a visual item is associated with a new data item. During scrolling for example. + + + + + This event fires when the SelectedItems collection changes. + + + + + This event fires before the SelectedItems collection changes. + + + + + RadListControl consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadListControl consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Defines the alignment of checkbox within a . + + + + + Checkbox is aligned next to the near edge. + + + + + Checkbox is centered within the layout. + + + + + Checkbox is aligned next to the far edge. + + + + + ListViewSpreadExport is a powerful exporting API, allowing to export RadListView to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The ListView to export. + + + + Initializes a new instance of the class. + + The ListView to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export images. + + + + + Gets or sets a value indicating whether to export hierarchy and group child rows grouped. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets a value indicating how children of collapsed items are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting item of RadListView. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting item. + + + + + Defines values for specifying how the width of a column is adjusted. + + + + + The column width does not automatically adjust. + + + + + The column width adjusts to fit the contents of the header cell. + + + + + The column width adjusts to fit the contents of the data cells. + + + + + The column width adjusts to fit the contents of all cells + + + + + A helper class that process best fitting of columns + + + + + Initializes a new instance of the class. + + The detail list view. + + + + Performs best fit for specified column + + An instance of that will be best fitted + + + + Performs best fit for all columns + + + + + Bests the fit columns. + + The mode. + + + + Process all best fit column requests + + + + + Performs best fit for all columns + + + + + Performs best fit for specified column + + An instance of that will be best fitted + The mode. + + + + Determines whether the instance of can be best fitted. + + The item. + + true if the instance of can be best fitted ; otherwise, false. + + + + + Gets the desired cell's width + + An instance of + Returns the desired cell's with + + + + Sets 's width + + An instance of . + The desired width + + + + Gets the table element. + + The table element. + + + + Gets the best fit requests. + + The best fit requests. + + + + Best Fit All Columns Request + + + + + Requests the best fit columns. + + + + + Enqueues the best fit columns. + + The mode. + + + + Requests the best fit column. + + The column. + + + + Removes and returns the object at the beginning of the queue + + Returns BestFitRequest + + + + Dequeues the specified column's request from the queue + + The column's request that should be removed + Returns BestFitReques + + + + Represents BestFitRequest type + + + + + BestFit Operation for specified column + + + + + BestFit Operation for all columns + + + + + Represent best fit request + + + + + Initializes a new instance of the class. + + The operation. + The column. + + + + Initializes a new instance of the class. + + The operation. + + + + Initializes a new instance of the class. + + The operation. + The mode. + + + + Compares the current instance to the specified request. + + The request. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the operation. + + The operation. + + + + Gets the auto size mode. + + + + + Gets the column. + + The column. + + + + Gets the related with the page. + + + + + Gets the editor value. + + + + + Gets the element which hosts and arranges all the items within the strip. + + + + + Gets the element which hosts and arranges all the items within the strip. + + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The event arguments. + + + + Fires the event. + + The event arguments. + + + + Gets or sets a value indicating whether to use animation when collapsing and expanding the menu. + + + + + Gets or sets the animation interval. + + + + + Gets or sets the animation frames. + + + + + Occurs before the hamburger menu is collapsed. + + + + + Occurs before the hamburger menu is expanded. + + + + + Occurs after the hamburger menu is collapsed. + + + + + Occurs after the hamburger menu is expanded. + + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Creates Heart like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Initializes a new instance of the RadRating class + + + + + CreateChildItems + + + + + + Set the default control size. + + + + + Gets or sets whether the edit control is auto-sized. + + + + + Gets or sets the direction of rating element paint (Standard, Reversed). + + + + + Gets or sets the orientation of the rating control. + + + + + Gets or sets the selection mode of the rating control. + + + + + Gets the rating items collection. + + + The items. + + + + + Gets or sets the average value of rating element. + + + + + Gets or sets the minimum value of rating element. + + + + + Gets or sets the maximum value of rating element. + + + + + Gets or sets the text of the Caption label. + + + + + Gets or sets the text of the Sub Caption label. + + + + + Gets or sets the text of the description label. + + + + + Gets the instance of RadRatingElement wrapped by this control. RadRatingElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRatingControl. + + + + + Gets or sets whether the rating is ReadOnly. + The Value of the element can still be set in ReadOnly mode, nothing else. + + + + + This property is not relevant for this class. + + + + + Occurs before the value of the RatingElement is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Gets the rating items collection. + + + The items. + + + + + Gets or sets the text of the Caption label. + + + The caption. + + + + + Gets or sets the text of the Sub Caption label. + + + The sub caption. + + + + + Gets the caption element. + + + The caption element. + + + + + Gets the sub caption element. + + + The sub caption element. + + + + + Gets the description element. + + + The description element. + + + + + Gets the elements layout. + + + The elements layout. + + + + + Gets or sets the tool tip format string. + + + The tool tip format string. + + + + + Gets or sets the selected value. + + + The selected value. + + + + + Gets or sets the current value. + + + The current value. + + + + + Gets or sets the hover value. + + + The hover value. + + + + + Gets or sets whether the Hover layer should be applied. + + + + + Gets or sets the value of the rating. + + + + + Gets or sets the minimum value of rating element. + + + The minimum. + + The Minimum should be lower than the Maximum + + + + Gets or sets the maximum value of rating element. + + + The maximum. + + The Maximum should be bigger than the Minimum + + + + Gets or sets the orientation of the rating control (Horizontal, Vertical). + + + + + Gets or sets the selection mode of the rating control (full item, half item, precise selection). + + + + + Gets or sets a value indicating whether the element is read-only. + + + + + Gets or sets the text of the description label. + + + + + GGets or sets the direction of rating element paint (Standard, Reversed). + + + The direction. + + + + + Gets or sets the tool tip precision. + + + The tool tip precision. + + + + + Gets or sets the percentage rounding. + + + The percentage rounding. + + + + + Gets or sets the tool tip offset. + + + The tool tip offset. + + + + + Gets or sets the duration of the tool tip. + + + + + Occurs before the value of the RatingElement is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Represents a state manager for + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Creates a new star shape with the specified number of arms and inner radius. + + + + + Creates a new star shape with the specified number of arms and inner radius. + + The number of arms the star will have. + The ratio between the inner and out ration of the star. + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Gets or sets the number of arms. + + + + + Gets or sets the ration between the inner and out radius. + + + + + Represents a logical data item that contains the tokenzied text and its value + + + + + Initializes a new instance of the class. + + The text. + The value. + + + + Compares the current object with another object of the same type. + + An object to compare with this object. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the parameter.Zero This object is equal to . Greater than zero This object is greater than . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the event. + + Name of the property. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the text. + + + + + Gets the value. + + + + + Occurs when a property value changes. + + + + + Represents a collection of + + + + + Initializes a new instance of the class. + + The text box. + + + + Initializes a new instance of the class. + + The text box. + The list. + + + + Raises the event. + + The instance containing the event data. + + + + Finds the specified text in the collection + + The text. + + + + + Fins all tokenized item that contains this text. + + The text. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Occurs when the collection is changed. + + + + + Represents the method that handles validation of tokens in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + if set to true [is valid token]. + + + + Gets the text of the token. + + + + + Gets or sets a value indicating whether the text is valid token. + + + true if the text is token; otherwise, false. + + + + + The AccessibleObject of + + + + + Initializes a new instance of the class. + + The text box control. + + + + Gets the associated text box. + + + + + Represents a close event arguments when closed + + + + + Represents event data of the RadPopupClosed event. + + + + + Initializes a new instance of the RadPopupClosedEventArgs class using + the closing reason. + + + closing reason + + + + + Initializes a new instance of the class. + + The reason. + The instance containing the event data. + + + + Gets the input arguments. + + + + + Represents the method that is called when is formatted. + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text block. + + + + Gets the text block to be formatted + + + + + X-coordinate comparer of + + + + + Initializes a new instance of the class. + + The x coordinate. + + + + Compares the specified x value. + + The x value. + The y value. + + + + + Edit operation in + + + + + Insert text operation + + + + + Replace text operation + + + + + Delete text operation + + + + + The autocomplete drop down of + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the associated text box. + + + + + Gets the associated list element. + + + + + Represents a tokenized text block in + + + + + Represents a single word in + + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Measures the textblock available size. + + Size of the available. + + + + Arranges the textblock final rectangle. + + The final rectangle. + + + + Gets or sets the index of the block + + + The index. + + + + + Gets or sets the block according to the previous one + + + The offset. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + Gets or sets the block's text + + + The text. + + + + + Gets the desired size of the block + + + The size of the desired. + + + + + Gets the control bounding rectangle. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Creates the tokenized text item. + + The text. + The value. + + + + + Creates the text content element. + + + + + + Creates the remove button element. + + + + + + Called when the remove button is clicked. + + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Gets the associated tokenized text item. + + + + + Gets the content element that contains the text + + + + + Gets the remove button. + + + + + Gets or sets a value indicating whether the block can be remove by clicking the Remove button. + + + true if [allow remove]; otherwise, false. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the index of the block + + + The index. + + + + + Gets a value indicating the offset. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + An view port element of + + + + + An editable and selectable + + + + + The wrap layout of + + + + + Initializes a new instance of the class. + + + + + Called when text block is formatting. + + The text block. + + + + Raises the event. + + The instance containing the event data. + + + + Called when a property is changing. + + Name of the property. + The old value. + The new value. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Notifies the text changing. + + The start position. + The length. + The old text. + The new text. + The action. + + + + + Notifies the text changed. + + The text. + The caret position. + The action. + + + + Performs measurement and arrangement of child elements. + + + + + Clamps the desired size in the valid available size bounds. + + The available size. + The desired size. + + + + + Merge and measure block. + + The text block. + The available size. + + + + Measures and perfroms wrapping for blocks in WordWrap mode + + The available size. + Index of the current block. + Document desired size. + Index of the current line. + The current block offset. + + + + + Adds the desired size of the line to document desired size. + + The line. + Size of the desired. + + + + Adds the desired size of the block to desired size of line. + + Size of the block desired. + The line. + + + + Gets the baseline offset. + + The line. + The text block. + + + + + Checks that tow block are splitted block + + The first block. + The second block. + + + + + Gets the next block for this index + + The index. + + + + + Gets the previous block for this index + + The index. + + + + + Determines whether this panel has text. + + + true if this panel has text; otherwise, false. + + + + + Gets the line info by its index + + Index of the line. + + + + + Creates the block for concrete and instance. + + The text + The type. + + + + + Clears the presented text + + + + + Gets the text between start and end position + + The start position. + The end position. + + + + + Gets the block's text. + + The block. + The start. + The length. + + + + + Search a text block by X coordinate. + + The line. + The x. + + + + + Search a text block by offset. + + The line. + The offset. + + + + + Search a line by using concrete comparer + + The line. + The comparer. + + + + + Determines whether the text is tab, whitespace, line feed or carriage return symbol. + + The text. + + true if [is special text] [the specified text]; otherwise, false. + + + + + Determines whether the text contains a new line + + The text + + true if [contains new line] [the specified text]; otherwise, false. + + + + + Determines whether the specified text is whitespace. + + The text. + + true if the specified text is whitespace; otherwise, false. + + + + + Determines whether the specified text is tab. + + The text. + + true if the specified text is tab; otherwise, false. + + + + + Determines whether the text is tab or whitespace. + + The text. + + true if the text is tab or whitespace; otherwise, false. + + + + + Determines whether the text is line feed symbol. + + The text. + + true if the text is line feed symbol; otherwise, false. + + + + + Determines whether the text is carriage return symbol. + + The text. + + true if the text is carriage return symbol; otherwise, false. + + + + + Gets the bounds of the Viewport + + + + + Gets or sets the spacing between lines when the is in multiline mode. + + + The line spacing. + + + + + Gets the logical lines of . + + + + + Gets the length of the text. + + + The length of the text. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets or sets a value indicating whether [word wrap]. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets a value indicating whether this is multiline. + + + true if multiline; otherwise, false. + + + + + Occurs when text block is formatting. + + + + + Occurs when a property value is changing. + + + + + Occurs when an instance of is created + + + + + Suspends notifcations when text is editing. + + + + + Resumes notifcations when text is editing. + + + + + Resumes notifcations when text is editing. + + if set to true the event is fired. + The new text. + The caret position. + The action. + + + + Convert point to absolute point according to the current scroll offset + + The point. + + + + + Gets the location of instance + + The position. + + + + + Deletes the text range + + The start position. + The end position. + + + + + Inserts the specified text in concerte position. + + The position. + The text. + + + + + Replaces the text ranged with a new text + + The start position. + The end position. + The text. + + + + + Replaces the text ranged with a new text + + The start position. + The end position. + The text. + + + + + Replaces the text range in + + The target block. + The start char position. + The end char position. + The text. + + + + Replaces the text range in concrete special + + The target block. + The start char position. + The end char position. + The text. + + + + Replaces the text range in concrete non-special + + The target block. + The start char position. + The end char position. + The text. + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets the scroller for Vertical Scrollbar + + + The Vertical Scroller + + + + + Gets or sets the scroller for Horizontal Scrollbar + + + The Horizontal Scroller + + + + + Gets or sets the selection primitive that renders the selection + + + The selection primitive. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Gets a value indicating whether this textbox is editing mode. + + + true if this textbox is editing; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Determines whether the specified text block is delimiter. + + The text block. + + true if the specified text block is delimiter; otherwise, false. + + + + + Removes range of the editable block. + + The block. + The start char position. + The text. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The token text. + + + + + Gets or sets the delimiter used to tokenize the text + + + The delimiter. + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets or sets the height of the min line. + + + The height of the min line. + + + + + Occurs when text is validating as token + + + + + Represents a keyboard and mouse input handler + + + + + Represents a keyboard and mouse input handler + + + + + Represents a keyboard and mouse input handler + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes the key up. + + The instance containing the event data. + + + + + Processes the key press. + + The instance containing the event data. + + + + + Processes the mouse down. + + The instance containing the event data. + + + + + Processes the mouse up. + + The instance containing the event data. + + + + + Processes the mouse move. + + The instance containing the event data. + + + + + Processes the mouse wheel. + + The instance containing the event data. + + + + + Processes the double click. + + The instance containing the event data. + + + + + Processes the mouse leave. + + The instance containing the event data. + + + + Prcesses the mouse enter. + + The instance containing the event data. + + + + Initializes a new instance of the class. + + The text box element. + + + + Determines whether the mouse input should be handled + + The mouse position. + + + + + Processes the mouse down. + + The instance containing the event data. + + + + + Processes the mouse up. + + The instance containing the event data. + + + + + Processes the mouse move. + + The instance containing the event data. + + + + + Processes the mouse leave. + + The instance containing the event data. + + + + Prcesses the mouse enter. + + The instance containing the event data. + + + + Processes the mouse selection. + + The location. + + + + + Sets the current cursor position + + The location. + + + + Processes the mouse wheel. + + The instance containing the event data. + + + + + Processes the context menu. + + The location. + + + + + Processes the double click. + + The instance containing the event data. + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes delete of + + if set to true [move next]. + + + + + Processes the select of all + + + + + + Processes the copy operation of + + + + + + Processes the paste operation of text + + + + + + Processes the cut. + + + + + + Processes the tab key. + + The instance containing the event data. + + + + + Selects the next or previous control. + + if set to true [forward]. + + + + + Processes the navigation key. + + The instance containing the event data. + + + + + Processes the list navigation. + + The instance containing the event data. + + + + + Processes the enter key. + + The instance containing the event data. + + + + + Processes the page key. + + The instance containing the event data. + + + + + Processes the key press. + + The instance containing the event data. + + + + + Processes the insert. + + The text. + + + + + Processes the key up. + + The instance containing the event data. + + + + + Initializes a new instance of the class. + + The text box element. + + + + Gets the text block at point. + + The location. + + + + + Represent a navigator in + + + + + Represent a navigator in + + + + + Represent a navigator in + + + + + Suspends the notifications. + + + + + Resumes the notifications. + + + + + Navigates by specified keys. + + The instance containing the event data. + + + + + Saves the current selection position. + + + + + Restores the saved selection position. + + + + + Scrolls to caret position. + + + + + + Selects the specified range. + + The start. + The end. + + + + + Gets the position from point. + + The point. + + + + + Gets the position from offset. + + The offset. + + + + + Gets the previous position. + + The position. + + + + + Gets the next position. + + The position. + + + + + Gets or sets the selection start. + + + The selection start. + + + + + Gets or sets the selection end. + + + The selection end. + + + + + Gets or sets the caret position. + + + The caret position. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Occurs when selection is changing. + + + + + Occurs when selection is changed. + + + + + Initializes a new instance of the class. + + The text box element. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Saves the current selection position. + + + + + Restores the saved selection position. + + + + + Suspends the notifications. + + + + + Resumes the notifications. + + + + + Gets the position from offset. + + The offset. + + + + + Gets the position from point. + + The point. + + + + + Gets the text position from line. + + The line. + The x. + + + + + Scrolls to caret position. + + + + + + Navigates by specified keys. + + The instance containing the event data. + + + + + Navigates at line. + + The instance containing the event data. + The position. + + + + + Gets the previous position. + + The position. + + + + + Gets the previous position resursively. + + The position. + + + + + Gets the next position. + + The position. + + + + + Gets the next position recursively. + + The position. + + + + + Navigates to line. + + The instance containing the event data. + The position. + + + + + Selects the specified range. + + The start. + The end. + + + + + Selects the override. + + if set to true [notify]. + + + + Sets the caret position. + + + + + Gets the associated text box element. + + + + + Gets or sets the selection start. + + + The selection start. + + + + + Gets or sets the selection end. + + + The selection end. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Gets or sets the caret position. + + + The caret position. + + + + + Occurs when selection is changing. + + + + + Occurs when selection is changed. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the editable position. + + The position. + if set to true [next]. + + + + + Represents a text box control that tokenized a text by specified delimiter + + + + + Enables the user to enter text, and provides multiline editing + + + + + Initializes a new instance of the class. + + + + + Creates the associated text box element. + + + + + + Appends text to the current text of a text box. + + The text. + + + + Clears all text from the text box element. + + + + + Specifies that the value of the SelectionLength property is zero so that no characters are selected in the element. + + + + + + Scrolls the contents of the control to the current caret position. + + + + + Selects a range of text in the text box. + + The selection start + The selection length + + + + Selects all text in the text box. + + + + + Moves the current selection in the text box to the Clipboard. + + + + + + Copies the current selection in the text box to the Clipboard. + + + + + + Replaces the current selection in the text box with the contents of the Clipboard. + + + + + + Inserts the specified text to the textbox + + The text. + + + + + Deletes the text at current position + + + + + + Deletes the text at the next current position + + if set to true deletes next character. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the size of the drop down max. + + + The size of the drop down max. + + + + + Gets or sets the size of the drop down min. + + + The size of the drop down min. + + + + + Gets or sets the max count of visible items in auto-complete drop down + + + The max drop down item count. + + + + + Gets the associated text box element. + + + + + Gets the auto-complete list element. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Gets or sets when the vertical scroll bar should appear in a multiline TextBox. + + + The state of the vertical scroll bar. + + + + + Gets or sets when the horizontal scroll bar should appear in a multiline TextBox. + + + The state of the horizontal scroll bar. + + + + + Gets or sets the auto complete display member. + + + The auto complete display member. + + + + + Gets or sets a value specifying the source of complete items used for automatic completion. + + + The auto complete data source. + + + + + Gets a value specifying the complete items used for automatic completion. + + + + + Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the element loses focus. + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the caret position. + + + The index of the caret. + + + + + Gets or sets the starting point of text selected in the text box. + + + The selection start. + + + + + Gets or sets the number of characters selected in the text box. + + + The length of the selection. + + + + + Gets the length of text in the element. + + + The length of the text. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box element. + + + The length of the max. + + + + + Gets or sets the current text in the text box element. + + + + + Gets or sets the prompt text that is displayed when the text box contains no text. + + + The null text. + + + + + Gets or sets the color of the null text. + + + The color of the null text. + + + + + Gets or sets a value indicating whether the null text will be shown when the control is focused and the text is empty. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets or sets the lines of text in a text box control. + + + The lines. + + + + + Gets or sets a value indicating the currently selected text in the text box. + + + The selected text. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text box element types a TAB character in the element instead of moving the focus to the next element in the tab order. + + + true if [accepts tab]; otherwise, false. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline TextBox control creates a new line of text in the control or activates the default button for the form. + + + true if [accepts return]; otherwise, false. + + + + + Gets or sets a value indicating whether this is a multiline text box. + + + true if multiline; otherwise, false. + + + + + Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets or sets whether the TextBox control modifies the case of characters as they are typed. + + + The character casing. + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets a value indicating whether the caret is visible in read only mode. + + + true if the caret is visible; otherwise, false. + + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Occurs when text selection is changing. + + + + + Occurs when text selection is changed. + + + + + Occurs when the text is changing. + + + + + Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when opening the context menu. + + + + + Fired when the Input Method Editor starts the composition. + + + + + Fired when the Input Method Editor completes the composition. + + + + + Fired when the Input Method Editor has a result ready. For languages like Korean + this might happen before the composition has ended. + + + + + Initializes a new instance of the class. + + + + + Gets the associated auto complete text box element. + + + + + Gets or sets the delimiter used to tokenize the text. + + + The delimiter. + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets the tokenized items. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets a property name which will be used to extract a value from the data items + + + + + Occurs when text is validating as token + + + + + Creates a new instance of the . + + + + + Fires right after the editor value is changed. + + The event arguments. + + + + Fires right before the editor value is changed. + + The event arguments. + + + + Fires after the dialog is closed. + + The event arguments. + + + + Fires when the is clicked. + + The event arguments. + + + + Sets the value of the editor. + + The new value to set. + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be placed in the browse editor and will be used to open + the . + + + + + + Gets the value of the editor. + + + + + Gets or sets the type of dialog to be opened when the browse button is pressed. + + + + + Gets the that opens the . + + + + + Gets the that will open upon pressing the browse button. + + + + + Determines if users can input text directly into the text field. + + + + + Fires after the dialog window is closed. + + + + + Fires right before the value is changed. Cancelable event. + + + + + Fires after the editor value is changed. + + + + + Represents a browser control box. The RadBrowseEditor class is a simple wrapper for the + RadBrowseEditorElement class. The RadBrowseEditor acts + to transfer events to and from its corresponding + RadBrowseEditorElement. The + RadBrowseEditorElement which is essentially the + RadBrowseEditor control may be nested in other telerik controls. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadBrowseEditorElement of this control. + + + + + Gets the OpenFileDialog of this control. + + + + + Gets or sets the type of dialog to be opened when the browse button is pressed. + + + + + Gets or sets the value of the editor. + + + + + Determines if users can input text directly into the text field.. + + + + + This property is not relevant for this class. + + + + + Fires after the dialog window is closed. + + + + + Fires right before the value is changed + + + + + Fires after the editor value is changed. + + + + + Fires when the ReadOnly property value is changed. + + + + + Creates a RadTimePicker instance. + + + + + Determines whether the Clock will show the system time. + + + + + Determines whether the Clock will show the system time. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + RadClock consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Shows the UITypeEditor + + + + + Occurs when the button of the editor is clicked. + + + + + Determines if the editor should be closed after the value has been changed. + + The current value of the editor. + The new value of the editor. + True if editor should be closed other wise false. + + + + Selects the whole text inside the editor tex box. + + + + + Validates if the text input in the text box is a valid value for the edited item + + True if the value is valid otherwise false. + + + + Gets the that is opening. + + + + + Gets or sets a value indicating whether the editor will loop through its values when double clicked. + + + true if the editor will loop through its values when double clicked; otherwise, false. + + + + + Provides information about the type of the editor required by the + GridTableViewManager when instantiating the requested type of column. + + + + + Initializes with editor type defined. + + + + + Initializes setting the required editor type. + + The type of the editor required. + + + + Initializes setting the required editor type. + The IInputEditor property is initialized by GridViewEditManager prior to event call, + if default implementation is available. + + The type of the editor required. + IInputEditor instance if available. + + + + Gets or sets the type of the editor required by the edited control if no default editor is available. + + + + + Gets or sets the ICellEditor instance if created outside the GridViewEditorManager. + Also if a default editor is provided by the RadGridView, it is available for post-initialization + or substitution. + + + + + Provides information about the new value that is edited inside the active + cell editor. + + + + + Gets the new value that is edited by the active editor. + + + + + Gets the new value that is edited by the active editor. + + + + + Sets the visibility of the sort/group items depending on whether the functionality is enabled. + + + + + Gets the Expand/Collapse menu item. + + + + + Gets the Edit menu item + + + + + Gets the Reset menu item. + + + + + Gets the Sort menu item. + + + + + Gets the Show description menu item. + + + + + Gets the Show toolbar menu item. + + + + + Represents a property descriptor for properties. + + + + + Creates a new instance of the class. + + The collection of objects whose properties will be exposed. + The original property descriptors for the objects. + + + + Gets a value indicating whether a property cam be reseted. + + Always returns true. + + + + Gets a common value of all objects or returns null if object's values differ. + + Returns a common value or null + + + + Resets the values of all objects for this property. + + + + + Sets a value to all objects. + + The value to set. + + + + + Gets a value indicating whether value should be serialized. + + Always returns true. + + + + Returns the type of component this property descriptor is for. + + + + + Gets a value indicating whether this property is read only. Always returns false. + + + + + Returns the type of the property. + + + + + Represents a for the + used in the . + + + + + Returns an instance of the . + + + + + Represents a for the . + + + + + Creates a new instance of the . + + The collection of objects. + + + + Returns a with the common properties of the objects in the + . + + The common properties of the objects in the . + + + + Returns a with the common properties of the objects in the + to which the specified attributes have been applied. + + The attributes by which to filter the properties. + The common properties of the objects in the . + + + + Represents a collection of objects. It can be used in a property grid to edit the common properties of the objects. + + + + + Creates a new empty . + + + + + Creates a new with the specified objects. + + The objects to fill the collection with. + + + + Gets the index of a given object. + + The object to look for. + The index of the object or -1 if the object is not present in the collection. + + + + Inserts an object in the given index. + + The index to insert on. + The object to insert. + + + + Removes an object from the specified index. + + The index to remove from. + + + + Adds an object to the collection. + + The object to add. + + + + Clears the entire collection. + + + + + Checks whether the collection contains the given object. + + The object to check for. + True if the object is present in the collection, otherwise false. + + + + Copies the objects from the collection to a specified array starting at the given index. + + The destination array. + The index to start at in the destination array. + + + + Removes a specified object from the collection. + + The object to remove. + True if the object was removed otherwise false. + + + + Gets or sets the object on the specified index. + + The index of the object + + + + Gets the number of items currently in the collection. + + + + + Gets a value indicating whether the collection si read only. Always returns false. + + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + The category the item would be grouped in. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + The category the item would be grouped in. + Determines if the property would be editable. + + + + Resets the value to the initial state. + + + + + Called when the PropertyChanged event is fired. + + + + + Gets or sets the Type of the property. + + + + + Gets or sets the name that would be displayed in the RadPropertyGrid + + + + + Gets or sets the value of the item. + + + + + Gets or sets the description to be displayed in the RadPropertyGrid for this item. + Same as setting a to a property. + + + + + Gets or sets a value indication whether this property item would be read only in the RadPropertyGrid. + Same as setting a to a property. + + + + + Gets or sets the category of this item. + Same as setting a to a property. + + + + + Gets or sets the text to be displayed instead of the property name. + Same as setting a to a property. + + + + + Gets or sets a collection of attributes to be applied to the item in the property grid. + If an attribute covered by property of the is added the + attribute in this collection will be ignored. will always be ignored. + + + + + Gets or sets the that contains this item. + + + + + Occurs when any of the properties is changed. + + + + + A descriptor for the used in the . + + + + + Creates a new instance of the . + + The item this descriptor would represent. + + + + Returns a value indicating if Reset can be performed for this item. + + Always returns true. + + + + Resets the value of the current item to its initial value. + + + + + Gets the value of the current item. + + The value of the item. + + + + Sets a new value to the current item. + + The value to be set to the current item. + + + + + Gets a value indicating whether the value should be serialized. + + Always returns true. + + + + Gets the type of component this descriptor is used for. + + + + + Gets a value indicating whether the current item is read only. + + + + + Gets the type of the current item. + + + + + Type descriptor provider for the . + + + + + Gets a type descriptor for the given instance. + + + The instance to get a type descriptor for. + The type descriptor. + + + + Custom type descriptor for the . + + + + + Creates a new instace of the + + The this descriptor is used for. + + + + Returns a collection of property descriptors corresponding to the items in the current . + + A collection of . + + + + Returns a collection of property descriptors corresponding to the items in the current . + + A collection of . + + + + Collection of items which can be set as a property grid selected object. + It's items would be displayed in the property grid as properties of an object. + + + + + Creates a new instace of the + + + + + Adds an item to the collection. + + The item to add. + + + + Adds an item to the collection. + + Type of the item. + Name to be displayed in the RadPropertyGrid. + Value for the item. + + + + Adds a collection of items to this collection. + + The collection of items to add. + + + + Inserts the item on the specified index. + + The index to insert on. + The item to insert. + + + + Gets the index of the item. + + The item which index to return + The index of the item if found and -1 if item is not in the collection. + + + + Checks whether a specific item is present in the collection. + + The item to check. + True if the item is contained in the collection otherwise false. + + + + Removes the specified item form the collection. + + The item to remove from the collection. + True if the removal was successful otherwise false. + + + + Removes the item with the specified name form the collection. + + The name of the item to remove. + True if the removal was successfull otherwise false. + + + + Removes an item from the specified index. + + The index to remove on. + + + + Clears the entire collection. + + + + + Copies the items of the collection to the specified array starting from the provided index. + + The destination array. + The index in the destination array. + + + + Gets the generic enumerator for this collection. + + The generic enumerator. + + + + Gets the enumerator for this collection. + + The enumerator. + + + + Gets the number of items in the collection. + + + + + Gets a value indicating whether the collection is read only. + + + + + Gets or sets the item at the specified index. + + The index. + The item on the specified index. + + + + Gets or sets the item with the specified name. + + The property name. + Returns the item if its present in the collection otherwise returns null + + + + Gets a value indicating whether the item is selected. + + + + + Gets a value indicating whether the item is expanded. + + + + + Gets a value indicating whether the control contains the focus. + + + + + Gets the that is parent to this item. + + + + + Gets a value indicating whether a given point is in a location where resize should be initialized when the left mouse button is pressed. + + The point to check for. + true if point is in location for resize otherwise false. + + + + Attaches a logical item to this visual element. + + The logical item. + The context. + + + + Detaches the currently attached logical item. + + + + + Syncronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets or sets a value indicating whether this item has a parent or not. + + + + + Gets or sets a value indicating whether this item has changed its value or not. + + + + + Gets or sets a value indicating whether this property can be edited. + + + + + Gets the header element of the . + + + + + Gets the property grid item indent element + + + + + Gets the property grid item expander element. + + + + + Gets the property grid item text element. + + + + + Gets the property grid item value element + + + + + Gets the logical item attached to this visual element. + + + + + Synchronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets the property grid item check box element + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Syncronizes changes with other elements. + + + + + Editing begins when the cell receives focus. + + + + + Editing begins when a focused cell is clicked again. + + + + + Editing begins only when the method is called. + + + + + Represents a toggle button element. The toggle button supports two or three + states depending on the IsThreeState property. + + The RadToggleButton class is a simple wrapper + for the RadToggleButtonElement class. All UI and logic functionality is + implemented in the RadToggleButtonElement class. The + RadToggleButton acts to transfer events to + and from its corresponding RadToggleButtonElement instance. The latter can be + nested in other telerik controls. + + + + + Initializes a new instance of the RadToggleButtonElement class. + + + + Raises the StateChanging event. + + + + + Raises the CheckStateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the StateChanged event. + + + + + Raises the IsCheckedChanged event. + + + + + Occurs before the elements's state changes. + + + + + Occurs when the elements's state changes. + + + + + Occurs before the elements's check state changes. + + + + + Occurs when the elements's check state changes. + + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + Gets or sets a value indicating whether the button is checked. + + + + Gets or sets a value indicating whether the toggle button has three or two + states. + + + + + Gets or sets a value indicating whether the toggle button element is read only. + + + true if the toggle button element is read only; otherwise, false. + + + + + Executes a search with the current state of the filter. + + + + + Synchronizes the default toggle buttons in the + with the PropertySort property of the . + + + + + Executed when one of the toggle buttons changes. + + The button that triggered the event. + The event arguments. + + + + Gets the parent . + + + + + Gets the that enables CategorizedAlphabetical view in the + + + + + Gets the that enables Alphabetical view in the + + + + + Gets the . + + + + + Gets or sets the property name by which the search will be performed. + + + + + Gets or sets the filter operator which will be used for the search. + + + + + Gets or sets the value by which the search will be performed. + + + + + Gets or sets the height of the . + + + + + Begins the resize of the description element. + + The offset used to resize the description element. + + + + Gets the . + + + + + Gets the . + + + + + Gets the . + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the is visible. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Expands all the categories in the . + + + + + Collapses all the categories in the . + + + + + Resets the selected property to its default value. + + + + + Gets the . + + + + + Gets the . + + + + + Gets the + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the should be visible. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether the data can be grouped programatically. + + + + + Displays the properties of an object in a grid with two columns with a property name in the first column and value in the second. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Expands all the categories in the . + + + + + Collapses all the categories in the . + + + + + Resets the selected property to its default value. + + + + + Puts the current item in edit mode. + + true if successful. + + + + Commits any changes and ends the edit operation on the current item. + + true if successful. + + + + Close the currently active editor and discard changes. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a value indicating whether the data can be grouped programmatically. + + + + + Gets a value indicating whether there are currently open editors. + + + + + Gets or sets a value indicating whether the user is allowed to edit the values of the properties. + + + + + Gets the active editor. + + + + + Gets or sets a value indicating how user begins editing a cell. + + + + + Gets or sets a value indicating whether the groups will be expanded or collapsed upon creation. + + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadPropertyGrid is focused. + + The default value is false. + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + The default value is 300. + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the selected item. + + + + + Gets or sets the object which properties the is displaying. + + + + + Gets or sets the objects which properties the is displaying. + + + + + Gets the Items collection. + + + + + Gets the Groups collection. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets the group descriptors. + + + + + Gets the filter descriptors. + + + + + Gets the sort descriptors. + + + + + Gets or sets the sort order of items. + + + + + Gets or sets the mode in which the properties will be displayed in the . + + + + + Gets or sets a value indicating whether the is visible. + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the search box of the should be visible + + + + + Gets the of this control. + + + + + Gets or sets the height of the items. + + The height of the item. + + + + Gets or sets the distance between items of the RadPropertyGridElement. + + + + + Gets or sets the width of the indentation of subitems. + + + + + RadPropertyGrid consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadPropertyGrid consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Occurs before the selected object is changed. + + + + + Occurs after the selected object is changed. + + + + + Occurs before a property grid item is selected. + + + + + Occurs after the property item is selected. + + For more information about handling events, see also SelectedItemChanging. + + + + + + Occurs when opening the context menu. + + + + + Fires for custom grouping operation. + + + + + Occurs when the user presses a mouse button over a property grid item. + + + + + Occurs when the user moves the mouse in the area of a property grid item. + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs before the value of the Expanded property of a property grid item is changed. + + + + + Occurs after the value of the Expanded property of a property grid item is changed. + + + + + Occurs when the item changes its state and needs to be formatted. + + + + + Occurs when a new item element is going to be created. + + + + + Occurs when a new item element is going to be created. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when item's value is changing. + + + + + Occurs when a property value changes. + + + + + Fires when a property value is validating. + + + + + Fires when a property has finished validating. + + + + + Fires before the value in an editor is being changed. The action can be canceled. + + + + + Fires when the value of an editor changes. + + + + + This property determines whether the traverser will traverse only via expanded items or through all items + true to traverse all items, false to traverse expanded items only + + + + + Represents the method that will handle events in . + + + + + + + Provides data for all events used in + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + true if [process PropertyGridItemBase]; otherwise, false. + + + + Gets the item. + + The item. + + + + Gets or sets the text of the title. + + + + + Gets or sets the text of the content. + + + + + Gets the . + + + + + Gets the . + + + + + Gets or sets the height of the . + + + + + Gets the parent of this element. + + + + + Attaches a logical item to this visual element. + + The logical item. + The context. + + + + Detaches the currently attached logical item. + + + + + Syncronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets the property grid group item expander element. + + + + + Gets the property grid group item text element. + + + + + Gets the logical item currently attached to this visual element. + + + + + Syncronizes element with data item. + + + + + Allows you to raise ValueChanged event when using custom editor. + + + + + Allows you to raise ValueChanging event when using custom editor. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Updates the visual items in the property grid + + Indicated the update action + + + + Gets the element at specified coordinates. + + The x coordinate. + The y coordinate. + An instance of if successful. + + + + Ensures the item is visible within the RadPropertygridElement and scrolls the element if needed. + + The item to visualize. + + + + Scrolls the scrollbar to bring the specified into view. + + The item to visualize. + + + + Initializes and returns the context menu associated with the specified . + + The element. + An instance of if successfull. + + + + Makes the property grid columns even. + + + + + Sorts the sub items of all expanded items. + + + + + Ensures the item is visible within the RadPropertygridElement and scrolls the element if needed. + + The item to visualize. + + + + Performs the needed operations on the data layer when the mode is changed. + + + + + + Gets the default property for the selected object + + The that is the default property. + + + + Updates the scroll bars visibility. + Specifies the action which caused the update. + + + + + Syncronizes all visual elements. + + + + + This method traverses through the visible items of RadPropetyGrid and returns an item matching the . + + + + + + + Gets the type of editor used for a editing the given item. + + The item to get editor type for. + The type of the editor + + + + Puts the current item in edit mode. + + + + + + Commits any changes and ends the edit operation on the current item. + + + + + + Close the currently active editor and discard changes. + + + + + + Ends the editing of an item and commits or discards the changes. + + Determines if the changes are commited [true] or discarded [false]. + + + + + Gets an editor depending on the type of the value to be edited. + + The type of the value. + + + + + Returns a value indicating whether the is editable + + The item to check. + True if item can be edited. Otherwise false. + + + + Gets or sets a value indicating whether the data can be grouped programmatically. + + + + + Gets or sets a value indicating whether the values of the items should be invalidated the next time a grouping and/or sorting is performed. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets the that is a parent to this element. + + + + + Gets the active editor. + + + + + Gets or sets the mode in which the properties will be displayed in the . + + + + + Gets or sets the minimum width columns can have. + + + + + Gets a value indicating whether there are currently open editors. + + + + + Gets or sets a value indicating whether the user is allowed to edit the values of the properties. + + + + + Gets or sets a value that indicates whether editors specified with an EditorAttribute will be used without considering built-in editors. + + + + + Gets or sets the width of the "column" that holds the values. + + + + + Gets or sets a value indicating whether the groups will be expanded or collapse upon creation. + + + + + Gets the group descriptors. + + The group descriptors. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets or sets the height of the items. + + The height of the item. + + + + Gets or sets the width of the indentation of subitems. + + + + + Gets or sets the object which properties the RadPropertyGrid is displaying. + + + + + Gets or sets the objects which properties the RadPropertyGrid is displaying. + + + + + Gets the collection to which the RadPropertyGrid is bound to. + + + + + Gets the selected item. + + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating how user begins editing a cell. + + + + + Gets or sets the distance between property grid items. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadPropertyGrid is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Fires for custom grouping operation. + + + + + Occurs before the selected object is changed. + + + + + Occurs after the property grid selected object has been changed. + + + + + Occurs when is formatting + + + + + Occurs when a mouse button is pressed on the . + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when mouse moves over a . + + + + + Occurs when item is expanding. + + + + + Occurs when item has been expanded. + + + + + Occurs when the selected item is changing + + + + + Occurs when selected item has been changed. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when item's value is changing. + + + + + Occurs when item's value has been changed. + + + + + Fires when a property value is validating. + + + + + Fires when a peoperty has finished validating. + + + + + Fires before the value in an editor is being changed. The action can be canceled. + + + + + Fires when the value of an editor changes. + + + + + Occurs when [binding context changed]. + + + + + Docks the search button on the left or right side of the search text box depending on the RightToLeft state. + + + + + Gets the search button. + + + + + Represents base class for button elements used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorButton. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorOperationButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorCommandButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorDeleteButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorEqualsButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorMemoryButtonElement. + + Button text. + + + + Represents arrow button used in RadCalculatorDropDown. + + + + + Represents memory element used in RadCalculatorContentElement. + + + + + Represents a control with calculator functionality. + + + + + Creates a RadCalculatorDropDown instance. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadCalculatorElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the calculator value. + + + + + Gets or sets a value indicating whether the calculator drop down is read only. + + + true if the calculator drop down is read only; otherwise, false. + + + + + This property is not relevant for this class. + + + + + Fires when the value of the calculator is changing. + + + + + Fires when the value of the calculator is changing. + + + + + Event needed by the engine behind simple data binding so that it can work two way. In order to receive notifications for changes in the calculator value subscribe to the CalculatorValueChanged event. + + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorDigitButtonElement. + + Button text. + + + + Represents the content element of RadCalculatorDropDown. + + + + + Creates new instance of RadCalculatorContentElement. + + + + + + Gets the owner RadCalculatorElement. + + + + + Gets or sets the memory value. + + + + + Gets the grid layout. + + + The grid layout. + + + + + Gets the button add. + + + The button add. + + + + + Gets the button substract. + + + The button substract. + + + + + Gets the button multiply. + + + The button multiply. + + + + + Gets the button divide. + + The button divide. + + + + Gets the button SQRT. + + The button SQRT. + + + + Gets the button percent. + + The button percent. + + + + Gets the button reciprocal. + + The button reciprocal. + + + + Gets the button sign. + + The button sign. + + + + Gets the button equals. + + The button equals. + + + + Gets the button C. + + The button C. + + + + Gets the button CE. + + The button CE. + + + + Gets the button delete. + + The button delete. + + + + Gets the button mplus. + + The button mplus. + + + + Gets the button mminus. + + The button mminus. + + + + Gets the button MS. + + The button MS. + + + + Gets the button MR. + + The button MR. + + + + Gets the button MC. + + The button MC. + + + + Gets the button 0. + + The button 0. + + + + Gets the button 1. + + The button 1. + + + + Gets the button 2. + + The button 2. + + + + Gets the button 3. + + The button 3. + + + + Gets the button 4. + + The button 4. + + + + Gets the button 5. + + The button 5. + + + + Gets the button 6. + + The button 6. + + + + Gets the button 7. + + The button 7. + + + + Gets the button 8. + + The button 8. + + + + Gets the button 9. + + The button 9. + + + + Gets the button point. + + The button point. + + + + RadCalculatorDropDown arithmetic operations. + + + + + Represents the editor content element of RadCalculatorDropDown. + + + + + Creates new instance of RadCalculatorEditorContentElement. + + + + + Indicates whether the fast navigation buttons were used. + + + + + Gets the direction of the navigation. + + + + + Arguments class used when the SelectionChanging event is fired. + + + + + Gets a refference to the Dates which will be selected + + + + + Gets a refference to the SelectedDates collection, represented by the Telerik RadCalendar component + that rise the SelectionChanging event. + + + + + The public delegate for the SelectionChanging event. + + + + + Arguments class used with the ElementRender event. + + + + + Gets a refference to the LightVisualElement object that represents visually the specified day to render. + + + + + Gets a refference to the RadCalendarDay logical object that represents the specified day to render. + + + + + Gets a refference to the CalendarView object currently displayed by RadCalendar, + that contains the specified day to render. + + + + + The public delegate for ElementRender event. + + + + + Indicates whether the fast navigation buttons were used. + + + + + Gets the direction of the navigation. + + + + + Gets or sets the start date of the new view. + + + + + Arguments class used when the ViewChangingEvent event is fired. + + + + + Gets the new CalendarView instance that will substitute the view currently displayed by RadCalendar. + + + + + The public delegate for the ViewChanging event. + + + + + RadCalendarDay represents a object that maps date value to corresponding visual settings. + Also the object implements Boolean properties that represent the nature of the selected date - + whether it is a weekend, disabled or selected in the context of the calendar. Mostly the values + of those properties are set at runtime when a RadCalendarDay instance is constructed and passed + to the DayRender event. + + + + + Sets whether RadCalendarDay object is associated with a DateTime equal to today's date. + + True if RadCalendarDay object is associated with today's date. + + + + Sets whether RadCalendarDay object is associated with a DateTime that represents a weekend day. + + True if RadCalendarDay object is associated with a DateTime that represents a weekend day. + + + + Checks whether RadCalendarDay object is associated with a DateTime that represents a recurring event. + + the DateTime to compare. + the System.Globalization.Calendar object used to check whether the DateTime + represents a recurring event. + + + + + Removes the time component of a DateTime object, thus leaving only the date part. + + the DateTime object to be processed. + the DateTime object containing only the date part of the original DateTime object. + + + + + + the DateTime object associated with this particular RadCalendarDay. + + + + + + + the DateTime object associated with this particular RadCalendarDay. + the CalendarDayCollection that contains this particular RadCalendarDay. + + + + + Raises the PropertyChanged event. + + The name of the property. + + + + Raises the PropertyChanged event. + + PropertyChangedEventArgs instance containing the name of the property. + + + + Gets or sets the image associated with a particular RadCalendarDay object. + + + + + Gets or sets the template associated with a particular RadCalendarDay object. + The template must inherit from RadHostItem. + + + + + Gets or sets the date represented by this RadCalendarDay. + + + + + Gets or sets a value indicating whether the RadCalendarDay is qualified as available for selection. + + + + + Gets or sets a value indicating whether the RadCalendarDay is selected + + + + + Gets or sets a value indicating whether the RadCalendarDay is disabled + + + + + Gets or sets a value indicating whether the RadCalendarDay represents the current date. + + + + + Gets or sets a value indicating whether the RadCalendarDay settings are repeated/recurring through out the valid + date range displayed by the calendar. + + + The RecurringEvents enumeration determines which part of the date is handled (day or day and month). + + + + + Gets or sets a value indicating whether the RadCalendarDay is mapped to a date that represents a non working + day/weekend. + + + + + Gets or sets the text displayed when the mouse pointer hovers over the calendar day. + + + + + The owner of RadCalendarDay object. + + + + + Used to handle all requests for layout invalidation through a single place + + + + + Used to handle all requests for repainting through a single place + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Summary description for CalendarDayCollection. + + + + + Finds the RadCalendarDay with specified key, optionally searching child days. + + The date bound to a particular RadCalendarDay object to search for. + An array of RadCalendarDay objects whose Date property matches the specified key. + + + + Returns the index of the specified RadCalendarDay object in the collection. + + The RadCalendarDay object to locate in the collection. + The zero-based index of the item found in the CalendarDayCollection; otherwise, -1. + + + + Adds an collection of previously created RadCalendarDay objects to the collection. + + An array of RadCalendarDay objects representing the views to add to the collection. + + + + Adds a previously created RadCalendarDay object to the end of the CalendarDayCollection. + + The RadCalendarDay object to add to the collection. + + + + Adds a DateTime object to the end of the CalendarDayCollection. + + The DateTime object to add to the collection. + + + + Adds a collection of date time values to the collection. + + An IEnumerable of DateTime objects to add to the collection. + + + + Returns an enumerator that can be used to iterate through the RadCalendarDay collection. + + An IEnumerator that represents the RadCalendarDay collection. + + + + Inserts an existing RadCalendarDay object into the CalendarDayCollection at the specified location. + + The indexed location within the collection to insert the RadCalendarDay object. + The RadCalendarDay object to insert into the collection. + + + + Removes the specified RadCalendarDay object from the CalendarDayCollection. + + The RadCalendarDay object to remove. + + + + Returns an enumerator that can be used to iterate through the RadCalendarDay collection. + + An IEnumerator that represents the RadCalendarDay collection. + + + + Removes all RadCalendarDay objects in the collection of CalendarDays. + + + + + Copies the elements of CalendarDayCollection to a new + of elements. + + A one-dimensional of + elements containing copies of the elements of the . + Please refer to for details. + + + + Copies the elements of the CalendarDayCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from CalendarDayCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a RadCalendarDay object to the collection of CalendarDays. + + The RadCalendarDay object to add to the collection. + + + + Removes all RadCalendarDay objects in the collection of CalendarDays. + + + + + Checks whether a specific RadCalendarDay object is in the collection of CalendarDays. + + The RadCalendarDay object to search. + True if the RadCalendarDay is found, false otherwise. + + + + Returns a zero based index of a RadCalendarDay object depending on the passed index. + + The zero-based index, RadCalendarDay object or the date represented by the searched RadCalendarDay object. + A zero based index of the RadCalendarDay object in the collection, or -1 if the RadCalendarDay object is not found. + + + + Adds a RadCalendarDay object in the collection at the specified index. + + The index after which the RadCalendarDay object is inserted. + The RadCalendarDay object to insert. + + + + Deletes a RadCalendarDay object from the collection. + + The RadCalendarDay object to remove. + + + + Deletes the RadCalendarDay object from the collection at the specified index. + + The index in collection at which the RadCalendarDay object will be deleted. + + + + Creates a new CalendarDayCollection object that is a copy of the current instance. + + A new CalendarDayCollection object that is a copy of this instance. + + + + Creates a new object that is a copy of the current instance. + + A new object that is a copy of this instance. + + + + Gets a value indicating whether access to the CalendarDayCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the CalendarDayCollection. + + + + + Gets a value indicating whether the CalendarDayCollection has a fixed size. + + + + + Gets a value indicating whether the CalendarDayCollection is read-only. + + + + + Gets or sets the RadCalendarDay at the specified indexed location in the collection. + + The indexed location of the RadCalendarDay in the collection. + The RadCalendarDay at the specified indexed location in the collection. + + + + Gets the total number of RadCalendarDay objects in the collection. + + + + + Gets or sets the RadCalendarDay at the specified indexed location in the collection. + + The indexed location of the RadCalendarDay in the collection. + The RadCalendarDay at the specified indexed location in the collection. + + + + Gets or sets a RadCalendarDay object depending on the passed key. + Only integer and string indexes are valid. + + + + + Summary description for CalendarView. + + + + + Determines if a DateTime object belongs to the dates range managed by a particular CalendarView. + + The DateTime object to be tested. + True if the DateTime object belongs to the dates range managed by a particular CalendarView; False otherwise. + + + + Adds the specified date to the SelectedDates collection of RadCalendar. + + The DateTime object to add. + + + + Adds the specified range of dates to the SelectedDates collection of RadCalendar. + + array of DateTime objects to add. + + + + Adds the specified range of dates to the SelectedDates collection of RadCalendar. + + A System.DateTime that specifies the initial date to add to the SelectedDates collection. + A System.DateTime that specifies the end date to add to the SelectedDates collection. + + + + Gets a DateTime object that is part of the date range handled by the previous calendar view. + Used for traversal of the calendar. + + The DateTime object + + + + Gets a DateTime object that is part of the date range handled by the next calendar view. + Used for traversal of the calendar. + + The DateTime object + + + + + + + + + + + + Ensures that the child views collection is created. + + + + + Initializes properly the ViewStartDate, ViewEndDate, ViewRenderStartDate, ViewRenderEndDate properties + + + + + handles the page down key. + + The key data to be processed. + + + + handles the page up key. + + The key data to be processed. + + + + handles the down arrow key. + + The key data to be processed. + + + + handles the up arrow key. + + The key data to be processed. + + + + handles the End key. + + The key data to be processed. + + + + handles the Home key. + + The key data to be processed. + + + + handles the left arrow key. + + The key data to be processed. + + + + handles the right arrow key. + + The key data to be processed. + + + + Toogles the date selection (Enter key). + + The key data to be processed. + + + + Verifies CalendarView settings required for correct presentation of calendrical information. + + + + + Returns the DateTime object that is used by the CalendarView to initialize. + + DateTime object that is used by the CalendarView to initialize. + + + + handles key events that require processing from CalendarView. + + The key data to be processed. + + + + Creates a CalendarView object based on the logic implemented by the CalendarView instance + that implements the method. + + DateTime object that is used to create the CalendarView. + The created CalendarView object. + + + + Raises the PropertyChanged event + + The name of the property + + + + Gets the parent calendar that the current view is assigned to. + + + + + Gets the parent tree node of the current tree node. + + + + + Gets the collection of nodes that are assigned to the tree view control. + + + + + Gets or sets the name of the node. + + + + Gets or sets the format string that is applied to the days cells tooltip. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'dddd, MMMM dd, yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + + Gets or sets the orientation (rendering direction) of the calendar component. + Default value is Horizontal. + + + + + Member + Description + + + Horizontal + Renders the calendar data row after row. + + + Vertical + Renders the calendar data column after + column. + + + + + + + Gets or sets the horizontal alignment of the view title. + The ContentAlignment enumeration is defined in + System.Windows.Forms.VisualStyles + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Gets or sets a value indicating whether the tree node is visible or partially visible. + + + + + Gets the root parent node for this instance. + + + + + Gets a value indicating whether the CalendarView is the top most view displayed by RadCalendar. + + + + + Gets the zero-based depth of the tree node in the RadTreeView tree. + Returns -1 if the node is outside of a tree view. + + + + + Gets or sets a value indicating whether the calendar view is in read-only mode. + + + + + Gets or sets the text displayed for the complete CalendarView + selection element in the view selector cell. + + + The text displayed for the CalendarView selection element in the + selector cell. The default value is "". + + + Use the ViewSelectorText property to provide custom text for + the CalendarView complete selection element in the selector + cell. +
+ + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the ViewSelectorText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the EnableViewSelector + property is set to true. +
+
+ + + Use the RowHeaderText property to provide custom text for + the CalendarView complete row header element. +
+ + + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the RowHeaderText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the ShowRowsHeaders + property is set to true. +
+ + The text displayed for the CalendarView header element. The default value is "". + + + Gets or sets the text displayed for the row header element. + +
+ + + Use the ColumnHeaderText property to provide custom text + for the CalendarView complete column header element. +
+ + + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the ColumnHeaderText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the ShowColumnHeaders + property is set to true. +
+ + The text displayed for the CalendarView column header element. The default value is "". + + + Gets or sets the text displayed for the column header element. + +
+ + + The image displayed for the CalendarView column header element in the + header cells. The default value is "". + + + Gets or sets the image displayed for the column header element. + + + This property applies only if the ShowColumnHeaders property + is set to true. If ColumnHeaderText is set too, + its value is set as an alternative text to the image of the column header. + When using this property, the whole image URL is generated using also the + value. + Example: + ShowColumnHeaders="true"
+ ImagesBaseDir = "Img/"
+ ColumnHeaderImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + The image displayed for the CalendarView row header element. The default value is "". + + + Gets or sets the image displayed for the row header element. + + + This property applies only if the ShowRowHeaders property is + set to true. If RowHeaderText is set too, its + value is set as an alternative text to the image of the row header. + When using this property, the whole image URL is generated using also the + value. + Example:
+ ShowRowHeaders = "true"
+ ImagesBaseDir = "Img/"
+ RowHeaderImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + Gets or sets the margin of the view cells + + + + + Gets or sets the margin of the view cells + + + + + Gets or sets the image displayed for the complete + selection element in the view selector cell. + + + The image displayed for the CalendarView selection element in + the selector cell. The default value is "". + + + When using this property, the whole image URL is generated using also the + value. + Example:
+ ImagesBaseDir = "Img/"
+ ViewSelectorImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + Gets or sets whether the month matrix, when rendered will show days from other (previous or next) + months or will render only blank cells. + + + + Gets or sets whether the fish eye functionality is enabled. + + + Gets or sets the zooming factor of a cell which is handled by the fish eye functionality. + + + + Gets or sets the predefined pairs of rows and columns, so that the product of + the two values is exactly 42, which guarantees valid calendar layout. It is applied + on a single view level to every + + + + + + The Width applied to a Header + + + + + The Height applied to a Header + + + + Gets or sets whether a single CalendarView object will display a selector. + + + + Gets or sets the the count of rows to be displayed by a multi month CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a multi month CalendarView. + + + + Gets or sets whether a single CalendarView object will display a title row. + + + Gets or sets the format string used to format the text inside the header row. + + + Gets or sets whether a CalendarView object will display a header row. + + + Gets or sets whether a CalendarView object will display a header column. + + + + Gets or sets whether row headers ( if displayed by a MonthView object) + will act as row selectors. + + + + + Gets or sets whether column headers ( if displayed by a MonthView object) + will act as column selectors. + + + + + Gets or sets whether a selector for the entire CalendarView ( + MonthView ) will appear on the calendar. + + + + + Gets a value indicating whether the CalendarView has child views. + + + + + Gets the DateTime object that is the first date to be rendered by CalendarView. + While ViewStartDate is the start date that is handled by a particular CalendarView instance, + the ViewRenderStartDate might belong to a different (previous) CalendarView object. + + + + + Gets the DateTime object that is the last date to be rendered by CalendarView. + While ViewEndDate is the start date that is handled by a particular CalendarView instance, + the ViewRenderEndDate might belong to a different (next) CalendarView object. + + + + + Gets or sets a DateTime value specifying the starting date for the period handled by a CalendarView instance. + + + + + Gets or sets a DateTime value specifying the ending date for the period handled by a CalendarView instance. + + + + + Gets or sets the size and location of the tree node in pixels, relative to the parent layout. + + + + + Gets or sets the the count of rows to be displayed by a CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a CalendarView. + + + + + Gets the previous available view. Used for traversal of the calendar. + + + + + Gets the next available view. Used for traversal of the calendar. + + + + + Gets the default System.Globalization.Calendar instance as + specified by the default culture. + + + A calendar divides time into measures, such as weeks, months, and years. The + number, length, and start of the divisions vary in each calendar. + Any moment in time can be represented as a set of numeric values using a + particular calendar. For example, the last vernal equinox occurred at (0.0, 0, 46, + 8, 20, 3, 1999) in the Gregorian calendar. An implementation of Calendar can + map any DateTime value to a similar set of numeric values, and + DateTime can map such sets of numeric values to a textual representation + using information from Calendar and DateTimeFormatInfo. The + textual representation can be culture-sensitive (for example, "8:46 AM March 20th + 1999 AD" for the en-US culture) or culture-insensitive (for example, + "1999-03-20T08:46:00" in ISO 8601 format). + A Calendar implementation can define one or more eras. The + Calendar class identifies the eras as enumerated integers where the current + era (CurrentEra) has the value 0. + In order to make up for the difference between the calendar year and the + actual time that the earth rotates around the sun or the actual time that the moon + rotates around the earth, a leap year has a different number of days than a + standard calendar year. Each Calendar implementation defines leap years + differently. + For consistency, the first unit in each interval (for example, the first + month) is assigned the value 1. + The System.Globalization namespace includes the following + Calendar implementations: GregorianCalendar, + HebrewCalendar, HijriCalendar, + JapaneseCalendar, JulianCalendar, + KoreanCalendar, TaiwanCalendar, and + ThaiBuddhistCalendar. + + + + + Gets or sets the vertical spacing between the calendar cells + + + + + Gets or sets the horizontal spacing between the calendar cells + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Updates correctly the visual appearance of RadCalendar. Updates the parential + dependencies (parent and Calendar properties) also. + + the CalendarView that will be updated + + + + Finds the calendar views with specified key, optionally searching child views. + + The name of the calendar view to search for. + true to search child views; otherwise, false. + An array of CalendarView objects whose Name property matches the specified key. + + + + Returns the index of the specified calendar view in the collection. + + The CalendarView to locate in the collection. + The zero-based index of the item found in the calendar view collection; otherwise, -1. + + + + Adds an collection of previously created CalendarView objects to the collection. + + An array of CalendarView objects representing the views to add to the collection. + + + + Adds a previously created CalendarView object to the end of the CalendarViewCollection. + + The CalendarView object to add to the collection. + The zero-based index value of the CalendarView object added to the CalendarViewCollection. + + + + Returns an enumerator that can be used to iterate through the CalendarView collection. + + An IEnumerator that represents the CalendarView collection. + + + + Inserts an existing CalendarView object into the CalendarViewCollection at the specified location. + + The indexed location within the collection to insert the CalendarView object. + The CalendarView object to insert into the collection. + + + + Removes the specified CalendarView object from the CalendarViewCollection. + + The CalendarView object to remove. + + + + Returns an enumerator that can be used to iterate through the CalendarView collection. + + An IEnumerator that represents the CalendarView collection. + + + + Removes all CalendarView objects from the collection. + + + + + Copies the elements of the CalendarViewCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from CalendarViewCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a previously created CalendarView object to the end of the CalendarViewCollection. + + The CalendarView object to add to the collection. + The zero-based index value of the CalendarView object added to the CalendarViewCollection. + + + + Removes all CalendarView objects from the collection. + + + + + Determines whether the specified CalendarView object is a member of the collection. + + The CalendarView to locate in the collection. + true if the CalendarView is a member of the collection; otherwise, false. + + + + Returns the index of the specified calendar view in the collection. + + The CalendarView to locate in the collection. + The zero-based index of the item found in the calendar view collection; otherwise, -1. + + + + Inserts an existing CalendarView object into the CalendarViewCollection at the specified location. + + The indexed location within the collection to insert the CalendarView object. + The CalendarView object to insert into the collection. + + + + Removes the specified CalendarView object from the CalendarViewCollection. + + The CalendarView object to remove. + + + + Removes the element at the specified index of the CalendarViewCollection. + + The zero-based index of the element to remove. + + + + Gets the total number of CalendarView objects in the collection. + + + + + Gets or sets the CalendarView at the specified indexed location in the collection. + + The indexed location of the CalendarView in the collection. + The CalendarView at the specified indexed location in the collection. + + + + Gets or sets by name the CalendarView instance in the collection. + + The name of the CalendarView in the collection. + The CalendarView with a specified name in the collection. + + + + Gets a value indicating whether access to the CalendarViewCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the CalendarViewCollection. + + + + + Gets a value indicating whether the CalendarViewCollection has a fixed size. + + + + + Gets a value indicating whether the CalendarViewCollection is read-only. + + + + + Gets or sets the CalendarView at the specified indexed location in the collection. + + The indexed location of the CalendarView in the collection. + The CalendarView at the specified indexed location in the collection. + + + + Specifies the display formats for the days of the week used as selectors by + RadCalendar.You can specify whether the days of the week are displayed as + the full name, short (abbreviated) name, first letter of the day, or first two letters of the day. + + + + + The days of the week displayed in full format. For example, Tuesday. + + + + + The days of the week displayed in abbreviated format. For example, Tues. + + + + + The days of the week displayed with just the first letter. For example, T. + + + + + The days of the week displayed with just the first two letters. For example, Tu. + + + + + The shortest unique abbreviated day names associated with the current DateTimeFormatInfo object. + + + + + Indicates the first day of the week to use when calling date-related functions. + + + + + Sunday + + + + + Monday + + + + + Tuesday + + + + + Wednesday + + + + + Thursday + + + + + Friday + + + + + Saturday + + + + + Handled by the current System.Globalization.Calendar object. + + + + + Summary description for MonthLayout. + Layout_7columns_x_6rows - horizontal layout + Layout_14columns_x_3rows - horizontal layout + Layout_21columns_x_2rows - horizontal layout + Layout_7rows_x_6columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + Layout_14rows_x_3columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + Layout_21rows_x_2columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + + + + Allows the calendar to display the days in a 7 by 6 matrix. + + 1 + + + + Alows the calendar to display the days in a 14 by 3 matrix. + + 2 + + + + Allows the calendar to display the days in a 21 by 2 matrix. + + 4 + + + + Allows the calendar to display the days in a 7 by 6 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 8 + + + + Allows the calendar to display the days in a 14 by 3 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 16 + + + + Allows the calendar to display the days in a 21 by 2 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 32 + + + + Summary description for RecurringEvents. + DayInMonth - Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day. + DayAndMonth - The month and the day part of the date is taken into account. That gives the ability to serve events repeated in a specific month on the same day. + Today - gives the ability to control the visual appearace of today's date. + None - Default value, means that the day in question is a single point event, no recurrences. + + + + + Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day. + + 1 + + + + The month and the day part of the date are taken into account. That gives the ability to serve events repeated in a specific month on the same day. + + 2 + + + + The week day is taken into account. That gives the ability to serve events repeated in a specific day of the week. + + 4 + + + + The week day and the month are taken into account. That gives the ability to serve events repeated in a specific week day in a specific month. + + 8 + + + + Gives the ability to control the visual appearace of today's date. + + 16 + + + + Default value, means that the day in question is a single point event, no recurrence. + + 32 + + + + Summary description for CalendarView. + + + + + Gets the string representation for a particular day in the week. + + Specifies the day of the week. + the string representation for the specified day. + + + + Retrieves the ToolTip text associated with a particular RadCalendarDay object. + + RadCalendarDay object + The retrieved ToolTip text associated with a particular RadCalendarDay object + + + + Gets the RadCalendarDay object associated with a particular DateTime object if any. + + DateTime object to be tested. + The retrieved RadCalendarDay object. + + + + Gets the month name. + + + + + Returns the number of months displayed by a particular MonthView (in this case 1). + + + + + Summary description for CalendarView. + + + + + Calculates the correct position of the CalendarView + + + + + Returns the index of the specified DateTime object in the collection. + + The DateTime object to locate in the collection. + The zero-based index of the item found in the DateTimeCollection; otherwise, -1. + + + + Adds a previously created DateTime object to the end of the DateTimeCollection. + + The DateTime object to add to the collection. + The zero-based index value of the DateTime object added to the DateTimeCollection. + + + + Returns an enumerator that can be used to iterate through the DateTime collection. + + An IEnumerator that represents the DateTime collection. + + + + Inserts an existing DateTime object into the DateTimeCollection at the specified location. + + The indexed location within the collection to insert the DateTime object. + The DateTime object to insert into the collection. + + + + CanAdd method verify whether the date can be add to the collection. + + The DateTime object to insert into the collection. + + + + Removes the specified DateTime object from the DateTimeCollection. + + The DateTime object to remove. + + + + Removes all DateTime objects from the collection. + + + + + Removes a range of DateTime elements from the DateTimeCollection. + + The zero-based starting index of the range of elements to remove. + The number of elements to remove. + + + + Adds an array of previously created DateTime objects to the collection. + + An array of DateTime objects representing the dates to add to the collection. + + + + Determines whether the specified DateTime object is a member of the collection. + + The DateTime to locate in the collection. + true if the DateTime is a member of the collection; otherwise, false. + + + + Copies the elements of the DateTime collection to a new DateTime array. + + A DateTime array + + + + Returns an enumerator that can be used to iterate through the DateTime collection. + + An IEnumerator that represents the DateTime collection. + + + + Copies the elements of the DateTimeCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from DateTimeCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a previously created DateTime object to the end of the DateTimeCollection. + + The DateTime object to add to the collection. + The zero-based index value of the DateTime object added to the DateTimeCollection. + + + + Removes all DateTime objects from the collection. + + + + + Determines whether the specified DateTime object is a member of the collection. + + The DateTime to locate in the collection. + true if the DateTime is a member of the collection; otherwise, false. + + + + Returns the index of the specified DateTime object in the collection. + + The DateTime object to locate in the collection. + The zero-based index of the item found in the DateTimeCollection + + + + Inserts an existing DateTime object into the DateTimeCollection at the specified location. + + The indexed location within the collection to insert the DateTime object. + The DateTime object to insert into the collection. + + + + Removes the specified DateTime object from the DateTimeCollection. + + The DateTime object to remove. + + + + Removes the element at the specified index of the DateTimeCollection. + + The zero-based index of the element to remove. + + + + Creates a new DateTimeCollection object that is a copy of the current instance. + + A new DateTimeCollection object that is a copy of this instance. + + + + Creates a new object that is a copy of the current instance. + + A new object that is a copy of this instance. + + + + Gets the total number of DateTime objects in the collection. + + + + + Gets or sets the DateTime at the specified indexed location in the collection. + + The indexed location of the DateTime in the collection. + The DateTime at the specified indexed location in the collection. + + + + Gets a value indicating whether access to the DateTimeCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the DateTimeCollection. + + + + + Gets a value indicating whether the DateTimeCollection has a fixed size. + + + + + Gets a value indicating whether the DateTimeCollection is read-only. + + + + + Gets or sets the DateTime at the specified indexed location in the collection. + + The indexed location of the DateTime in the collection. + The DateTime at the specified indexed location in the collection. + + + + The RadCalendar main class. + + + + + Raises the SelectionChanging event. + + A DateTimeCollection collection used by SelectionEventArgs. + A List with Dates which will be selected + SelectionEventArgs instance. + + + + Raises the SelectionChanged event. + + + + + Raises the ElementRender event of the RadCalendar control and allows you to provide a custom + handler for the ElementRender event. + + A LightVisualElement object that contains information about the cell to render. + A RadCalendarDay that contains information about the day to render. + A CalendarView that contains the day to render. + + + + Raises the ViewChanging event. + + A CalendarView collection used by ViewChangingEventArgs. + ViewChangingEventArgs instance. + + + + Raises the ViewChanged event. + + + + + Remove focused date and change the current view to today + + Indicates that all selected dates will be cleared as well. + + + + Removes the time component of a DateTime object, thus leaving only the date part. + + the DateTime object to be processed. + the DateTime object containing only the date part of the original DateTime object. + + + + Ensures that a valid CalendarView object is instantiated and used by RadCalendar as default view. + + The CalendarView object to be used as default view. + + + + Explicitely invalidates RadCalendar layout. Can be used when batch updates to calendar properties are made + outside of the control that require control invalidation. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the row in the multi-view table where the focused date is positioned. + + + + + The column in the multi-view table where the focused date is positioned. + + + + + Gets the instance of RadCalendarElement wrapped by this control. RadCalendarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadCalendar. + + + + + This property is not relevant for this class. + + + + + Specifies the navigation mode that will be used when user click on header element.Zoom navigation mode is not supporting in MultipleView of RadCalendar + + + + + Occurs when the view is about to be changed by the navigation elements. + + + + + Occurs when the view is changed by the navigation elements. + + + + + SlectionChanged event is fired when a new date is added or removed from + the SelectedDates collection. + + + + + SlectionChanged event is fired when a new date is added or removed from the + SelectedDates collection. + + + + + ElementRender event is fired after the generation of every calendar cell + object and just before it gets rendered. It is the last place where + changes to the already constructed calendar cells can be made. + + + + + ViewChanging event is fired when a navigation to a different date range is required. + + + + + ViewChanged event is fired when a navigation to a different date + range occurred. Generally this is done by using the normal navigation buttons. + + + + + Specifies the display formats for the days of the week used as selectors by RadCalendar. + + + Use the DayNameFormat property to specify the name format for the days + of the week. This property is set with one of the DayNameFormat + enumeration values. You can specify whether the days of the week are displayed as + the full name, short (abbreviated) name, first letter of the day, or first two + letters of the day. + The DayNameFormat enumeration represents the display formats for the + days of the week used as selectors by RadCalendar. + + + Member name + Description + + + FirstLetter + The days of the week displayed with just the first letter. For + example, T. + + + FirstTwoLetters + The days of the week displayed with just the first two + letters. For example, Tu. + + + Full + The days of the week displayed in full format. For example, + Tuesday. + + + Short + The days of the week displayed in abbreviated format. For + example, Tues. + + + Shortest + The shortest unique abbreviated day names associated with the current DateTimeFormatInfo + object. + + + + + + + Gets or sets a DateTimeFormatInfo instance that defines the + culturally appropriate format of displaying dates and times as specified by the default + culture. + + + A DateTimeFormatInfo can be created only for the invariant + culture or for specific cultures, not for neutral cultures. + The cultures are generally grouped into three sets: the invariant culture, + the neutral cultures, and the specific cultures. + The invariant culture is culture-insensitive. You can specify the invariant + culture by name using an empty string ("") or by its culture identifier 0x007F. + InvariantCulture retrieves an instance of the invariant culture. + It is associated with the English language but not with any country/region. It can + be used in almost any method in the Globalization namespace that requires a + culture. If a security decision depends on a string comparison or a case-change + operation, use the InvariantCulture to ensure that the behavior will be + consistent regardless of the culture settings of the system. However, the invariant + culture must be used only by processes that require culture-independent results, + such as system services; otherwise, it produces results that might be + linguistically incorrect or culturally inappropriate. + A neutral culture is a culture that is associated with a language but not + with a country/region. A specific culture is a culture that is associated with a + language and a country/region. For example, "fr" is a neutral culture and "fr-FR" + is a specific culture. Note that "zh-CHS" (Simplified Chinese) and "zh-CHT" + (Traditional Chinese) are neutral cultures. + The user might choose to override some of the values associated with the + current culture of Windows through Regional and Language Options (or Regional + Options or Regional Settings) in Control Panel. For example, the user might choose + to display the date in a different format or to use a currency other than the + default for the culture. + If UseUserOverride is true and the specified culture + matches the current culture of Windows, the CultureInfo uses those + overrides, including user settings for the properties of the + DateTimeFormatInfo instance returned by the DateTimeFormat property, + the properties of the NumberFormatInfo instance returned by the + NumberFormat property, and the properties of the + CompareInfo instance returned by the CompareInfo + property. If the user settings are incompatible with the culture associated with + the CultureInfo (for example, if the selected calendar is not one of the + OptionalCalendars ), the results of the methods and the values of + the properties are undefined.
+
+ Note: In this version of RadCalendar the + NumberFormatInfo instance returned by the + NumberFormat property is not taken into account.
+
+
+ + + Gets or sets the CultureInfo supported by this RadCalendar object. + Describes the names of the culture, the writing system, and + the calendar used, as well as access to culture-specific objects that provide + methods for common operations, such as formatting dates and sorting strings. + + + The culture names follow the RFC 1766 standard in the format + "<languagecode2>-<country/regioncode2>", where <languagecode2> is + a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> + is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is + "en-US". In cases where a two-letter language code is not available, the + three-letter code derived from ISO 639-2 is used; for example, the three-letter + code "div" is used for cultures that use the Dhivehi language. Some culture names + have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic + script, "-Latn" specifies the Latin script. + The following predefined CultureInfo names and identifiers are + accepted and used by this class and other classes in the System.Globalization + namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Culture NameCulture IdentifierLanguage-Country/Region
"" (empty string)0x007Finvariant culture
af0x0036Afrikaans
af-ZA0x0436Afrikaans - South Africa
sq0x001CAlbanian
sq-AL0x041CAlbanian - Albania
ar0x0001Arabic
ar-DZ0x1401Arabic - Algeria
ar-BH0x3C01Arabic - Bahrain
ar-EG0x0C01Arabic - Egypt
ar-IQ0x0801Arabic - Iraq
ar-JO0x2C01Arabic - Jordan
ar-KW0x3401Arabic - Kuwait
ar-LB0x3001Arabic - Lebanon
ar-LY0x1001Arabic - Libya
ar-MA0x1801Arabic - Morocco
ar-OM0x2001Arabic - Oman
ar-QA0x4001Arabic - Qatar
ar-SA0x0401Arabic - Saudi Arabia
ar-SY0x2801Arabic - Syria
ar-TN0x1C01Arabic - Tunisia
ar-AE0x3801Arabic - United Arab Emirates
ar-YE0x2401Arabic - Yemen
hy0x002BArmenian
hy-AM0x042BArmenian - Armenia
az0x002CAzeri
az-AZ-Cyrl0x082CAzeri (Cyrillic) - Azerbaijan
az-AZ-Latn0x042CAzeri (Latin) - Azerbaijan
eu0x002DBasque
eu-ES0x042DBasque - Basque
be0x0023Belarusian
be-BY0x0423Belarusian - Belarus
bg0x0002Bulgarian
bg-BG0x0402Bulgarian - Bulgaria
ca0x0003Catalan
ca-ES0x0403Catalan - Catalan
zh-HK0x0C04Chinese - Hong Kong SAR
zh-MO0x1404Chinese - Macau SAR
zh-CN0x0804Chinese - China
zh-CHS0x0004Chinese (Simplified)
zh-SG0x1004Chinese - Singapore
zh-TW0x0404Chinese - Taiwan
zh-CHT0x7C04Chinese (Traditional)
hr0x001ACroatian
hr-HR0x041ACroatian - Croatia
cs0x0005Czech
cs-CZ0x0405Czech - Czech Republic
da0x0006Danish
da-DK0x0406Danish - Denmark
div0x0065Dhivehi
div-MV0x0465Dhivehi - Maldives
nl0x0013Dutch
nl-BE0x0813Dutch - Belgium
nl-NL0x0413Dutch - The Netherlands
en0x0009English
en-AU0x0C09English - Australia
en-BZ0x2809English - Belize
en-CA0x1009English - Canada
en-CB0x2409English - Caribbean
en-IE0x1809English - Ireland
en-JM0x2009English - Jamaica
en-NZ0x1409English - New Zealand
en-PH0x3409English - Philippines
en-ZA0x1C09English - South Africa
en-TT0x2C09English - Trinidad and Tobago
en-GB0x0809English - United Kingdom
en-US0x0409English - United States
en-ZW0x3009English - Zimbabwe
et0x0025Estonian
et-EE0x0425Estonian - Estonia
fo0x0038Faroese
fo-FO0x0438Faroese - Faroe Islands
fa0x0029Farsi
fa-IR0x0429Farsi - Iran
fi0x000BFinnish
fi-FI0x040BFinnish - Finland
fr0x000CFrench
fr-BE0x080CFrench - Belgium
fr-CA0x0C0CFrench - Canada
fr-FR0x040CFrench - France
fr-LU0x140CFrench - Luxembourg
fr-MC0x180CFrench - Monaco
fr-CH0x100CFrench - Switzerland
gl0x0056Galician
gl-ES0x0456Galician - Galician
ka0x0037Georgian
ka-GE0x0437Georgian - Georgia
de0x0007German
de-AT0x0C07German - Austria
de-DE0x0407German - Germany
de-LI0x1407German - Liechtenstein
de-LU0x1007German - Luxembourg
de-CH0x0807German - Switzerland
el0x0008Greek
el-GR0x0408Greek - Greece
gu0x0047Gujarati
gu-IN0x0447Gujarati - India
he0x000DHebrew
he-IL0x040DHebrew - Israel
hi0x0039Hindi
hi-IN0x0439Hindi - India
hu0x000EHungarian
hu-HU0x040EHungarian - Hungary
is0x000FIcelandic
is-IS0x040FIcelandic - Iceland
id0x0021Indonesian
id-ID0x0421Indonesian - Indonesia
it0x0010Italian
it-IT0x0410Italian - Italy
it-CH0x0810Italian - Switzerland
ja0x0011Japanese
ja-JP0x0411Japanese - Japan
kn0x004BKannada
kn-IN0x044BKannada - India
kk0x003FKazakh
kk-KZ0x043FKazakh - Kazakhstan
kok0x0057Konkani
kok-IN0x0457Konkani - India
ko0x0012Korean
ko-KR0x0412Korean - Korea
ky0x0040Kyrgyz
ky-KZ0x0440Kyrgyz - Kazakhstan
lv0x0026Latvian
lv-LV0x0426Latvian - Latvia
lt0x0027Lithuanian
lt-LT0x0427Lithuanian - Lithuania
mk0x002FMacedonian
mk-MK0x042FMacedonian - FYROM
ms0x003EMalay
ms-BN0x083EMalay - Brunei
ms-MY0x043EMalay - Malaysia
mr0x004EMarathi
mr-IN0x044EMarathi - India
mn0x0050Mongolian
mn-MN0x0450Mongolian - Mongolia
no0x0014Norwegian
nb-NO0x0414Norwegian (Bokmål) - Norway
nn-NO0x0814Norwegian (Nynorsk) - Norway
pl0x0015Polish
pl-PL0x0415Polish - Poland
pt0x0016Portuguese
pt-BR0x0416Portuguese - Brazil
pt-PT0x0816Portuguese - Portugal
pa0x0046Punjabi
pa-IN0x0446Punjabi - India
ro0x0018Romanian
ro-RO0x0418Romanian - Romania
ru0x0019Russian
ru-RU0x0419Russian - Russia
sa0x004FSanskrit
sa-IN0x044FSanskrit - India
sr-SP-Cyrl0x0C1ASerbian (Cyrillic) - Serbia
sr-SP-Latn0x081ASerbian (Latin) - Serbia
sk0x001BSlovak
sk-SK0x041BSlovak - Slovakia
sl0x0024Slovenian
sl-SI0x0424Slovenian - Slovenia
es0x000ASpanish
es-AR0x2C0ASpanish - Argentina
es-BO0x400ASpanish - Bolivia
es-CL0x340ASpanish - Chile
es-CO0x240ASpanish - Colombia
es-CR0x140ASpanish - Costa Rica
es-DO0x1C0ASpanish - Dominican Republic
es-EC0x300ASpanish - Ecuador
es-SV0x440ASpanish - El Salvador
es-GT0x100ASpanish - Guatemala
es-HN0x480ASpanish - Honduras
es-MX0x080ASpanish - Mexico
es-NI0x4C0ASpanish - Nicaragua
es-PA0x180ASpanish - Panama
es-PY0x3C0ASpanish - Paraguay
es-PE0x280ASpanish - Peru
es-PR0x500ASpanish - Puerto Rico
es-ES0x0C0ASpanish - Spain
es-UY0x380ASpanish - Uruguay
es-VE0x200ASpanish - Venezuela
sw0x0041Swahili
sw-KE0x0441Swahili - Kenya
sv0x001DSwedish
sv-FI0x081DSwedish - Finland
sv-SE0x041DSwedish - Sweden
syr0x005ASyriac
syr-SY0x045ASyriac - Syria
ta0x0049Tamil
ta-IN0x0449Tamil - India
tt0x0044Tatar
tt-RU0x0444Tatar - Russia
te0x004ATelugu
te-IN0x044ATelugu - India
th0x001EThai
th-TH0x041EThai - Thailand
tr0x001FTurkish
tr-TR0x041FTurkish - Turkey
uk0x0022Ukrainian
uk-UA0x0422Ukrainian - Ukraine
ur0x0020Urdu
ur-PK0x0420Urdu - Pakistan
uz0x0043Uzbek
uz-UZ-Cyrl0x0843Uzbek (Cyrillic) - Uzbekistan
uz-UZ-Latn0x0443Uzbek (Latin) - Uzbekistan
vi0x002AVietnamese
vi-VN0x042AVietnamese - Vietnam
+
+
+ + + Gets the default System.Globalization.Calendar instance as + specified by the default culture. + + + A calendar divides time into measures, such as weeks, months, and years. The + number, length, and start of the divisions vary in each calendar. + Any moment in time can be represented as a set of numeric values using a + particular calendar. For example, the last vernal equinox occurred at (0.0, 0, 46, + 8, 20, 3, 1999) in the Gregorian calendar. An implementation of Calendar can + map any DateTime value to a similar set of numeric values, and + DateTime can map such sets of numeric values to a textual representation + using information from Calendar and DateTimeFormatInfo. The + textual representation can be culture-sensitive (for example, "8:46 AM March 20th + 1999 AD" for the en-US culture) or culture-insensitive (for example, + "1999-03-20T08:46:00" in ISO 8601 format). + A Calendar implementation can define one or more eras. The + Calendar class identifies the eras as enumerated integers where the current + era (CurrentEra) has the value 0. + In order to make up for the difference between the calendar year and the + actual time that the earth rotates around the sun or the actual time that the moon + rotates around the earth, a leap year has a different number of days than a + standard calendar year. Each Calendar implementation defines leap years + differently. + For consistency, the first unit in each interval (for example, the first + month) is assigned the value 1. + The System.Globalization namespace includes the following + Calendar implementations: GregorianCalendar, + HebrewCalendar, HijriCalendar, + JapaneseCalendar, JulianCalendar, + KoreanCalendar, TaiwanCalendar, and + ThaiBuddhistCalendar. + + + + + Gets or sets the format string that will be applied to the dates presented in the + calendar area. + + + For additional details see Date Format Pattern + topic + + + + + Specifies the day to display as the first day of the week on the + RadCalendar control. + + + The FirstDayOfWeek enumeration represents the values that specify + which day to display as the first day of the week on the RadCalendar control. + + + Member name + Description + + + Default + The first day of the week is specified by the system + settings. + + + Friday + The first day of the week is Friday. + + + Monday + The first day of the week is Monday. + + + Saturday + The first day of the week is Saturday. + + + Sunday + The first day of the week is Sunday. + + + Thursday + The first day of the week is Thursday. + + + Tuesday + The first day of the week is Tuesday. + + + Wednesday + The first day of the week is Wednesday. + + + + + + Gets or sets the format string that is applied to the calendar title. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'MMMM yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + Gets or sets the format string that is applied to the days cells tooltip. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'dddd, MMMM dd, yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + + Gets or sets the separator string that will be put between start and end months in a multi view title. + + + + + Gets or sets the the count of rows to be displayed by a single CalendarView. + + + If the calendar represents a multi view, this property applies to the child views + inside the multi view. + + + + + Gets or sets the the count of columns to be displayed by a single CalendarView. + + + If the calendar represents a multi view, this property applies to the child views + inside the multi view. + + + + + Gets the today button of the footer element + + + + + Gets the clear button of the footer element + + + + + The Width applied to a Header + + + + + The Height applied to a Header + + + + + Gets or sets the horizontal alignment of the date cells content inside the + calendar area. + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Gets or sets the the count of rows to be displayed by a multi month CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a multi month CalendarView. + + + + + Gets or sets the maximum date valid for selection by + Telerik RadCalendar. Must be interpreted as the higher bound of the valid + dates range available for selection. Telerik RadCalendar will not allow + navigation or selection past this date. + + + This property has a default value of 12/30/2099 + (Gregorian calendar date). + + + + + Gets or sets the minimal date valid for selection by + Telerik RadCalendar. Must be interpreted as the lower bound of the valid + dates range available for selection. Telerik RadCalendar will not allow + navigation or selection prior to this date. + + + This property has a default value of 1/1/1980 + (Gregorian calendar date). + + + + + Gets or sets a value indicating whether the calendar is in read-only mode. + + + + + Sets or returns the currently selected date. The default value is the value of + System.DateTime.MinValue. + + + Use the SelectedDate property to determine the selected date on the >RadCalendar control. + The SelectedDate property and the SelectedDates collection are closely related. + When the AllowMultipleSelect property is set to false, a mode that allows only a single date selection, + SelectedDate and SelectedDates[0] have the same value and SelectedDates.Count equals 1. + When the AllowMultipleSelect property is set to true, mode that allows multiple date + selections, SelectedDate and SelectedDates[0] have the same value. + The SelectedDate property is set using a System.DateTime object. + When the user selects a date on the RadCalendar control, the SelectionChanged + event is raised. The SelectedDate property is updated to the selected date. + The SelectedDates collection is also updated to contain just this + date. +
+ Note Both the SelectedDate property and the + SelectedDates collection are updated before the SelectionChanged + event is raised. You can override the date selection by using the + OnSelectionChanged event handler to manually set the + SelectedDate property. The SelectionChanged event does not get + raised when this property is programmatically set. +
+
+
+ + + Gets or sets the value that is used by RadCalendar to determine + the viewable area displayed . + + + By default, the FocusedDate property returns the current + system date when in runtime, and in design mode defaults to + System.DateTime.MinValue. When the FocusedDate is + set, from that point, the value returned by the FocusedDate + property is the one the user sets. + + + + + Gets a collection of DateTime objects that represent the + selected dates on the RadCalendar control. + + + A DateTimeCollection that contains a collection of System.DateTime objects representing the selected + dates on the RadCalendar control. The default value is an empty DateTimeCollection. + + + Use the SelectedDates collection to determine the currently selected + dates on the control. + The SelectedDate property and the SelectedDates collection are closely related. When the AllowMultipleSelect + property is set to false, a mode that allows only a single date selection, + SelectedDate and SelectedDates[0] have the same value and + SelectedDates.Count equals 1. When the AllowMultipleSelect + property is set to true, mode that allows multiple date selections, + SelectedDate and SelectedDates[0] have the same value. + The SelectedDates property stores a collection of DateTime objects. + When the user selects a date or date range (for example with the column or + rows selectors) on the RadCalendar control, the SelectionChanged + event is raised. The selected dates are added to the SelectedDates + collection, accumulating with previously selected dates. The range of dates are not + sorted by default. The SelectedDate property is also updated to + contain the first date in the SelectedDates collection. + You can also use the SelectedDates collection to programmatically + select dates on the Calendar control. Use the Add, Remove, Clear, and SelectRange + methods to programmatically manipulate the selected dates in the SelectedDates collection. +
+ Note Both the SelectedDate property and the + SelectedDates collection are updated before the SelectionChanged + event is raised.You can override the dates selection by using the + OnSelectionChanged event handler to manually set the + SelectedDates collection. The SelectionChanged event is not + raised when this collection is programmatically set. +
+
+
+ + + Gets or sets whether navigating RadCalendar is allowed. + + + + + Gets or sets whether the fast navigation in RadCalendar is allowed. + + + + + Gets or sets the text displayed for the previous month navigation control. Will be + applied only if there is no image set (see + NavigationPrevImage). + + + Use the NavigationPrevText property to provide custom text for the + previous month navigation element in the title section of + RadCalendar. + + + The text displayed for the CalendarView previous month + navigation cell. The default value is "&lt;". + + + + + Gets or sets the text displayed for the next month navigation control. Will be + applied if there is no image set (see + NavigationNextImage). + + + The text displayed for the CalendarView next month navigation + cell. The default value is "&gt;". + + + Use the NavigationNextText property to provide custom text for the + next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed for the fast navigation previous month control. + + + The text displayed for the CalendarView selection element in the + fast navigation previous month cell. The default value is + "&lt;&lt;". + + + Use the FastNavigationPrevText property to provide custom text for + the next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed for the fast navigation next month control. + + + The text displayed for the CalendarView selection element in the + fast navigation next month cell. The default value is "&gt;&gt;". + + + Use the FastNavigationNextText property to provide custom text for + the next month navigation element in the title section of RadCalendar. + + + + + Gets or sets the image that is displayed for the previous month navigation control. + + + + + Gets or sets the image that is displayed for the next month navigation control. + + + + + Gets or sets the image that is displayed for the previous month fast navigation control. + + + + + Gets or sets the image that is displayed for the next month fast navigation control. + + + + + Gets or sets the text displayed as a tooltip for the previous month navigation control. + + + Use the NavigationPrevToolTip property to provide custom text for the + tooltip of the previous month navigation element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView previous month + navigation cell. The default value is "&lt;". + + + + + Gets or sets the text displayed as a tooltip for the next month navigation control. + + + The tooltip text displayed for the CalendarView next month + navigation cell. The default value is "&gt;". + + + Use the NavigationNextToolTip property to provide custom text for the + tooltip of the next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed as a tooltip for the fast navigation previous + month control. + + + Use the FastNavigationPrevToolTip property to provide custom text for + the tooltip of the fast navigation previous month element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView fast navigation + previous month cell. The default value is "&lt;&lt;". + + + + + Gets or sets the text displayed as a tooltip for the fast navigation previous + month control. + + + Use the FastNavigationPrevToolTip property to provide custom text for + the tooltip of the fast navigation previous month element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView fast navigation + previous month cell. The default value is "&lt;&lt;". + + + + + Gets or sets the horizontal alignment of the view title. + The ContentAlignment enumeration is defined in + System.Windows.Forms.VisualStyles + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Allows RadCalendar to render multiple months in a single view. + + + + + Allows the selection of dates. If not set, selection is forbidden, and if any dates are all ready selected, they are cleared. + + + + + Allows the selection of multiple dates. If not set, only a single date is selected, and if any dates + are all ready selected, they are cleared. + + + + Gets or sets whether the navigation buttons should be visible. + + + Gets or sets whether the fast navigation buttons should be visible. + + + Gets or sets whether RadCalendar will display a footer row. + + + Gets or sets whether RadCalendar will display a header/navigation row. + + + Gets or sets whether the column headers will appear on the calendar. + + + Gets or sets whether the row headers will appear on the calendar. + + + Gets or sets whether a single CalendarView object will display a header . + + + Gets or sets whether a single CalendarView object will display a selector. + + + + Gets or sets whether the view selector will be allowed to select all dates presented by the CalendarView. + + + + Gets or sets the zooming factor of a cell which is handled by the zooming (fish eye) functionality. + + + Gets or sets whether the zooming functionality is enabled. + + + + Gets or sets whether row headers ( if displayed by a MonthView object) + will act as row selectors. + + + + + Gets or sets whether column headers ( if displayed by a MonthView object) + will act as column selectors. + + + + + Gets or sets whether the month matrix, when rendered will show days from other (previous or next) + months or will render only blank cells. + + + + + Gets or sets the predefined pairs of rows and columns, so that the product of + the two values is exactly 42, which guarantees valid calendar layout. It is applied + on a single view level to every MonthView instance in the calendar. + + + The following values are applicable and defined in the MonthLayout + enumeration:
+
+ Layout_7columns_x_6rows - horizontal layout
+
+ Layout_14columns_x_3rows - horizontal layout
+
+ Layout_21columns_x_2rows - horizontal layout
+
+ Layout_7rows_x_6columns - vertical layout, required when AllowColumnHeaderSelectors is true and + Orientation is set to Vertical.
+
+ Layout_14rows_x_3columns - vertical layout, required when AllowColumnHeaderSelectors + is true and Orientation is set to Vertical.
+
+ Layout_21rows_x_2columns - vertical layout, required when AllowColumnHeaderSelectors is true and Orientation + is set to Vertical.
+
+
+ + + RadCalendar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadCalendar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Use the RowHeaderText property to provide custom text for + all row header elements. + + + The text displayed for all CalendarView row header elements. The default value is "". + + + Gets or sets the text displayed for all row header elements. + + + + + The image displayed for all CalendarView row header elements. The default value is "". + + + Gets or sets the image displayed for all row header elements. + + + + + Use the ColumnHeaderText property to provide custom text + for all CalendarView column header elements. + + + The text displayed for all CalendarView column header elements. The default value is "". + + + Gets or sets the text displayed for all column header elements. + + + + + The image displayed for all CalendarView column header elements. The default value is null. + + + Gets or sets the image displayed for all column header elements. + + + + + Gets or sets the text displayed for the view selector. + + + The text displayed for the view selector. The default value is "x". + + + Use the ViewSelectorText property to provide custom text for + the CalendarView selector element. + + + + + Gets or sets the image displayed for the view selector element. + + + The image displayed for the CalendarView selector element. The default value is null. + + + + + Gets or sets the orientation (rendering direction) of the calendar component. + Default value is Horizontal. + + + + + Member + Description + + + Horizontal + Renders the calendar data row after row. + + + Vertical + Renders the calendar data column after + column. + + + + + + + Gets or sets an integer value representing the number of CalendarView + views that will be scrolled when the user clicks on a fast navigation button. + + + + + A collection of special days in the calendar to which may be applied specific formatting. + + + + + Gets or sets the padding of the calendar cells. + + + + + Gets or sets the vertical spacing between the calendar cells. + + + + + Gets or sets the horizontal spacing between the calendar cells. + + + + + Gets or sets the margin of the calendar cells. + + + + + Exposes the top instance of CalendarView or its derived types. + Every CalendarView class handles the real calculation and + rendering of RadCalendar's calendric information. The + CalendarView has the ChildViews collection which contains all the sub views in case of a multi view + setup. + + + + Indicates the fish eye feature factor of a cell. + + + Gets or sets the zooming factor of a cell. + + + Gets or sets the week end cell. + + + Gets or sets the date which that cell is representing. + + + Gets or sets a cell representing a special day. + + + Gets or sets the today cell. + + + Gets or sets the today cell. + + + Gets or sets the out of range cell. + + + Gets or sets the cell which is from other month. + + + Gets or sets the selected cell. + + + + enable or disable animation on mouse click + + + + Specifies the type of a selector sell. + + + + Rendered as the first cell in a row. When clicked if UseRowHeadersAsSelectors is true, + it will select the entire row. + + + + + Rendered as the first cell in a column. When clicked if UseColumnHeadersAsSelectors is true, + it will select the entire column. + + + + + Rendered in the top left corner of the calendar view. When clicked if EnableViewSelector is true, + it will select the entire view. + + + + + Gets or sets the count of the items in the fast navigation drop down + + + + + first button + + + + + Last button + + + + + previuos button + + + + + next button + + + + + today button + + + + + label element + + + + + Gets or sets date time format + + + + + Gets or sets a value whether drop down fast navigation is enabled. + + + + Gets or sets whether the fish eye functionality is enabled + + + Gets or sets the zooming factor of a cell which is handled by the fish eye functionality.. + + + Gets or sets the width of header cells. + + + Gets or sets the height of header cells. + + + + first button + + + + + Last button + + + + + previuos button + + + + + next button + + + + + Sets the way opacity is applied to carousel items + + + + + Opacity is not modified + + + + + Selected item is with opacity 1.0. Opacity decreases corresponding to the distance from the selected item. + + + + + Opacity increases relatively to items' ZIndex. The Item with greatest ZIndex has opacity of 1.0 + + + + + CreateNewCarouselItem delegate usined by RadCarousel control + + + + + Arguments of CreateNewCarouselItem event + + + + + Initializes a new instance of the class. + + The new carousel item. + + + + Gets or sets the newly created item that will be added in RadCarousel + + + + + Represents a custom made ellipse path which will be used to specify the path travelled by carousel items when animated + + + + + Gets or sets the angle where itms new items will first appear in the carousel view. + + + + + RadCarouselContentItem with CarouselElement and Reflection primitive + + + + + create element with HostedItem + + + + + + Custom implementation for RadCarouselItem + + + + + + + Represent the HostedItem + + + + + Gets the owner RadCarouselElement. + + The owner. + + + Represents a RadCarouselReflectionItem primitive that is drawn on the screen. + + + + Default cstor for RadCarouselReflectionPrimitive + + which element will be draw + + + + repaint Reflection Image + + + + + ElementInvalidated + + + + + + + Represent ItemReflectionPercentage + + + + + Represents a color editor box. The RadColorBox class is a simple wrapper for the + RadColorBoxElement class. The RadColorBox acts + to transfer events to and from its corresponding + RadColorBoxElement. The + RadColorBoxElement which is essentially the + RadColorBox control may be nested in other telerik controls. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadColorDialog of this control. + + + + + Gets the RadColorBoxElement of this control. + + + + + Gets or sets the value of the editor. + + + + + Determines if users can input text directly into the text field.. + + + + + This property is not relevant for this class. + + + + + Fires after the color dialog is closed. + + + + + Fires right before the value is changed. Cancelable event. + + + + + Fires after the editor value is changed. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Represents data item for the list of strips in the customize dialog of the . + + + + + Represents visual item for the list of strips in the customize dialog of the . + + + + + Represents data item for the list of strip items in the customize dialog of the . + + + + + Represents visual item for the list of strip items in the customize dialog of the . + + + + + Provides customization dialogs for the customization of a . + + + + + Creates an instance of a dialog form. + + + object that contains information about strips. + A refference to the created form. + + + + Creates a default localization provider. + + A new instance of the default localization provider. + + + + Fires when the current dialog provider has changed. + + + + + Fires when a customize dialog is shown + + + + + Fires before a customize dialog is shown + + + + + Gets or sets the current localization provider. + + + + + Represents a simple dialog that provides customization options for the element. + + + + + Creates a customize dialog that provides customization options for the strips in the specified . + + The from which the information for the strips will be taken. + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Sets the strings values depending on the current localization provider. + + + + + Represents a form that holds the items of a that has been undocked and is floating. + + + + + Tries to dock the floating strip in a specified . + + The control into which the strip should be docked. + + + + Tries to dock the floating strip on a specified point of screen. The docking will be completed only if + the control under that point is . + + The location in screen coordinates where the strip should try to dock. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the control that hosts the floating items. + + + + + Gets or sets the parent of the control to which the floating strip belongs. + + + + + Gets the which contains information about the floating strip. + + + + + Gets or sets the which the floating form is hosting. + + + + + Provides localization services for . + + + + + Represents localization strings for . + + + + + Holds information about the strips in a + + + + + Adds information about a specific strip to the + + The object to add info about. + + + + Removes information about a specific strip from the + + The object to remove info about. + + + + Gets a list of elements for which the is storing info. + + + + + Represents a menu item on the context menu opened by right click on the RadCommandBar control. + Has a coresponding element and controls its VisibleInCommandBar property. + + + + + This create the default layout + + + + + + Represent Layout that holds elements over the menu + + + + + Represents an arrow button element. Each telerik control has a + corresponding tree of RadElements; the RadArrowButtonElement can be nested + in other telerik controls. + + + + Gets or sets the + %arrow direction:Telerik.WinControls.Primitives.ArrowPrimitive.ArrowDirection%. + + + Gets the ArrowPrimitive object. + + + + Represents a drop down list in . + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the DropDownList box. + + + + + selects the hosted control + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the hosted . + + + + + Gets the collection of data-binding objects for this IBindableComponent. + + + + + Gets or sets the BindingContext for the object. + + + + + Gets the items collection of the . + + + + + Gets a reference to the drop down form associated with this RadDropDownList. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + + Rotate items on double click in the edit box part + + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + + /// + Gets or sets the easing type of the animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + + + Gets or sets the height in pixels of the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + DefaultItems count in drop-down portion of the RadDropDownList. + + + + + Gets or sets the drop down maximum size. + + + + Represent the DropDownListElement element + + + + + Represent the List element + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Indicating whether the Popup part of the control + are displayed. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Show or hide item from the strip + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Occurs when the popup is about to be opened. + + + + + Occurs when the popup is opened. + + + + + Occurs when the popup is about to be closed. + + + + + Occurs when the popup is closed. + + + + + Occurs when the CommandBarTextBox has focus and the user presses a key + + + + + Occurs when the CommandBarTextBox has focus and the user releases the pressed key up + + + + + Occurs when the CommandBarTextBox has focus and the user presses a key down + + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Represents a button in . + + + + + Represents a drop down button in . + + + + + Gets the arrow part of the button. + + + + + Gets or sets the drop down menu, opened on click. + + + + + Gets menu items collection + + + + + Represents a host for elements in . + + + + + Gets or sets the hosted . + + + + + Gets or sets the hosted . + + + + + Show or hide item from the strip + + + + + Represents a label in . + + + + + Represents a separator for the items in . + + + + + Gets or sets the thickness of the separator item. + + + + + Represents a split button in . + + + + + Raises the event. + + true if the event should be canceled, false otherwise. + + + + Raises the event. + + + + + Occurs when the default item is changed. + + + + + Occurs before the default item is changed. + + + + + Gets or sets the default item of the split button. + + + + + Represetns a text box in . + + + + + Appends the given text + + + + + + Clears the editing control's text + + + + + Clears and undoes the text + + + + + Copies the selected text + + + + + Cuts the selected text + + + + + clears the selection + + + + + Gets a character from a given point + + + + + + + Gets the index of a character at a given point + + + + + + + gets the index of the first char in a given line + + + + + + + gets the first char index at the current line + + + + + + Gets a line number from a char index + + + + + + + Gets the position from a char index + + + + + + + pastes the text in the clipboard + + + + + Pasted a given text + + + + + + scrolls the textbox to the caret position + + + + + Makes a selection in a given range specified by a start position and selection length + + + + + + + selects the whole text + + + + + selects the hosted control + + + + + Show or hide item from the strip + + + + + Gets or sets the hosted . + + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the number of characters selected in the editable portion of the textbox. + + + + + Gets or sets the starting index of text selected in the textbox. + + + + + Occurs when the CommandBarTextBox has focus and the user pressees a key + + + + + Occurs when the CommandBarTextBox has focus and the user releases the pressed key up + + + + + Occurs when the CommandBarTextBox has focus and the user pressees a key down + + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Occurs when the element recieves focus. + + + + + Occurs when the element loses focus. + + + + + Represents a toggle button in . + + + + + Raises the StateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the StateChanged event. + + + + + Raises the IsCheckedChanged event. + + + + + Occurs when the IsChecked property is changed. + + + + + Occurs before the toggle state is changed. + + + + + Occurs when the toggle state is changed. + + + + + Occurs when the elements's check state changes. + + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + + Gets or sets a value indicating whether the toggle button has three or two + states. + + + + + + Represents a RadCommandBar control - a flexible component for implementation of tool and + button bars featuring docking behavior, toggling buttons, shrinkable toolbars. The RadCommandBar is responsible for managing + RadCommandBarBaseItem items which are positioned on some + of the CommandBarStripElement elements /// + + + Only items that inherit the RadCommandBarBaseItem class + can be placed inside the strip elements. You han use the special CommandBarHostItem + to host any other RadElement. + + + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Propagete ThemeName to child bar's menu + + + + + Apllies the orientation to the control and its child elements. + + The orientation to apply + Indicates whether events should be fired + + + + Gets or sets which RadCommandBar borders are docked to its parent control and determines + how a control is resized with its parent. + + + One of the values. The default + is . + + + The value assigned is not one of the + values. + + 1 + + + + Gets the menu opened upon rightclick on the control. + + + + + Gets or sets the size in pixels when current strip is being Drag and Drop in next or previous row. + + + + + Gets or sets the RadCommandBarElement of the RadCommandBar control. + + + + + Gets or sets the orientation of the commandbar - could be horizontal or vertical. + This property is controlled by the Dock property of the RadCommandBar control. + + + + + RadCommandBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadCommandBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Occurs before the orientation is changed. + + + + + Occurs after the orientation is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs when a floating strip is docked. + + + + + Gets the rows of the commandbar. + + + + + Represents the RootElement of the RadCommandBar control. + + + + + Raises a bubble event to notify its parents about the beginning of a drag. + + A that contains the + event data. + true if the drag should be canceled, false otherwise. + + + + Raises a bubble event to notify its parents about the end of a drag. + + A that contains the + event data. + + + + Raises a bubble event to notify its parents about the drag. + + A that contains the + event data. + + + + Paints the dots of the grip element. + + The IGraphics object where the element should be painted. + The angle under which the element should be painted. + The factor of scaling the element. + + + + Gets the delta of the drag. + + + + + Gets whether the item is being dragged. + + + + + Gets or sets the orientation of the grip element. + + + + + Gets or sets the that owns the grip element. + + + + + Gets or sets the size of the painted dots. + + + + + Gets or sets the space between dots. + + + + + Gets or sets the shadow offset of the dots. + + + + + Gets or sets the number of dots. + + + + + Gets or sets the elements orientation inside the stacklayout. + Possible values are horizontal and vertical. + + + + + Represent a single strip with controls inside + + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The collection that is changed. + The targeted element of the collection. + The type of the operation. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Forces the drag to end. + + + + + Measures the items with the size given and calculates the expected size of the strip + including the and . + + The size to measure the items with. + The calculated size of the strip. + + + + Subscribes to the children's events. + + + + + Unsubscribe from the children's events. + + + + + Applies an orientation to the strip and its children. + + The orientation to apply. + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Items collection is changed. + + + + + Occurs when item is clicked. + + + + + Occurs when item is moved to the overflow panel. + + + + + Occurs when item is moved out from the overflow panel. + + + + + Occurs before oferflow menu is opened. + + + + + Occurs when overflow menu is opened. + + + + + Occurs before oferflow menu is opened. + + + + + Occurs when overflow menu is opened. + + + + + Occurs before VisibleInCommandBar property is changed. + + + + + Occurs when VisibleInCommandBar property is changed. + + + + + Occurs before item is moved in or out of the UncheckedItems collection. + + + + + Occurs when item is moved in or out of the UncheckedItems collection. + + + + + Occurs before VisibleInCommandBar property is changed. + + + + + Occurs when VisibleInCommandBar property is changed. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Gets the form in which the items are placed where the strip is floating. + + + + + Gets the layout panel in which the items are arranged. + + + + + Gets or sets Overflow menu single strip minimum size. + + + + + Gets or sets Overflow menu single strip maximum size. + + + + + Gets or sets the desired location of the strip element. + + + + + + Gets or sets if the strip can be dragged. + + + + + + Gets or sets if the strip can be floating. + + + + + + Gets the delta of the drag. + + + + + + Gets or sets whether the strip is beeing dragged. + + + + + Gets or sets whether the strip is visible in the command bar. + This property is changed by the context menu which is opened on right click on the control. + + + + + + Gets or sets the elements orientation inside the line element. + Possible values are horizontal and vertical. + + + + + Gets whether the strip has items in its overflow panel. + + + + + Gets or sets the element of the strip. + + + + + Gets or sets the element of the strip. + + + + + Gets the items contained in the strip. + + + + + Represent a layout for the items contained in a strip + + + + + Represent the overflow button at the end of each strip + + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + The element that is reponsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is reponsible for firing the event. + A that contains the + event data. + + + + Gets the "Add or Remove Items" menu item from overflow menu + + + + + Gets the menu item from overflow menu which opens the Customize Dialog + + + + + Gets the overflow panel which contains the overflowed items + + + + + Gets the RadDropDownMenu that is shown on click. + + + + + Gets whether there are items in the overflow panel. + + + + + Gets or sets the orientation of the overflow button. + + + + + Gets or sets the dropdown menu element theme name. + + + + + Gets or sets the panel in which overflowed items are arranged. + + + + + Gets or sets the ArrowPrimitive element of the button. + + + + + This event fires before oferflow menu is opened. + + + + + This event fires when overflow menu is opened. + + + + + This event fires before oferflow menu is opened. + + + + + This event fires when overflow menu is opened. + + + + + Represents a menu item from drop down menu opened by the . + Has a coresponding item from the Items collection and + controls its VisibleInStrip property. + + + + + Create RadCommandBarOverflowMenuItem instance + + Which item will be show in menu + Menu that should be updated on representedItem visibility is changed + + + + Gets or sets the image that is displayed on menu item element. + + + + + Gets or sets the text that is displayed on menu item element. + + + + + Gets or sets whether the item is in checked state. + This property affects the VisibleInStrip property of the coresponding item in . + + + + + Represents a row of the . + Contains a collection of elements. + + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Moves specified in coresponding row + if its property points to a location in other row. + + The to move. + + + + Applies the new orientation to the element and its children. + + The orientation to apply. + + + + Gets or sets the that owns this row. + + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Gets the elements contained in this row. + + + + + This class provides API for managing components. + + + + + Gets an instance of the struct + that represents the location of the current alert + according to its screen position setting and + the currently opened alerts. + + An instance of the + class that represents the alert which position to define. + The evaluated position in screen coordinates. + + + + Sets the active screen. The active screen is used + to calculate the positioning of all desktop alerts. + + An instance of the + class that is the active screen to set. + + + + Gets an enumerator for the currently shown dekstop alerts. + + + + + + Recalculates the location of all opened alerts + based on their screen position. + + + + + Registers an instance of the and + displays it on the screen according to its + + + + + + Unregisters a desktop alert from the manager. + + The alert to unregister. + + + + Evaluates whether a given + is registered with the . + + The to check. + + + + + Fires when an instance of the class + is registered with this . + + + + + Fires when an instance of the class + is removed from this . + + + + + Gets the only instance of the + class. + + + + + Gets an instance of the class + that represents the screen onto which the + positions the alert popups. + + + + + This class encapsulates information relevant to the events of the . + + + + + Creates an instance of the class + with a specified . + + + + + + Gets an instance of the class + associated with the event context. + + + + + This class represents the popup of a component. + This popup hosts an instance of the class which + represents the element hierarchy of the alert. + + + + + Creates an instance of the class. + + An instance of the class that + represents the owner alert of the + + + + Creates an instance of the class + with specified owner. + + An instance of the class that + represents the owner element of the + An instance of the class that + represents the owner alert of the + + + + Stops the auto-close timer. + + + + + Restarts the auto-close timer. + + + + + Gets a sets a boolean value determining whether the alert popup will be automatically + closed after a given amount of time. + + + + + Gets or sets the amount of time in seconds after + which the alert will be automatically closed. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets a boolean value determining whether the popup is pinned on the screen. + + + + + Gets or sets a boolean value determining whether the popup + can be moved by dragging it by the grip. + + + + + Gets an instance of the which + represents the main alert element. + + + + + Gets or sets the caption text of the alert. + + + + + Gets or sets the content text of the alert. + + + + + Gets or sets the content image of the alert. + + + + + Gets an instance of the that + holds the buttons items added to the alert component. + + + + + This class represents the element which holds the buttons + that can be added in a window. + + + + + Gets an instance of the that + represents the buttons collection of the window. + + + + + Gets an instance of the + that represents the layout panel which holds the added buttons. + + + + + This class represents the caption of a . + It contains caption grip which is used to move the alert window, close + button and options drop-down button. + + + + + Gets an instance of the class + that represents the part of a that + can be used to move the component on the screen. + + + + + Gets an instance of the class + that represents the part of a that contains + the text and the system buttons. + + + + + This class represents the caption grip of a window. + + + + + This class represents the content of a component. + The content usually is built of an image and HTML enabled text. + + + + + This element represents the text and system buttons part of a component. + + + + + Gets an instance of the that + represents the layout panel which holds the alert window's + text and system buttons elements. + + + + + Gets an instance of the that + represents the layout panel which holds the alert window's caption + buttons. + + + + + Gets an instance of the class + that represents the text of the text + caption. + + + + + Gets an instance of the class + that represents the close button of a component. + + + + + Gets an instance of the class + that represents the pin button of a component. + + + + + Gets an instance of the class + that represents the options button of a component. + + + + + This class represents the main element of a window. + + + + + Gets or sets a value indicating whether the control is automatically resized by Height + to display its entire contents. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets an instance of the class + that represents the alert's content image. + + + + + Gets or sets the text of the caption. + + + + + Gets or sets the content text of the . + This is the actual text displayed in a . + + + + + Gets an instance of the class + that represents the caption of a component. + The caption contains moving grip and system buttons. + + + + + Gets an instance of the class + that represents the main content element of a component. + This element contains an image and a text element. + + + + + Gets an instance of the class + that represents the panel which holds the buttons added to the + component. + + + + + This class encapsulates information needed for displaying a . + The class contains caption text, content text, content image and a collection of buttons. + + + + + Creates an instance of the class + with specified content text. + + The text which will be displayed as a content of the + + + + Creates an instance of the class + with specified content text and caption text. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + + + + Creates an instance of the class + with specified content text, caption text and content image. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + An instance of the class that will be displayed as a content image of the + + + + Creates an instance of the class + with specified content text, caption text, content image and a collection of buttons. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + An instance of the class that will be displayed as a content image of the + An instance of the class that holds the buttons which will be displayed in the + + + + Represents a set of possible screen positions for a + windows. + + + + + The window is shown + at the position that is set to the Location property. + + + + + The window is shown + at the bottom right part of the working area + of the current screen. + + + + + The window is shown + centered at the bottom part of the working area + of the current screen. + + + + + The window is shown + at the bottom left part of the working area + of the current screen. + + + + + The window is shown + at the top right part of the working area + of the current screen. + + + + + The window is shown + centered at the top part of the working area + of the current screen. + + + + + The window is shown + at the top left part of the working area + of the current screen. + + + + + This class represents a Desktop Alert component which can be used to + display a small window on the screen to notify the user that an + event occurred. The location of the window and the way it appears + can be customized. + + + + + Creates an instance of the class. + + + + + Creates an instance of the class. + + An implementation of the interface + that holds this instance. + + + + Returns an instance of the class + that represents the alert's popup + + + + + Displays the alert popup on the screen at the specified location. + + + + + Hides the alert popup from the screen. + + + + + Resets the explicit location modifier. In other words, if the user + has modified the location of the alert's popup, the + will not consider it when rearranging the visible alerts. This method + will reset the explicit location modifier and thus the + will continue managing the location of the alert according to its location settings. + + + + + Gets or sets a value indicating whether the control is automatically resized by Height + to display its entire contents. + + + + Gets or sets a value indicating whether control's elements are aligned + to support locales using right-to-left fonts. + One of the values. + The default is . + The assigned + value is not one of the values. + + + + + Gets or sets a boolean value determining whether a sound is played + when the alert's popup is shown. + + + + + Gets or sets the sound which is played when the alert's popup is shown + and the PlaySound property is set to true. + + + + + Gets or sets the initial opacity of the alert's popup. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets a boolean value determining whether the alert's + popup will be pinned on the screen. If pinned, the alert's popup + will not be automatically closed upon mouse click outside its bounds + or if the AutoClose property is set to true. + + + + + Gets or sets a boolean value determining whether the popup + can be moved by dragging the caption grip. + + + + + Gets or sets a boolean value determining whether the alert's popup + will be animated. + + + + + Gets or sets a value determining the direction of the alert's popup animation. + + + + + Gets or sets the count of the alert's drop-down animation frames. + + + + + Gets or sets the type of the drop-down animation easing. + + + + + Gets or sets a value from the + enumerator that determines the type of fade animation performed + when the alert's popup is opened/closed. + + + + + Gets or sets the interval in milliseconds between two animation frames. + + + + + Gets or sets the count of animation frames for the fade animation. + + + + + Gets a sets a boolean value determining whether the alert popup will be automatically + closed after a given amount of time. + + + + + Gets or sets the amount of time in seconds after + which the alert will be automatically closed. + + + + + Gets or sets a value of the + enum which defines the position of the alert popup + on the working area of the active screen. + + + + + Gets or sets an instance of the struct + which defines fixed size for the alert's popup. The default + value is an empty size. In this case the popup adjusts its + size according to its content. Otherwise the value of this property is + considered. + + + + + Gets or sets the content image of the . + + + + + Gets or sets the text displayed in the alert popup. This text + can be additionally HTML formatted to achieve better appearance. + + + + + Gets or sets the alert's caption text. + The caption text is displayed below the moving grip of the alert's popup. + + + + + Gets or sets the items collection containing the button items shown at the bottom + part of the desktop alert's popup. + + + + + Gets the items collection containing the items added to the options drop-down button + of the desktop alert's popup. + + + + + Gets an instance of the class + that represents the popup of the desktop alert. + + + + + This element is used for the sole purpose of storing the current DPI scale. + + + + + Fires when the alert's popup is about to be opened. The opening + action can be canceled by modifying the arguments of this event. + + + + + Fires when the alert's popup was opened. + + + + + Fires when the alert's popup is about to be closed. + The closing action can be canceled by modifying the + arguments of this event.. + + + + + Fires when the alert's popup was closed. + + + + + IsItemsDirty Property + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + DropDownList Property + + + + + represent Navigation Button position + + + + + RadCarouses is a control that animates a group of items in Carousel-style + rotation. + + + You can add item to RadCarousel control using Items collection, or through binding + to data by assigning its DataSource properties. In order to manage the display of + great number of items you may need to set the + property to true. In this case you should specify the maximum + visible number of item, using the property. + Item path can be specified through property. Each + carousel path instance contains properties to adjust various aspects of the path + curve, including "start" and "end" position, selected items position. If you use a + RadCarousel bound to a data, you would need to handle the + ItemDataBound event to change each carouselItem's + properties according to items in the data source. You may also need to handle the + CreateNewCarouselItem event, to change the default type of items + RadCarousel will produce when data binding. + + + + + Enable or disable the re-animation of RadCarousel on form maximize, minimize or resize + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the default size of the control. + + + + + Gets a reference to the Carousel element, which encapsulates the most of the + functionality of RadCarousel + + + + + Gets ot sets the number of animation frames between two positions + + + + + Gets or sets the delay in ms. between two frames of animation + + + + + Gets or sets a value indicating that the Carousel will loop items automatically + + + + + Gets or sets a value indicating whether carousel will increment or decrement item indexes when in auto-loop mode. + + + + + Gets or sets a value indicating when carousel will pause looping if in auto-loop mode. + + + + + Gets or sets a value indicating the interval (in seconds) after which the carousel will resume looping when in auto-loop mode. + + + + + + + + + + + + + Gets or sets the item in the carousel that is currently selected. + + + + + + + Gets or sets the field from the data source to use as the actual value for the + carousel items. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + + Gets or sets the number of items that carousel displays when is set to true. + + + + + Get or sets value indicating the maximum number of items that will be displayed in + the carousel, even when there are more Items in the + collection. Virtualizing the carousel would significantly improve its performance. + + + False indicates that all items be displayed. + It depends on SelectedIndex, which items are displayed in this case. + + + + + Gets or sets value indicating that when item position goes beyond the carousel + path, it will be displayed again in the beginning of the carousel path. + + + + + + + + Sets the way opacity is applied to carousel items + + + + + Gets or sets value indicating the minimum value of the opacity applied to items + + + + + + + + Gets or sets value indicating which of the predefined animations will be applied to carousel items + + + + + Gets or sets the default action when item is clicked as member. + + The item click default action. + + + + Gets or sets value indicating the height (in percentage - values from 0.0. to 1.0) of reflection that will be painted bellow each carousel item. + + The item reflection percentage. + + 0.0 indicates no reflection and 1.0 indicates 100% of the height of the original item + + + + + Present the Previous button + + + + + Pressent the Next button + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Represent the Navigation buttons Positions + + + + + + + + + + + + + + + + + + + + Gets or sets a value indicating whether the keyboard navigation is enabled. + + + + + Provides values for ItemClickDefaultAction property + + + + + Indicates that item click will not be handeled by default + + + + + Indicates that item will be set selected when clicked. + + + + + RadElement that animates a list of items using Carousel-style view, used by control + + + + + Fires the ItemLeaving event + + Event specific arguemtns + + + + Fires the ItemEntering event + + Event specific arguemtns + + + + Raises the CreateNewCarouselItem event. + + + + + Raises the ItemDataBound event. + + + + + Raises the SelectedItemChanged event. + + + + + Raises the SelectedValueChanged event. + + + + + Raises the SelectedIndexChanged event. + + + + + Finds the first item in the list box that matches the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + Initiates batch update of the items. + + + Ends batch update of the items. + + + Gets the value of the given item. + + + + Finds the first item in the list with Text that starts with the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Finds the first item in the list with Text containing the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Occurs when an Item is about to leave carousel view + + + + + Occurs when an Item is about to enter carousel view + + + + + Occurs before a new databound carousel item is created. You can use this event to + replace the default item. + + + + Occurs after an Item is databound. + + + Occurs when the selected items is changed. + + + Fires when the selected value is changed. + + + Fires when the selected index is changed. + + + Gets a collection of RadItem objects managed by RadCarousel. + + Items are populated automatically when RadCarousel is data-bound. When using , carousel displays only number of items at a time. + + + + Gets the element, which contains all visible carousel items + + + + Gets or sets a value indicating whether sorting of carousel items is + case-sensitive. + + + + + Gets or sets a value indicating whether the keyboard navigation is enabled. + + + + Gets or sets the item in the carousel that is currently selected. + + + Gets or sets the index the currently selected item. + + + Gets or sets a value defining the currently selected item. + + + + Gets or sets the field from the data source to use as the actual value for the + carousel items. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + Gets or sets the data source that the carousel will bind to. + + + + Gets or sets the default action when item is clicked as member. + + The item click default action. + + + + Gets or sets value indicating the height (in percentage - values from 0.0. to 1.0) of reflection that will be painted bellow each carousel item. + + The item reflection percentage. + + 0.0 indicates no reflection and 1.0 indicates 100% of the height of the original item + + + + + Set ot get the Carousel animation frames + + + + + Set ot get the Carousel animation frames delay + + + + + Gets or sets a value indicating the interval (in seconds) after which the carousel will resume looping when in auto-loop mode. + + + + + Present the Previous button + + + + + Pressent the Next button + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Represent the Navigation buttons Possitions + + + + + Type of animation to be applied on carousel items + + + + + Enable or disable the re-animation of RadCarousel on form maximize, minimeze or resize + + + + + Sets the way opacity is applied to carousel items + + + + + Gets the owner RadCarouselElement. + + The owner. + + + + Gets or sets CarouselPath object that defines the curve which carousel items will animate through + + + + + Gets or sets carousel items' animation easing. + + + + + + + + Gets or sets the set of animations to be applied on carousel items + + + + + Set ot get the Carousel animation frames + + + + + Set ot get the Carousel animation frames + + + + + Gets or sets a value indicating whether carousel will increnment or decrement item indexes when in auto-loop mode. + + + + + Gets or sets a value indicating that the Carousel will loop items automatically + + + + + Gets or sets a value indicating when carousel will pause looping if in auto-loop mode. + + + + + Gets or sets the font for this RadListDataItem instance. + + + + Represents the method that will handle the DataBindingComplete event of a RadListView and RadDropDownList + 2 + + + Provides data for the ListBindingCompleteEventHandler event. + 2 + + + Initializes a new instance of the ListBindingCompleteEventArgs class. + One of the values. + + + Gets a value specifying how the list changed. + One of the values. + 1 + + + + Gets or sets the font. Font type defines a particular format for text, including + font face, size, and style attributes. + + + + + Contains the visual list item which is to be formatted in the VisualItemFormatting event of RadListControl. + + + + + Gets the visual list item which is to be formatted. + + + + + Allows setting custom instances of the visual list items in RadListControl. + + + + + Gets or sets the custom visual list item that will be used as visual representation + of the data items. + + + + + Allows setting custom instances of the data items in RadListControl. + + + + + Gets or sets a data item that will be used to store logical information + to represent data records. + + + + + Provides a data item that was just bound during RadListControls data binding. + + + + + Gets the data item that was just associated with a data record. + The data record can be accessed through the DataBoundItem property. + + + + + Provides the new sort style after the same property of RadListControl changes. + + + + + Gets the new sort style value. + + + + + This interface is used to provide alternative ways to compare strings. + Users can assign their custom comparer to the FindStringComparer property of the respective control. + + + + + This class is used to create the initial instance of the IFindStringComparer. + It uses the string StartsWith method. + + + + + This class is used to precisely compare strings. It searches for an item whose text is exactly equal to the provided string. + + + + + This class is used to determine whether a string contains another string. + + + + + This enum is used in RadListControl.FindString() to determine whether an item is searched via the text property + set by the user or the text provided by the data binding logic. + + + + + Clears this instance. + + + + + Gets a value for the Value property in unbound mode. + + Returns an object reference pointing to the value of the Value property in unbound mode. + + + + This method is called when setting the Value property of a RadListDataItem when it is in unbound mode. + + The value to set the Value property to. + + + + Key object that is used by the FindByKey method of RadListView. + By default this property holds a reference to the . + + + + + Gets or sets the key for the left image associated with this list view item. + + Image Property + ImageIndex Property + + + + Gets or sets the left image list index value of the image displayed. + + Image Property + ImageKey Property + + + + Gets or sets a value that indicates if this item is current. + + + + + Gets a value indicating whether this instance has style. + + true if this instance has style; otherwise, false. + + + + Gets or sets a value for the property indicated by ValueMember if in bound mode, and private value in unbound mode. + Trying to explicitly set this property in bound mode will result in an InvalidOperationException. + + + + + Gets or sets the text. + + The text. + + + + Gets a value that indicates if this item is selected. + + + + + Gets a value that indicates if this item is currently visible. + + + + + Gets a value that indicating the current check state of the item. + + + + + This collection is used for adding items at design time. It should not be used in runtime. + + + + + Gets or sets the backcolor of the list node. Color type represents an ARGB color. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, gel, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the border color of the list item. + + + + + Gets or sets gradient angle for linear gradient. + + GradientStyle Property + GradientPercentage Property + GradientPercentage2 Property + NumberOfColors Property + The default value is 90.0. + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + GradientStyle Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + GradientStyle Property + GradientPercentage Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + The default value is + GradientStyles.Linear. + + GradientStyles Enumeration + GradientPercentage Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + + + + Gets or sets the number of used colors in the gradient effect. + + BackColor Property + BackColor2 Property + BackColor3 Property + BackColor4 Property + GradientStyle Property + The default value is 4. + + + + Gets or sets the relation between the image and the text. + + + + + Gets or sets the font. + + The font. + + + + Gets or sets the color of the fore. + + The color of the fore. + + + + Gets or sets the color of the border. + + The color of the border. + + + + Gets or sets the back color4. + + The back color4. + + + + Gets or sets the back color3. + + The back color3. + + + + Gets or sets the back color2. + + The back color2. + + + + Gets or sets the color of the back. + + The color of the back. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the gradient percentage2. + + The gradient percentage2. + + + + Gets or sets the gradient percentage. + + The gradient percentage. + + + + Gets or sets the gradient angle. + + The gradient angle. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Gets or sets the text alignment. + + The text alignment. + + + + Gets or sets the image alignment. + + The image alignment. + + + + Sets the owner for this column. This method is used internally, never call it directly. + + The owner element. + + + + Adjusts the column width to fit the contents of all cells in the column, including the header cell. + + + + + Gets the that owns this column. + + + + + Gets the maximum width that the column can be resized to. + + + + + Gets the minimum width that the column can be resized to. + + + + + Gets the current width of the column. + + + + + Gets the name of the field of the bound item corresponding to this column. + + + + + Gets the name of the column. Must be unique for each column in the same . + + + + + Gets or sets the text that will be displayed in the header cells. + + + + + Gets a value indicating whether the column is in bound mode. + + + + + Gets or sets a value indicating whether this column is current. + + + + + Gets or sets a value indicating whether this column will be visible in DetailsView. + + + + + Gets or sets the mode by which the column automatically adjusts its width after BestFit is executed. + + + + + Gets or sets a value indicating whether the group's items should be displayed. + + + + + Gets the items in this group. + + + + + Gets the data group that is assigned to this group. + + + + + Clears this instance. + + + + + Used by the best fit columns mechanism so the cell measure would ignore the column width. + + + + + Represents the method that will handle events in . + + + + + + + Provides data for all events used in + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + + + + Defines the check on click mode. Check on click states are used in RadListView and RadCheckedListBox. + + + + + Item CheckState is not toggled on click. + + + + + Item is selected and CheckState is toggled on first click. + + + + + Item is selected on first click. On second click the CheckState is toggled. + + + + + Determines whether this instance can execute a best fit columns operation. + + + true if this instance can execute a best fit columns operation; otherwise, false. + + + + + Widens / shrinks a column based on the space required by the text in the columns. + + The column. + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + The mode. + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a column will be dropped after a drag operation. + + + + + Represents the view type of . + + + + + Represents a simple list view type. + + + + + Represents an icon view type. + + + + + Represents a detailed view type. + + + + + Represents a check box element. The RadCheckBox + class is a simple wrapper for the RadCheckBoxElement class. The + RadCheckBox acts to transfer events to and from its + corresponding RadCheckBoxElement instance. The radCheckBoxElement which is + essentially the RadCheckBox control may be nested in + other telerik controls. + + + + Gets or sets a value indicating the alignment of the check box. + + + + Gets an instance of the class + that represents the check box part of the . + + + + + Gets the item that is being dropped. + + + + + Gets the item that the DraggedItem is being dropped on. + + + + + Gets the item that is being dropped. + + + + + Gets the item that the DraggedItem is being dropped on. + + + + + Provides data for the RadPageViewItemsChanged event. + + + + + Gets the changed item. + + + + + Gets the change operation. + + + + + Initializes a new instance of the RadPageViewItemsChangedEventArgs class. + + The changed item. + The change operation. + + + + Provides data for the RadPageViewItemSelected event. + + + + + Gets the previous selected item of RadPageView. + + + + + Gets the selected item of RadPageView. + + + + + Initializes a new instance of the RadPageViewItemSelectedEventArgs class. + + The previous selected item of RadPageView. + The selected item of RadPageView. + + + + Provides data for the RadPageViewItemSelecting event. + + + + + Gets the selected item of RadPageView. + + + + + Gets the item to be selected. + + + + + Initializes a new instance of the RadPageViewItemSelectingEventArgs class. + The selected item of RadPageView. + The item to be selected. + + + + + Gets or sets the rectangle (in screen coordinates) which will be used to align the menu. + + + + + Gets a list with all the items that will be displayed. + + + + + Gets or sets the horizontal alignment of the menu that will display the items. + + + + + Gets or sets the vertical alignment of the menu that will display the items. + + + + + Gets the view mode associated with the event. + + + + + Determines whether the event may continue or it should be canceled. + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + Gets or sets the width of the items area. + + + + + Represents a page in a RadPageView instance. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the image to be displayed by the associated RadPageViewItem instance. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the length of the current . The length + represents the fixed amount of space the page will take when the layout of the control is performed. + Note: This property is only functional when the control + is in ExplorerBar mode and its content size mode is set to FixedLength. + + + + + Gets or sets a boolean value determining whether the content of the current + is visible. This property is only functional in the + when the control is in ExplorerBar view mode. + + + + + Gets or sets the tooltip to be displayed when the item hovers page's associated item. + + + + + Gets or sets the text to be displayed in the associated item. + + + + + Gets the RadPageView instance that owns this page. + + + + + Gets the RadPageViewItem instance which is the UI representation of this page. + + + + + Gets or sets the size of the item of RadPageView.This size will be used in is PageViewItemSizeMode.Individual mode. + + + + + This enumerator defines the possible size modes for the content areas in a . + The size modes define how the content areas are calculated according to their content or the size of the + control. + + + + + The length of the content area is fixed and is defined by the PageLength value for each . + + + + + The length of the content area is automatically calculated to fit the length of the content. + + + + + The length of all visible content areas is equal. This usually implies that no scrollbars are shown. + + + + + This class contains layout information about a and + performs base layout operations over an item like measuring. + + + + + This class represents the element that implements the ExplorerBar view of the control. + This view allows for multiple visible pages, whereby items can be expanded/collapsed to show their content in an associated page. + + + + + Gets or sets a value from the enum + which determines the location of the items in relation to the content area. + + + + + Gets or sets a value from the enum + that determines how items in the stack view are selected and positioned. + + + + + Scroll in RadPageViewExplorerBar mode to control. + Control will be focused + + control to scroll + + + + Gets an instance of the that represents + the scrollbar of the . + + + + + Gets or sets a value from the enum + that defines how the content areas for each item are sized. + + + + + This class represents a single item in the 's explorer bar view mode. + + + + + Creates an instance of the . + + + + + Creates an instance of the . + + + + + Creates an instance of the . + + + + + Gets or sets a boolean value that determines whether the content of the + is expanded. + + + + + Gets or sets an instance of the that + represents the content holder of this . + + + + + Gets an instance of the class which is + the layout panel that holds instances of the + class representing items currently collapsed by using the overflow grip. + + + + + Gets the overflow menu button. + + + + + Gets the overflow drop-down menu. + + + + + Gets the overflow menu item used to show fewer items in the stack. + + + + + Gets the overflow menu item used to show more buttons in the stack. + + + + + Gets the overflow menu item used to add/remove items in the stack. + + + + + Represents a simple button within a RadPageViewElement. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Gets an array containing the items that are currently hidden by using the + overflow grip. + + + + + Gets an array containing the items that are currently unchecked by using the + overflow menu. + + + + + This method returns the count of the items which are currently + visible to the user. + + + + + + Makes an item invisible. The item will appear as unchecked in the + overflow menu. + + The item to make invisible. + + + + Makes an item visible. The item will appear as checked in the + overflow menu. + + The item to make visible. + + + + Drags the overflow grip down to hide the first possible visible item. + + True if the drag operation succeeds, otherwise false. + + + + Drags the overflow grip up to show the first possible hidden item. + + True if the drag operation succeeds, otherwise false. + + + + Shows a given amount of items from the hidden items + in the starting from the + bottom part of the stack. + + The count of the items to be shown. + + + + Hides a given amount of items from the visible items + in the starting from the + bottom part of the stack. + + The count of the items to be hidden. + + + + Gets the element that represents the container which holds + the buttons shown when items in the stack are hidden by using + the overflow grip. + + + + + Gets the element which represents the grip which can be dragged + to adjust the count of visible items in the stack. + + + + + Gets or sets the image that is shown on the + item in the overflow drop-down menu that is used to + show more buttons in the control. + + + + + Gets or sets the image that is shown on the + item in the overflow drop-down menu that is used to + show fewer buttons in the control. + + + + + Gets the collection containing the unchecked items. + + + + + Fires when the user clicks on a button associated with a instance. + This buttons is shown when the item is collapsed by using the overflow grip. + + + + + Fires when an item is shown in the . + + + + + Fires when an item is collapsed in the . + + + + + Fires when an item is checked in the overflow drop-down menu of the . + + + + + Fires when an item is unchecked in the overflow drop-down menu of the . + + + + + Gets or sets the associated overflow button with the current page view item. + This button is displayed below all items in the overflow items panel when the item + is collapsed by using the outlook grip. + When setting this property, the previously set item is disposed. + + + + + Defines possible alignment of buttons within RadPageViewItem instance. + + + + + Buttons overlay item's content. + + + + + Buttons are before item's content. + + + + + Buttons are after item's content. + + + + + Buttons are above item's content. + + + + + Buttons are below item's content. + + + + + Defines possible modes for dragging items within a RadPageView instance + + + + + Item dragging is disabled. + + + + + A preview is generated, indicating where the item will be inserted when dropped. This mode is cancelable. + + + + + The item is immediately reordered when moved to a different position. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently set as preview. + + + + + Represents a Label(static) element - such as Header and Footer - within a RadPageViewElement instance. + + + + + This enumerator defines the possible selection modes for items + in a . + + + + + The selected item is highlighted and its content is displayed in the content area. + + + + + The selected item is highlighted and its content is displayed before it according to the stack orientation. + + + + + The selected item is highlighted and its content is displayed after it according to the + stack orientation. + + + + + This enumerator defines the possible positioning + options for the items of a . + + + + + Positions the items to the left side of the content area. + + + + + Positions the items to the top of the content area. + + + + + Positions the items to the right of the content area. + + + + + Positions the items to the bottom of the content area. + + + + + Defines the visibility of the New item in a RadPageViewStripElement instance. + + + + + Represents a separator which is just a line separating one group of + controls from another. The RadSeparator is a simple wrapper of the + RadSeparatorElement class. + + + + + Gets or sets whether the edit control is auto-sized + + + + + + + + + + + + + + + + + + + + Gets the instance of RadSeparatorElement wrapped by this control. RadSeparatorElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSeparator. + + + + + RadSeparator consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Represents an enumration of the possible transitions which a uses to change its content. + + + + + Represent a live tile that can change dinamically its content by using animations. + + + + + Represents a tile that can be arranged in a control. + + + + + Gets the zero-based index of the column in which the tile should be arranged. + + + + + Gets the zero-based index of the row in which the tile should be arranged. + + + + + Gets or sets the number of cells that the tile should occupy in a column. + + + + + Gets or sets the number of cells that the tile should occupy in a row. + + + + + Gets or sets the padding according to the currently occupied cell. + + + + + Cancels the currently running animations. + + + + + Pauses the change of the content. + + + + + Continues the change of the content. + + + + + Moves to the next frame. + + + + + Changes the content of the tile by setting the CurrentItem property. Called on an interval specified by the ContentChangeInterval property. + + + + + Gets or sets the interval at which the content of changes. + + + + + Gets or sets a value indicating whether the animations are enabled. + + + + + Gets or sets the number of frames of the transition animation. + + + + + Gets or sets the interval between each frame of the transition animation. + + + + + Gets a collection of objects that represent the content items of the . + + + + + Gets or sets the type of the transition animation. + + + + + Gets or sets the currently displayed item. + + + + + Represent a panoramic view control that can display and arrange tiles in grouped or ungrouped manner. + + + + + Creates the main element of the control. + + The created element. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the way that RadPanorama should handle mouse wheel input. + + + + + Gets or sets a value that indicates whether the newly added tiles should be automatically arranged. + + + + + Enables or Disables the build in zoom functionality + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets a value indicating whether reordering of tiles via drag and drop is allowed. + + + + + Gets or sets a value indicating whether the groups or the items should be displayed. + + + + + Gets or sets a value indicating whether the background image should be scrolled along with the tiles. + + + + + Gets or sets the position on which the scrollbar should be aligned. + + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets the that represents the main element of the control. + + + + + Gets or sets the image that is displayed in the background. + + + + + Gets or sets the size of the image that is displayed in the background. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Gets a collection of objects that represent the tiles that are displayed. + + + + + Gets a collection of objects that represent the tiles that are displayed. + + + + + RadPanorama consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Enumerates the possible alignments of a horizontal scrollbar. + + + + + Provides options for the way that the MouseWheel should be handled. + + + + + Do not handle mouse wheel. + + + + + Zoom the view on mouse wheel. + + + + + Scroll the view on mouse wheel. + + + + + Scroll the view on mouse wheel, zoom the view on Control + mouse wheel. + + + + + Represents the main element of control. + + + + + Scrolls the view with a specified offset. + + The offset. + + + + Scrolls the view with a specified offset. + + The offset. + If the method is called too often, set this to [true] to improve performance. + + + + Updates the view according to the current value of the scrollbar. + + + + + Zooms the view out. + + + + + Zooms the view in towards the specified location. + + The location. + + + + Gets or sets the way that RadPanorama should handle mouse wheel input. + + + + + Gets or sets a value that indicates whether the newly added tiles should be automatically arranged. + + + + + Enables or Disables the build in zoom functionality + + + + + Indicates whether the view is zoomed out. + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets a value indicating whether reordering of tiles via drag and drop is allowed. + + + + + Gets or sets a value indicating whether the groups or the items should be displayed. + + + + + Gets or sets a value indicating whether the background image should be scrolled along with the tiles. + + + + + Gets or sets the position on which the scrollbar should be aligned. + + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets or sets the image that is displayed in the background. + + + + + Gets or sets the size of the image that is displayed in the background. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Gets the scrollbar of the view. + + + + + Gets the image primitive that represents tha image in the background. + + + + + Gets the layout that arranges the tiles in ungrouped mode. + + + + + Gets the layout that arranges the tile groups. + + + + + Gets or sets the that is responsible for the drag-drop reorder of tiles. + + + + + Gets the that is responsible for kinetic scrolling behavior with the mouse pointer. + + + + + Gets a collection of items that should be displayed in grouped mode. + + + + + Gets a collection of items that should be displayed in ungrouped mode. + + + + + Gets or sets the offset from the edges of the control at which automatic + scrolling starts. + + + + + Represent a container for grouped tiles that is displayed in control. + + + + + Updates the number of rows and columns before each layout update. + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets the height of the group title. + + + + + Gets the layout panel that arranges the tiles. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Represents the caret of + + + + + Initializes a new instance of the class. + + + + + Shows this caret. + + + + + Hides this caret. + + + + + Suspends the blinking of this caret. + + + + + Resumes the blinking of this caret + + + + + Gets or sets the caret position. + + + The position. + + + + + Gets or sets the height of the caret + + + The height. + + + + + Gets or sets the width of the caret + + + The width. + + + + + Represent the selection paiting primitive + + + + + Initializes a new instance of the class. + + The text box. + + + + Invalidates the specified selection start. + + The selection start. + The selection end. + if set to true [repaint]. + + + + Gets the rectangle of + + The current line. + + + + + Draws the primitive on the screen. + + + + + + + + Gets or sets a value indicating whether the primitive should be painted + be painted. + + + + + Gets or sets a value indicating whether the selection should be hidden if focused is lost + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets the associated text box element. + + + + + Represents a single word in + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Gets or sets the word's text + + + The text. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + Gets or sets the word according to the previous one + + + The offset. + + + + + Gets or sets the index of the word + + + The index. + + + + + Gets or sets a value indicating whether the word's background can be painted. + + + true if paint the background; otherwise, false. + + + + + Represents text measurer of . + + + + + Measures a text. + + The text. + The font. + + + + + Search the index position where the text should be wrapped for the available width. + + The text. + The font. + The available width. + + + + + Searches the text's index where the caret should be positioned + + The text. + The font. + The available width. + + + + + Represents an action when auto-complete performs + + + + + No action + + + + + Append action + + + + + Replace action + + + + + Represents the method that will handle the create text block in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Gets the text for which the block is created. + + + + + Gets or sets the text block. + + + The text block. + + + + + Represents the method that will handle when the selection is changed in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The selection start. + Length of the selection. + + + + Gets the selection start. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Represents the method that will handle when the selection is changing in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The old selection start. + Old length of the selection. + The new selection start. + New length of the selection. + + + + Gets the old selection start. + + + + + Gets the old length of the selection. + + + The old length of the selection. + + + + + Gets the new selection start. + + + + + Gets the new length of the selection. + + + The new length of the selection. + + + + + Represents the method that suggested text is changed in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text. + The suggested text. + The start position. + The end position. + The action. + + + + Gets the text. + + + + + Gets the suggested text. + + + + + Gets the auto-complete action. + + + + + Gets or sets the start position. + + + The start position. + + + + + Gets or sets the end position. + + + The end position. + + + + + Represents text changed action + + + + + Text editing + + + + + Text property change + + + + + Represents text changed event arguments + + + + + Initializes a new instance of the class. + + The text. + The caret position. + The action. + + + + Gets the text. + + + + + Gets the caret position. + + + + + Gets the text change action. + + + + + Represents text changing event arguments + + + + + Initializes a new instance of the class. + + The start position. + The length. + The old text. + The new text. + The action. + + + + Gets the text change action. + + + + + Gets the start position. + + + + + Gets the selection length. + + + + + Represent a method that handles menu opening in + + The sender. + The instance containing the event data. + + + + Event arguments of + + + + + Initializes a new instance of the class. + + The context menu. + + + + Gets the context menu. + + + + + Represents a logical line in + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start block. + The end block. + The size. + + + + Gets or sets the start block. + + + The start block. + + + + + Gets or sets the end block. + + + The end block. + + + + + Gets or sets the location. + + + The location. + + + + + Gets or sets the size. + + + The size. + + + + + Gets the control bounding rectangle. + + + + + Index comparer of + + + + + Initializes a new instance of the class. + + Index of the block. + + + + Compares the specified line. + + The line. + The null line. + + + + + Represents collection of + + + + + Adds the specified line. + + The line. + + + + Removes the range. + + The index. + The count. + + + + Removes all items from the . + + The is read-only. + + + + Binaries the search by Y coordinate. + + The y. + + + + + Binaries the search by offset. + + The offset. + + + + + Binaries the index of the search by block. + + The index. + + + + + Binaries the search. + + The comparer. + + + + + Offset comparer of + + + + + Initializes a new instance of the class. + + The offset. + + + + Compares the specified line. + + The line. + The null line. + + + + + Y-coordinate comparer of + + + + + Initializes a new instance of the class. + + The y coorditante. + + + + Compares the specified line X. + + The line X. + The line Y. + + + + + Offset comparer of + + + + + Initializes a new instance of the class. + + The offset. + + + + Compares the specified x. + + The x. + The null object. + + + + + Represents a localizable provider of + + + + + Gets the localized string by identifier + + The id. + + + + + Contains identifiers of the localizable strings in + + + + + Represent a text position in + + + + + Initializes a new instance of the class. + + The line. + The text block. + The char position. + + + + Compares to + + The position. + + + + + Equalses the specified position. + + The position. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Performs an implicit conversion from to . + + The start. + + The result of the conversion. + + + + + Implements the operator >. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator >=. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator <. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator <=. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator ==. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator !=. + + The start. + The end. + + The result of the operator. + + + + + Gets the length. + + The start. + The end. + + + + + Gets the first position. + + The layout panel. + + + + + Gets the last position. + + The layout panel. + + + + + Swaps two positions + + The start position. + The end position. + + + + Gets the line. + + + + + Gets the text block. + + + + + Gets the char position in + + + + + Represents a context menu of + + + + + Initializes a new instance of the class. + + The text box. + + + + Adds the menu item by localizable string identifier + + The string id. + + + + + Gets the associated text box. + + + + + Represents a scroller in + + + + + Initializes a new instance of the class. + + The scroll bar. + + + + Raises the event. + + The instance containing the event data. + + + + Suspends the notifications of event. + + + + + Resumes the notifications of event. + + + + + Updates the scroll range. + + Size of the client. + Size of the desired. + + + + Updates the scroll bar + + + + + Sets the scroll bar visibility. + + + + + Gets the max value of the scrollbar + + + + + Gets or sets the value of the scrollbar + + + The value. + + + + + Gets the associated scroll bar. + + + + + Gets or sets the state of the scrollbar. + + + The state of the scrollbar. + + + + + Gets the size of the client area. + + + The size of the client. + + + + + Gets the desired size of the document + + + The size of the desired. + + + + + Gets or sets the large change of the scrollbar. + + + The large change. + + + + + Gets or sets the small change of the scrollbar. + + + The small change. + + + + + Occurs when the scroller is updated. + + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Provides localization services for RadTimePicker. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + RadWizard localization strings. + + + + + Creates a RadTimePicker instance. + + + + + Fires the ValueChanging event + + + + + + + Fires the ValueChanged event + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the Text associated to the Button below TimeTables + + + + + Gets or sets the current culture associated to the RadTimePicker + + + + + Gets or sets the row height in time picker popup. + + + + + Gets or sets the columns count. + + + + + Gets or sets headers height. + + + + + Gets or sets button panel height. + + + + + Gets or sets the table width. + + + + + Set the Clock position Before Time Tables or Above Time Tables + + + + + Gets or sets a value which determines how to represent the times in time picker popup. + + + + + Gets or sets a value indicating the time interval. + + + + + Gets or sets a value indicating whether the contents of the TextBox control can be changed. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the time value assigned to the control. + + + + + Gets or sets the Minimal time value assigned to the control. + + + + + Gets or sets the Maximal time value assigned to the control. + + + + + This property is not relevant for this class. + + + + + Occurs when the editing value is changing. + + + + + Occurs when the editing value has been changed + + + + + Occurs when a cell changes its state. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Fires the ValueChanged event + + + + + + + Fires the ValueChanging event + + + + + + + Gets the culture to be used when displaying the time. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets a value indicating whether the contents of the time picker control can be changed. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + This property is used internally. + + + + + Creates the button element for the increment button. + + A to be placed in the . + + + + Creates the button element for the decrement button. + + A to be placed in the . + + + + Enables or disables the ReadOnly mode of RadTimeBox. The default value is false. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + This property is used internally. + + + + + Occurs when the editing value is changing. + + + + + Occurs when the editing value has been changed + + + + + Represents a command area of RadWizard in Wizard97 mode. + + + + + Represents a command area of RadWizard. + + + + + Base class for RadWizard elements. + + + + + Updates the current state of the element. + + The WizardPage the element currently refers to. + + + + Gets or sets a value indicating that the element currently refers to a WizardWelcomePage. + + + + + Gets or sets a value indicating that the element currently refers to a WizardCompletionPage. + + + + + Gets the owner RadWizardElement of the element. + + + + + Creates a WizardCommandArea instance. + + + + + Creates a WizardCommandArea element. + + Owner of the element. + + + + Gets the CommandArea elements. + + + + + Gets the CommandArea Next button element. + + + + + Gets the CommandArea Cancel button element. + + + + + Gets the CommandArea Finish button element. + + + + + Gets the CommandArea Help button element. + + + + + Creates a Wizard97CommandArea instance. + + + + + Creates a Wizard97CommandArea element. + + >Owner of the element. + + + + Gets the CommandArea Back button element. + + + + + Represents a command area button element of RadWizard. + + + + + Gets or sets a value indication wether the button is focused. + + + + + Represents a button element of RadWizard in Aero mode. + + + + + Represents a top element of RadWizard in Aero mode. + + + + + Creates a WizardAeroTopElement instance. + + + + + Creates a WizardAeroTopElement. + + Owner of the element. + + + + Gets the AeroTopElement Back button element. + + + + + Represents a page header of RadWizard. + + + + + Creates a WizardPageHeaderElement instance. + + + + + Updates the current state of the element. + + + + + + Gets the element containing the WizardPageHeader title text. + + + + + Gets or sets the text of TitleElement. + + + + + Gets or sets the TitleElement visibility. + + + + + Gets the element containing the WizardPageHeader header text. + + + + + Gets or sets the text of HeaderElement. + + + + + Gets or sets the HeaderElement visibility. + + + + + Gets the element containing the WizardPageHeader icon image. + + + + + Gets or sets the WizardPageHeader icon image. + + + + + Gets or set the alignment of the WizardPageHeader icon image. + + + + + Represents an element of RadWizard which paints its text on glass. + + + + + Represents the method that will handle the ModeChanged events of RadWizard. + + The event sender. + Instance of ModeChangedEventArgs. + + + + Provides data for the ModeChanged event. + + + + + Gets the previous mode of the wizard. + + + + + Gets the current mode of the wizard. + + + + + Initializes a new instance of the ModeChangedEventArgs class. + + The previous mode of the wizard. + The current mode of the wizard. + + + + Represents the method that will handle the ModeChanging events of RadWizard. + + The event sender. + Instance of ModeChangingEventArgs. + + + + Provides data for the ModeChanging event. + + + + + Gets the current mode of the wizard. + + + + + Gets the next mode of the wizard. + + + + + Initializes a new instance of the ModeChangingEventArgs class. + + The current mode of the wizard. + The next mode of the wizard. + + + + Represents the method that will handle cancelable events of RadWizard. + + The event sender. + Instance of WizardCancelEventArgs. + + + + Provides data for cancelable events of RadWizard. + + + + + Initializes a new instance of the WizardCancelEventArgs class. + + + + + Determines whether the event is canceled or may continue. + + + + + Represents the method that will handle the SelectedPageChanged events of RadWizard. + + The event sender. + Instance of SelectedPageChangedEventArgs. + + + + Provides data for the SelectedPageChanged event. + + + + + Gets the previous selected page of the wizard. + + + + + Gets the selected page of the wizard. + + + + + Initializes a new instance of the SelectedPageChangedEventArgs class. + + The previous selected page of the wizard. + The selected page of the wizard. + + + + Represents the method that will handle the SelectedPageChanging events of RadWizard. + + The event sender. + Instance of SelectedPageChangingEventArgs. + + + + Provides data for the SelectedPageChanging event. + + + + + Gets the selected page of the wizard. + + + + + Gets the wizard page to be selected. + + + + + Initializes a new instance of the SelectedPageChangingEventArgs class. + The selected page of the wizard. + The wizard page to be selected. + + + + + Provides localization services for RadWizard. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + RadWizard localization strings. + + + + + Represents a completion page of RadWizard. + + + + + Represents a page of RadWizard. + + + + + Creates a WizardPage instance. + + + + + Returns a string representation of the page. + + The string representation of the page. + + + + Gets the owner RadWizardElement of the page. + + + + + Gets or sets the panel presenting the content area of the page. + + + + + Gets or sets the page title text. + + + + + Gets or sets the page header text. + + + + + Gets or sets a value indicating whether the page customizes its header. + + + + + Gets or sets the page's TitleElement visibility. Applies if CustomizePageHeader has value 'true'. + + + + + Gets or sets the page's HeaderElement visibility. Applies if CustomizePageHeader has value 'true'. + + + + + Gets or sets the page's IconElement image. Applies if CustomizePageHeader has value 'true'. + + + + + Gets a value indicating whether the page is selected. + + + + + Creates a WizardCompletionPage instance. + + + + + Gets or sets the Completion page image. + + + + + Represents a collection of WizardPage objects. + + + + + Creates a WizardPageCollection instance. + + Owner of the element. + + + + Inserts a WizardPage before the RadWizard CompletionPage in the collection. + + + + + + Gets the owner RadWizardElement of the collection. + + + + + Represents a welcome page of RadWizard. + + + + + Creates a WizardWelcomePage instance. + + + + + Gets or sets the Welcome page image. + + + + + RadWizard is a control which helps you to break a complex process into separate steps. + + + + + Creates a RadWizard instance. + + + + + Returns true if the focus should go the navigation buttons when the user presses Shift and Tab + + + + + Returns true if the focus should go the navigation buttons when the user presses Left arrow + + + + + Returns true if the focus should go the navigation buttons when the user presses Right arrow + + + + + Returns true if the focus should go the navigation buttons when the user presses Tab + + + + + Selects next wizard page. + + + + + Selects previous wizard page. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of . + + + + Raises the event. + + An instance of . + + + + Raises the event. + + An instance of . + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Gets the RadWizardElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the mode of the control. + + + + + Gets or sets a value indication wether the Aero style should apply when the control is in Wizard Aero mode. + + + + + Gets the pages collection. + + + + + Gets or sets the welcome page. + + + + + Gets or sets the completion page. + + + + + Gets or sets the selected page. + + + + + Gets the command area element. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header element. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets the element containing the image of the completion pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + RadWizard consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadWizard consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Fires before the mode of RadWizard is changed. + + + + + Fires after the mode of RadWizard is changed. + + + + + Fires when the next command button is clicked. + + + + + Fires when the back command button is clicked. + + + + + Fires when the finish command button is clicked. + + + + + Fires when the cancel command button is clicked. + + + + + Fires when the help command button is clicked. + + + + + Fires before the selected page of RadWizard is changed. + + + + + Fires after the selected page of RadWizard is changed. + + + + + Encapsulates the UI representation and functionality of RadWizard. + + + + + Creates a RadWizardElement instance. + + + + + Refreshes the element's view. + + + + + Selects next wizard page. + + + + + Selects previous wizard page. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Gets or sets the mode of RadWizard. + + + + + Gets the view of RadWizard. + + + + + Gets the Owner RadWizard control. + + + + + Gets or sets a value indication wether the Aero style should apply when RadWizard is in Wizard Aero mode. + + + + + Gets the pages collection. + + + + + Gets or sets the welcome page. + + + + + Gets or sets the completion page. + + + + + Gets or sets the selected page. + + + + + Gets the command area element. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header element. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets the element containing the image of the completion pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Fires before the mode of RadWizard is changed. + + + + + Fires after the mode of RadWizard is changed. + + + + + Fires when the next command button is clicked. + + + + + Fires when the back command button is clicked. + + + + + Fires before the selected page of RadWizard is changed. + + + + + Fires after the selected page of RadWizard is changed. + + + + + Represents a view element of RadWizard in Wizard97 mode. + + + + + Base class for RadWizard view elements. + + + + + Creates a WizardView instance. + + + + + Gets the owner RadWizardElement of the view. + + + + + Gets the pages collection of the Owner RadWizardElement. + + + + + Gets the welcome page of the Owner RadWizardElement. + + + + + Gets the completion page of the Owner RadWizardElement. + + + + + Gets the selected page of the Owner RadWizardElement. + + + + + Gets the command area of the view. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header of the view. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Creates a Wizard97View instance. + + + + + Creates a Wizard97View instance. + + Owner of the element. + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Represents a view element of RadWizard in Wizard Aero mode. + + + + + Creates a WizardAeroView instance. + + + + + Creates a WizardAeroView instance. + + Owner of the element. + + + + Gets the top element of RadWizard in Wizard Aero mode. + + + + + Gets the top element's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Mode of RadWizard. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the default size of the control. + + + The default of the control. + + + + + Gets the range selector element. + + + The range selector element. + + + + + Gets or Sets the orientation of the RangeSelector + + + + + Gets or sets the start of the selected range. + + + The start range. + + + + + Gets or sets the end of the selected range. + + + The end range. + + + + + Gets or sets the range selector view zoom start. + + + The range selector view zoom start. + + + + + Gets or sets the range selector view zoom end. + + + The range selector view zoom end. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Gets or sets how the associated chart will be updated. + + + Immediate, the chart will be updated while moving the thumb or the tracking element. Deferred, the chart will be updated upon releasing the thumb or the tracking element. + + + + + Gets or sets the associated control. + + + The associated control. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + RadRangeSelector consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadRangeSelector consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Occurs when the value of left thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the value of right thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the whole selection of the controls is about to change. + + + + + Occurs when the whole selection of the controls is changed. + + + + + Occurs when scale of the controls is Initializing. + + + + + Gets the body element. + + + The body element. + + + + + Gets the scroll selector element. + + + The scroll selector element. + + + + + Gets the top left scales. + + + The top left scales. + + + + + Gets the bottom right scales. + + + The bottom right scales. + + + + + Gets or sets a value indicating whether [show scroll]. + + + true if [show scroll]; otherwise, false. + + + + + Gets or sets the scroll view position. + + + The scroll view position. + + + + + Gets or sets the orientation. + + + The orientation. + + + + + Gets or sets how the associated chart will be updated. + + + Immediate, the chart will be updated while moving the thumb or the tracking element. Deferred, the chart will be updated upon releasing the thumb or the tracking element. + + + + + Gets or sets the associated element. + + + The associated element. + + + + + Gets or sets the start range. + + + The start range. + + + + + Gets or sets the end range. + + + The end range. + + + + + Gets or sets the range selector view zoom start. + + + The range selector view zoom start. + + + + + Gets or sets the range selector view zoom end. + + + The range selector view zoom end. + + + + + Gets or sets the selection rectangle start. + + + The selection rectangle start. + + + + + Gets or sets the selection rectangle end. + + + The selection rectangle end. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Gets or sets the minimum selection length. + + + The minimum selection length. + + + + + Gets or sets the zoom factor. + + + The zoom factor. + + + + + Gets the total zoom factor. + + + The total zoom factor. + + + + + Gets or sets a value indicating whether [enable fast scrolling]. + + + true if [enable fast scrolling]; otherwise, false. + + + + + Occurs when the value of left thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the value of right thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the whole selection of the controls is about to change. + + + + + Occurs when the whole selection of the controls is changed. + + + + + Occurs when scale of the controls is Initializing + + + + Represents a repeat button element, and like all elements can be nested + in other telerik controls. RadRepeatButton is essentially a simple wrapper for + RadRepeatButtonElement. All UI and logic functionality is implemented in the + RadRepeatButtonElement class. RadRepeatButton acts to transfer events to and from + the RadRepeatButton class. + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Represents a button on the . + + + + + Represents a base class + + + + + Represents the area where backstage pages are arranged. + + + + + Represents the area where backstage items are arranged. + + + + + Gets the that owns this element. + + + + + Gets a collection representing the items contained in this BackstageView. + + + + + Gets the back button element. + + + The back button element. + + + + + Represents a page on the on which you can add any type of controls. + + + + + Gets the that this page is attached to. + + + + + Represents a tab on the which has a page associated with it. + + + + + Indicates whether this tab is selected. + + + + + Gets or sets the page that is associated with this tab item. + + + + + Occurs when the selected state of this item has changed. + + + + + Occurs when the page associated with this item has changed. + + + + + + Represents a BackstageView control - the Office 2010 replacement of ApplicationMenu. + + + It can contain tabs, pages, buttons and all other RadItems as well. + + + + + + Shows the backstage view mimicking popup. + + The location on which the backstage will be shown. + The RadRibbonBarElement that the backstage view is attached to. + + + + Shows the backstage view mimicking popup. + + + + + + Hides the backstage view. + + + + + Raises the BackstageViewClosed event. + + + + + Raises the BackstageViewClosing event. + + + + + Raises the BackstageViewOpened event. + + + + + Raises the BackstageViewOpening event. + + + + + Fires when the backstage view is closed. + + + + + Fires when the backstage view is about to close. + + + + + Fires when the backstage view is opened. + + + + + Fires when the backstage view is about to open. + + + + + Fires when an item from the items panel is clicked. + + + + + Fires when the selected tab is about to change. + + + + + Fires when the selected tab is changed. + + + + + Gets or sets a value that indicates whether the position of the BackstageView should be + automatically adjusted to the bottom of the application button of the owner . + + + + + Gets or sets the selected tab. + + + + + Indicates whether the backstage view is opened. + + + + + Gets the backstage element. + + + + + Gets the RadRibbonBar element that the backstage view is attached to. + + + + + Represents the main visual element of the . + + + + + Raises the event. + + The backstage item. + + + + Raises the event. + + The backstage tab item. + + + + + Raises the event. + + The new item. + The old item. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the on which the backstage items are arranged. + + + + + Gets the on which the backstage pages are arranged. + + + + + Gets the caption element. + + + The caption element. + + + + + Gets or sets the selected tab. + + + + + Gets a collection representing the items contained in this backstage view. + + + + + Gets or sets a value indicating whether this backstage view should be opened is full screen. + + + true if full screen; otherwise, false. + + + + + Fires when an item from the items panel is clicked. + + + + + Fires when the selected tab is about to change. + + + + + Fires when the selected tab is changed. + + + + + Represents event data for the following events: OnTabSelecting + + + + + Creats a new instance of the class. + + The tab which is currently selected + The tab that is being selected. + + + + Gets the tab which is currently selected. + + + + + Gets the tab that is being selected. + + + + + Creates an instance of the + class. + + + + + Gets or sets an instance of the + struct containing the coordinates which will be used + to position the key tip. + + + + + Gets or sets an instance of the + class containing the font which will be used + to paint the text of the key tip. + + + + + Gets or sets an instance of the + struct containing the color which will be used + to paint the background of the key tip. + + + + + Gets or sets an instance of the + struct containing the color which will be used + to paint the borders of the key tip. + + + + + Gets or sets an instance of the + struct containing the color which will be used + to paint the text forecolor of the key tip. + + + + + Represents a toolstrip overflow button element. + + + + + Creates child elements. + + + + + Shows small arrows. + + + + + + Gets the drop down button arrow position. + + + + + Gets the overflow primitive. + + + + + Represents the method that will handle the PageViewInstanceCreated events of RadDock. + + The event sender. + Instance of PageViewInstanceCreatedEventArgs. + + + + Provides data for the PageViewInstanceCreated event. + + + + + Gets the created RadPageViewElement. + + + + + Initializes a new instance of the PageViewInstanceCreatedEventArgs class. + + The created RadPageViewElement. + + + + Gets the index at which the page was before the change. + + + + + Gets the index at which the page is currently at. + + + + + Determines whether the event is canceled or may continue. + + + + + Gets the index the page is currently at. + + + + + Gets or sets the new index to be applied to the associated page. + + + + + Represents a control that has a collection of pages and displays one page at a time. + + + + + Temporary suspends event raising. + + + + + Resumes event raising, previously suspended by a SuspendEvents call. + + + + + Occurs when an item is about to be dropped over another item. + + + + + Occurs when an item was dropped over another item. + + + + + Raised when page item is about to be created. + + + + + Raised when the current mode of the view is about to change. Cancelable. + + + + + Raised when the current mode of the view is about to change. Cancelable. + + + + + Raised when the current mode of the view has changed. + + + + + Raised when the built-in ItemsList menu is about to be displayed. Cancelable. + + + + + Raised when the built-in ItemsList menu is displayed. + + + + + Raised when a new page is about to be added to the view. Cancelable. + + + + + Raised when a new page has been successfully added to the view. + + + + + Raised when a page is about to be removed from the view. Cancelable. + + + + + Raised when a page has been successfully removed from the view. + + + + + Raised when a page is about to change its index. Cancelable. + + + + + Raised when a page's index has been successfully changed. + + + + + Raised when all pages are about to be removed from the view. Cancelable. + + + + + Raised when all pages have been successfully removed from the view. + + + + + Raised when the content of a is expanding. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is expanded. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is collapsing. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is collapsed. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when currently selected page has changed. + + + + + Raised when currently selected page has changed. + + + + + Determines whether event raising is currently enabled. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the BackColor of all pages. + + + + + Gets or sets the current mode of the view. + + + + + Gets or sets the RadPageViewPage instance that is currently selected within the view. + + + + + Gets the collection of pages for this view. + + + + + Gets the current RadPageViewElement instance that represents the UI of the view. + + + + + Gets or sets the default RadPageViewPage that will be loaded after EndInit of the control. + If the DefaultPage is null the currently selected page will be loaded. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Gets or sets the size of the items when ItemSizeMode of RadPageView is PageViewItemSizeMode.EqualSize. + + + + + RadPageView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadPageView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets or sets whether the pages will be wrapped around when performing selection using the arrow keys. + If the property is set to true, pressing the right arrow key when the last page is selected will result in selecting the first page. + + true if [wrapped around]; otherwise, false. + + + + Determines whether ampersand character will be treated as mnemonic or not. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + + This property is not relevant for this class. + + + + + Gets the instance that this object is associated with. + + + + + Gets the RadPageViewPage instance that matches the specified name. + + + + + + + Gets the RadPageViewElement instance that owns this instance. + + + + + Gets the scroll offset applied to the strip. + + + + + Gets or sets the MultiLineItemFitMode.This mode determines how the multiLine layout will behave when control is resizing. + + + + + Defines the possible alignment of the strip in a RadPageViewStripElement. + + + + + Defines the alignment of items within a strip item layout. + + + + + Items are aligned starting from the near edge. This is Left for Left-to-right layout and Right for Right-to-left layout. + + + + + Items are centered within the layout. + + + + + Items are aligned starting from the far edge. This is Right for Left-to-right layout and Left for Right-to-left layout. + + + + + Defines possible modes to fit items within a RadPageViewStripElement instance. + + + + + Each item uses its desired size. + + + + + Items are shrinked if their size exceeds the available one. + + + + + Items are expanded if their size is less than the available one. + + + + + Items are either shrinked or expanded when needed. + + + + + Items are stretched in the available height of their parent container. + + + + + Items are arranged in multiLine layout. + + + + + Defines which internal buttons will be present for a RadPageViewStripElement instance. + + + + + No buttons are available. + + + + + Buttons are automatically displayed when needed. + + + + + Allows strip to be scrolled left when not enough space is available. + + + + + Allows strip to be scrolled right when not enough space is available. + + + + + Allows currently selected item to be closed. + + + + + Displays all available items in a drop-down manner. + + + + + Both left and right scroll buttons are present. + + + + + Both scroll buttons and Close button are present. + + + + + ItemList and Close buttons are present. + + + + + All buttons are present. + + + + + Defines how an item is sized within a RadPageViewElement instance. + + + + + Each item's desired size is applied. + + + + + All items are with equal width. + + + + + All items are with equal height. + + + + + All items are with equal size. + + + + + Defines the content orientation of in RadPageViewItem. + + + + + Orientation is automatically selected depending on the item alignment within the owning RadPageViewElement. + + + + + Item's content is horizontally oriented. + + + + + Item's content is rotated by 180 degrees. + + + + + Item's content is rotated by 90 degrees. + + + + + Item's content is rotated 270 degrees. + + + + + Defines methods and properties for a collapsible element. For example, + RadRibonBarChunk is a collapsible element. + + + + + Create a Adapter if possible for Item + + + The wrapper for Item + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets a boolean value determining whether the layout panel + will collapse its content according to its size. + + + + + This class represents the drop down button which is shown when + a is collapsed. This drop down button + holds the content of the collapsed group in its popup. + + + + + This class represents the popup of a . + The contents of the group are placed in this popup when the group is collapsed. + + + + + This class represents a separator line which can be put between + items in a or . + This separator is built of two instances which are layout + together to allow two-coloured separator appearance. + + + + + Gets or sets the orientation of the separator. A separator + can be positioned vertical or horizontal. + + + + + Gets an instance of the class + which represents the primitive that is used to paint the separator. + + + + + This class represents the popup which is displayed when a collapsed tab + is selected in the RadRibbonBar control. + + + + + Creates an instance of the RibbonBarPopup class. + + + + + + Close the popup upon mouse click unless + the user has clicked on a RadElement + that opens another popup. + + + + + + Gets a boolean value indicating + whether the ribbon popup is shown. + + + + + Gets the owner RadRibbonBarElement. + + + + + Represents a ribbon tab. Ribbon tabs are used to manage between different + groups of related operations, for example, in a text editor application between + write and insert functionality. + + + + + Initializes a new instance of the RadRibbonBarCommandTab class. + + + + + This method paints the left RibbonTab shadow that appears on the right of the tab. + The method paints two 1 pixel wide vertical linear gradient lines that + create a shadow effect. The colors of the shadow can be styled by + the Visual Style Builder. + + + + + This method paints the right RibbonTab shadow that appears on the right of the tab. + The method paints two 1 pixel wide vertical linear gradient lines that + create a shadow effect. The colors of the shadow can be styled by + the Visual Style Builder. + + + + + Gets or sets the first right inner color of the RibbonTab's shadow. + + + + + Gets or sets the second right inner color of the RibbonTab's shadow. + + + + + Gets or sets the first right outer color of the RibbonTab's shadow. + + + + + Gets or sets the second right outer color of the RibbonTab's shadow. + + + + + Gets or sets the first left inner color of the RibbonTab's shadow. + + + + + Gets or sets the second left inner color of the RibbonTab's shadow. + + + + + Gets or sets the first left outer color of the RibbonTab's shadow. + + + + + Gets or sets the second left outer color of the RibbonTab's shadow. + + + + + The RibbonTab tab item + + + + + Gets an instance of the class + that represents the content layout of the tab. In this layout all + chunks visible to the end user are put. + + + + + Gets or sets the ContextualTabGroup of this CommandTab. + + + + + Gets the nested items. + + + + + Exposes the + scroll button direction. + + + + + Indicates left scroll button direction. + + + + + Indicates up scroll button direction. + + + + + Indicates right scroll button direction. + + + + + Indicates down scroll button direction. + + + + Defines the scrolling types of the RadScrollBar control. + + + + Indicates horizontal scroll type. + + + + + Indicates vertical scroll type. + + + + + Defines the possible alignment of the TabStripElement in a TabStripPanel. + + + + + The panel itself decides where the element is positioned. + + + + + The element is positioned vertically on the left edge. + + + + + The element is positioned horizontally on the top edge. + + + + + The element is positioned vertically on the right edge. + + + + + The element is positioned horizontally on the bottom edge. + + + + + Defines the possible orientation of text within a TabStripPanel. + + + + + Default orientation is used, depending on the alignment of the TabStrip. + + + + + Text is oriented horizontally. + + + + + Text is oriented vertically. + + + + Creates the main panel element and adds it in the root element. + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this speciffic control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets the object that encapsulates sizing information for this panel. + + + + + Gets the instance of RadPanelElement wrapped by this control. RadPanelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadPanel. + + + + + Applies the desired splitter width across all splitters and delegates the event to all descendant RadSplitContainer instances. + This method is used internally. + + + + + + Applies theme to all SplitterElements. + + + + + Provides a routine which merges a container with its parent (if appropriate). + The purpose of this logic is to remove internally created containers when they are not needed. + This method is used internally. + + + + + this method is used internally. + + + + + Gets SplitterElement which rectangle conttains the specified Point. + + Point to test, in SplitContainer client coordinates + SplitterElement if found, null otherwise + + + + Determines whether the container can be selected at design-time. This method is used internally. + + + + + + Updates the splitter, associated with the specified index of a child SplitPanel. + + The layout info, containing information about the operation. + The index of the panel for which the splitter should be updated. + The bounding rectangle of the splitter. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets a value indicating the splitter distance. Never set the value of this property directly. + + + + + Gets a value indicating whether the bounds of the split panels should be updated immediately on drag. + + + + + Gets the split container element. + + + + + Determines whether the container is a target of automatic defragment operation. + This property is internally used by the framework and is not intended to be directly used in code. + + + + + Gets or sets a value indicating the horizontal or vertical orientation of + the Telerik.WinControls.UI.RadSplitContainer panels. + + + + + Gets or sets the width of a single splitter on the container. + Specify zero to prevent displaying any splitters at all. + + + + + Gets or sets the layout strategy that arranges all the visible SplitPanel children. + + + + + Enable and Disable navigation buttons. + + + + + Determines whether the panels can be collapsed when clicking twice on splitter or click once on navigation button. + + + + + This property is not relevant for this class. + + + + + This property is not relevant for this class. + + + + + Occurs when any of the splitters is moving. + + + + + Occurs when any of the splitters is moved. + + + + + Occurs when some panel is collapsing. + + + + + Occurs when some panel collapsed. + + + + + Gets or sets the width of each splitter within the container. + + + + + Encapsulates the layout information for a layout pass of a RadSplitContainer. + + + + + Gets a list with all the panels that are target of a layout operation. + + + + + Gets a list with all the panels that are target of an auto-size logic. + + + + + Gets or sets the auto-size factor which depends on the auto-sizable targets per container. + + + + + Gets or sets the length (width or height, depending on the orientation) that is avilable for layout. + + + + + Gets or sets the length vailable for all panels with AutoSize mode. + + + + + Gets or sets the length of all panels which are with Absolute size mode. + + + + + Gets or sets the total length, reserved for splitters. + + + + + Gets or sets the total length, reserved for splitters. + + + + + Gets or sets the content rectangle that represents the layoutable area of the container. + + + + + Gets or sets the orientation of the associated container. + + + + + Defines the layout strategy for a RadSplitContainer. + + + + + Entry point for the entire layout operation. + Called in the OnLayout override of RadSplitContainer. + + + + + + Applies a correction in both of the specified panels, after a successful spliter drag operation. + + The panel left (top) on the splitter. + The panel right (bottom) on the splitter. + The dragged distance. + + + + Updates the layout info for a pending layout operation. + + + + + + Performs the core measure logic. + This is the pass which determines the desired size for each panel. + + + + + Performs the core layout logic. Updates each panel's bounds, keeping in mind restrictions like Minimum and Maximum size. + + + + + + Gets an integer value for the specified size (depending on the orientation of the current laid-out container). + + + + + + + Gets a single-precision value from the provides SizeF struct. + + + + + + + Gets the available length left for the panel at the specified index. + + + + + + + + + Gets the minimum size for the specified split panel. + If it is a container, the sum of minimum sizes of all child panels is calculated. + + + + + + + Special measure logic, used when there is at least one fill panel in the layout info. + + + + + Default measure logic. + + + + + Apply constraints on measured length for each layout target, + having in mind MinSize, MaxSize, available size and other conditions. + + + + + Final pass that determines whether we have less + or more measured length than the currently available one and performs the needed corrections. + + + + + Updates the provides panel after a splitter drag operation. + + + + + + + + Propagates a splitter change down to all children of the specified container. + + + + + + Gets the viewport origin for the current layout operation. + + + + + + Gets a list with all the descendant panels which SizeMode is SplitPanelSizeMode.Fill + + + + + + Gets the layout info associated with this layout strategy. + + + + + Gets or sets the Type that is treated as Root for the layout strategy. + Allows for defining how deep the search for a Fill panel should be. + + + + The main element of the RadPanel control. + + + Create the elements in the hierarchy. + + + + Gets the SplitPanel instance associated with the event. + + + + + Gets the Control instance, which Controls collection has changed. + + + + + Gets the child Control instance, inserted or removed in the Parent's collection. + + + + + Gets the action of the notification. + + + + + Defines the possible actions for a ControlTreeChanged event. + + + + + A control has been added. + + + + + A control has been removed. + + + + + Encapsulates all size-related properties for a SplitPanel instance residing on a RadSplitContainer. + + + + + Gets or sets the minimum size for the associated SplitPanel. + + + + + Gets or sets the maximum size for the associated SplitPanel. + + + + + Gets or sets the amount (in pixels) applied to the size of the panel by a splitter. + + + + + Gets or sets the scale factor for relatively-sized panels. + + + + + Gets or sets the scale factor to be used by auto-sized panels. + Usually this is internally updated by a splitter resize. + + + + + Gets or sets the size mode for the owning panel. + + + + + Gets or sets the size used when size mode is Absolute. + + + + + Gets or sets the desired (measured) size for the owning panel. + This field is internally updated by a SplitContainerLayoutStrategy upon a layout operation. + + + + + Gets the current DPI scaling. + + + + + Defines the posiible size modes for a split panel residing on a RadSplitContainer. + + + + + The panel is auto-sized. Its size depends on the size of its container + as well as the number of all auto-sizable panels within the container. + + + + + The panel has fixed size, regardless of the size of its container. + + + + + The panel occupies a relative amount of its container's available size. + + + + + A special mode, used to specify that a certain panel should fill all the available auto-sizable area. + + + + + Notifies for a change in the Image member of this panel. + + + + + + Determines whether the ToolTip property should be serialized. + + + + + + Gets or sets the Image associated with the panel. + + + + + Gets or sets the tooltip to be displayed when the mouse hovers the tabitem of this panel. + + + + + Represents an image button. + + + + + Gets or sets the image that is displayed on a button element when it is hovered. + + + + + Gets or sets the image list index value of the image displayed on the button control when it is hovered. + + + + + Gets or sets the key accessor for the image for hovered state in the ImageList. + + + + + Gets or sets the image that is displayed on a button element when it is clicked. + + + + + Gets or sets the image list index value of the image displayed on the button control when it is clicked. + + + + + Gets or sets the key accessor for the image for clicked state in the ImageList. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently pinned (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently set as preview. + + + + + Gets the TabStripButtonItem that represents the CloseButton in this TabItem. May return null if ShowCloseButton is false. + + + + + Gets the TabStripButtonItem that represents the CloseButton in this TabItem. May return null if ShowCloseButton is false. + + + + + Determines whether the CloseButton of the item will be displayed or not. + + + + + Determines whether the CloseButton of the item will be displayed or not. + + + + + Gets or sets the offset of the close button from the item's ImageAndTextLayout panel. + + + + + Disables the selection in the strip panel. + + + + + Handles the click of a CloseButton on a child TabStripItem. + Closes the corresponding TabPanel by default. + + + + + + Temporary suspends notifications like TabSelecting and TabSelected from the parented RadTabStripElement. This method is used internally. + + + + + Callback to notify the panel that a control has been successfully removed, tab strip has been updated and any additional update is allowed. + + + + + + Resumes previously suspended notifications like TabSelecting and TabSelected from the parented RadTabStripElement. This method is used internally. + + + + + Determines whether the tabstrip element is visible. + + + + + + Forces layout update by explicitly re-setting the current bounds and performing a layout pass. + + + + + Suspends the focus change in the strip panel. + + + + + Gets the default alignment of the TabStripElement. + + + + + Gets the default text orientation. + + + + + Gets or sets the text orientation of the tab used to switch among child panels. + + + + + Determines whether each TabStripItem will display a CloseButton, which allows for explicit close of its corresponding panel. + + + + + Determines whether each TabStripItem will display a CloseButton, which allows for explicit close of its corresponding panel. + + + + + Gets the point where the mouse was pressed and a drag operation has been instanciated. + + + + + Determines whether the tab used to navigate among child panels is displayed. + + + + + Gets or sets the alignment of the tab used to switch among child panels. + + + + + Determines whether the child panels' Index update is currently locked. This property is used internally. + + + + Represents a Panel that is capalbe to host standard Windows Forms controls. + + + Initializes a new instance of the RadTabStripContentPanel class. + + + + Gets the item associated with the panel. + + + + Gets or sets the background color of the tabstrip layout. + + + + Defines the possible positions of the tab items + relatively to the base area. + + + + + The tab items will appear on the left of the base area. + + + + + The tab items will appear on the right of the base area. + + + + + The tab items will appear on the top of the base area. + + + + + The tab items will appear on the bottom of the base area. + + + + + Gets or sets SliderArea's first background color. + + + + + Gets or sets SliderArea's second background color. + + + + Gets or sets RadTrackBar's ticks color. + + + Gets or sets the gradient angle of the SliderArea. + + + Gets or sets whether the TrackBar should fit to available size. + + + Gets or sets whether the SlideArea should be visible. + + + Gets or sets Ticks Visibility. + + + + The number of positions the slider moves in response to mouse clicks. + + + + + The number of positions the slider moves in response to mouse clicks. + + + + + The number of positions between tick marks. + + + + + Gets or sets TrackBar's orientation. + + + + + Gets or sets the width of TrackBar's SlideArea. + + + + + Indicates the tick style of the progress bar. Possible values are members of + %TickStyles enumeration:Telerik.WinControls.Enumerations.TickStyles%: none, + topleft, BottomRight, and both. + + + + Gets or sets a minimum int value for the trackbar position. + + + Gets or sets a maximum int value for the trackbar position. + + + + Gets or sets the position of the Slider. + + + + Initializes a new instance of the TrackbarThumb class. + + + + CreateChildElements + + + + + GetPreferredSizeCore + + + + + + + + gets or sets Thumb's width + + + + + + gets or sets whether the trackbar's thumb should use its default shape + + + + + gets ParentTrackBarElement + + + + + Represents a track bar. The trackbar class is essentially a simple wrapper + for the RadTrackBarElement. All UI and + logic functionality is implemented in the + RadTrackBarElement class. The RadTrackBar acts + to transfer the events to and from its corresponding + RadTrackBarElement instance. The + RadTrackBarElement may be nested in other + telerik controls. + + + + + Creates the associated TrackBar element. + + RadTrackBarElement + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadTrackBarElement wrapped by this control. RadTrackBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTrackBar. + + + + + Gets or sets a minimum value for the trackbar position + + + + + Gets or sets a maximum value for the trackbar position + + + + + Gets or Sets TrackBar's value + + + + + Gets or Sets whether the TrackBar's ticks should be drawn + + + + + Gets or Sets the orientation of the TrackBar + + + + + Gets or Sets the number of positions that the trackbar moves in response to mouse clicks. + + + + + Gets or Sets the number of positions that the trackbar moves in response to keyboard arrow keys and the trackbar buttons. + + + + + Gets or Sets the orientation of the text associated with TrackBar. Whether it should appear horizontal or vertical. + + + + + Gets or Sets whether the TrackBar's labels should be drawn + + + + + Gets or Sets whether the TrackBar's handles should be drawn + + + + + Gets or Sets the number of positions between large tick marks + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the Range collection. + + + + + Gets or Sets the Snap mode of the TrackBar + + + + + Gets or Sets TrackBar's Size + + + + + Gets or Sets whether the SlideArea should be visible + + + + + Gets or Sets whether the selected thumb should move on arrow key press. + + + + + This property is not relevant for this class. + + + + + Occurs when the value of the controls changes + + + + + Occurs when a Label needs to be formatted. + + + + + Occurs when a Tick needs to be formatted. + + + + Represents a trackbar element. RadTrackBarElement can be nested in other + telerik controls. Essentially, the RadTrackBar is a simple wrapper for the + RadTrackBarElement. The former transfers events to and from its corresponding + RadTrackBarElement instance. + + + + Gets the instance of TrackBarBodyElement. TrackBarBodyElement + is the core element in the hierarchy tree and encapsulates the Scale and indicators functionality. + + + + + Gets instance of TrackBarArrowButton + + + + + Gets instance of TrackBarArrowButton + + + + + Gets or sets a minimum value for the trackbar position + + + + + Gets or sets a maximum value for the trackbar position + + + + + Gets or Sets TrackBar's value + + + + + Gets or Sets whether the TrackBar's ticks should be drawn + + + + + Gets or Sets TrackBar's Orientation + + + + + Gets or Sets whether the SlideArea should be visible + + + + + Gets or Sets the number of positions that the trackbar moves in response to mouse clicks. + + + + + Gets or Sets the number of positions that the trackbar moves in response to keyboard arrow keys and the trackbar buttons. + + + + + Gets or Sets Ticks Visibility + + + + + Gets or Sets TrackBar's sliders area color + + + + + Gets or Sets TrackBar's ticks color + + + + + Gets or Sets TrackBar's sliders area color + + + + + Gets or Sets the gradient angle of the SliderArea + + + + + Gets or Sets TrackBar's thumbWidth + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets the width of TrackBar's SlideArea + + + + + Gets or Sets whether the TrackBar's labels should be drawn + + + + + Gets or Sets whether the TrackBar's handles should be drawn + + + + + Gets or Sets the number of positions between large tick marks + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets TrackBar's Size + + + + + Gets or Sets the Snap mode of the TrackBar + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the Range collection. + + + + + Gets or Sets the selected thumb + + + + + Gets or Sets whether the selcted thumb should move on arrow key press. + + + + + Occurs when the value of the controls changes + + + + + Occurs when the trackBar slider moves + + + + + Occurs when a Label needs to be formatted. + + + + + Occurs when a Tick needs to be formatted. + + + + + Represents a core range object that contains the start and end. + + + + + Creates a new object that is a copy of the current instance. + + + + + + Gets or Sets the start of the range. + + + + + Gets or Sets the end of the range. + + + + + Gets whether the range contains selected thumb" + + + + + Gets the Owner Collection + + + + + Gets or Sets the Name. + + + + + Gets or Sets the ToolTipText + + + + + Gets or Sets the Tag. + + + + + Occurs when a property value changes. + + + + + Represents a collection of + + + + + Check thumb move. + + value + isStart + range + bool + + + + Perform Thumb Move in SingleThumb Mode. + + Value + bool + + + + Returns an enumerator that iterates through the collection. + + IEnumerator + + + + Determines the index of a specific item in the Collection + + item + int + + + + Inserts an item to the Collections at the specified + index. + + index + item + + + + Removes the TrackBarRange item at the specified index. + + index + + + + Add range to the System.Collections.Generic.ICollection + + item + + + + Removes all items except the first from the System.Collections.Generic.ICollection + + + + + Determines whether the System.Collections.Generic.ICollection contains a specific value. + + + bool + + + + Copies the elements of the System.Collections.Generic.ICollection to an System.Array, starting at a particular System.Array index. + + array + arrayIndex + + + + Removes the first occurrence of a specific object from the Collection. + + item + bool + + + + Adds an item to the System.Collections.Generic.ICollection. + + value + int + + + + Determines whether the System.Collections.Generic.ICollection contains a specific value. + + value + bool + + + + Determines the index of a specific item in the System.Collections.IList. + + value + int + + + + Inserts an item to the System.Collections.IList at the specified index. + + index + value + + + + Removes the first occurrence of a specific object from the System.Collections.IList. + + value + + + + Copies the elements of the System.Collections.ICollection to an System.Array, + starting at a particular System.Array index. + + array + index + + + + Suspends all property and collection notifications. + + + + + Resumes property and collection notifications. + + + + + Gets or Sets a maximum value for the trackbar position + + + + + Gets or Sets a minimum value for the trackbar position + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the RadTrackBarElement which owns this collection + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when a property value changes. + + + + + Gets or sets the Range at the specified index. + + index + TrackBarRange + + + + Gets or sets the Range at the specified name. + + text + TrackBarRange + + + + Gets the number of elements contained in the Collection + + + + + Gets a value indicating whether the Collection is read-only. + + + + + Gets a value indicating whether the System.Collections.IList has a fixed + size. + + + + + Gets or sets the element at the specified index. + + index + object + + + + Gets a value indicating whether access to the System.Collections.ICollection + is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the System.Collections.ICollection. + + + + + Gets the nodes. + + + + + + Sets the current. + + The node. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets or sets a value indicating weather the changes in the child collections + in Object Relational Binding mode will be reflected automatically. + + + + + Gets the tree view. + + The tree view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Initializes a new instance of the class. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + The checked member. + + + + Initializes a new instance of the class. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent member. + The child member. + The value member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent member. + The child member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent child member. + + + + Gets or sets the name of the relation. + + The name of the relation. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets the data member. + + The data member. + + + + Gets or sets the display member. + + The display member. + + + + Gets or sets the parent member. + + The parent member. + + + + + Gets or sets the child member. + + The child member. + + + + + Gets or sets the value member. + + The value member. + + + + Gets or sets the checked member. + + The checked member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent child member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent member. + The child member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent member. + The child member. + The value member. + + + + Adds the specified data source. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + + + + Adds the specified data source. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + The checked member. + + + + Clears this instance. + + + + + Refreshes this instance. + + + + + Adds the tree node with specified text. + + The text. + + + + + Adds the specified text. + + The text. + Index of the image. + + + + + Adds the specified text. + + The text. + The image key. + + + + + Adds the specified key. + + The key. + The text. + Index of the image. + + + + + Adds the specified key. + + The key. + The text. + The image key. + + + + + Removes the specified name. + + The name. + + + + Determines whether [contains] [the specified name]. + + The name. + + true if [contains] [the specified name]; otherwise, false. + + + + + Indexes the of. + + The name. + + + + + Gets the owner. + + The owner. + + + + Gets the tree view. + + The tree view. + + + + Gets the with the specified name. + + + + + + Defines the expanding animation style of nodes in a + RadTreeView Class. + + + + + Indicates animation style changing the opacity of the expanding nodes. + + + + + Indicates no animation. + + + + + Specifies the type of option list formed by child nodes. + + + + + All children have a check box. + + + + + All children have a radio button. + + + + + Every child can specify whether it has a check box or a radio button. + + + + + Defines the style of the lines between the nodes in a + RadTreeView Class. + + + + Specifies a solid line. + + + Specifies a line consisting of dashes. + + + Specifies a line consisting of dots. + + + Specifies a line consisting of a repeating pattern of dash-dot. + + + Specifies a line consisting of a repeating pattern of dash-dot-dot. + + + + Gets the error text. + + The error text. + + + + Show expander + + + + + Gets the checked mode. + + + The checked mode. + + + + + TreeViewSpreadExport is a powerful exporting API, allowing to export RadTreeView to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The RadTreeView to export. + + + + Initializes a new instance of the class. + + The RadTreeView to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export images. + + + + + Gets or sets a value indicating whether to export child nodes grouped. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets the indent of child nodes. + + + + + Gets or sets a value indicating how children of collapsed nodes are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting tree node of RadTreeView. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting tree node. + + + + + Determines whether a tree node will be selected upon clicking on the action part of the split button element. The default value is false and click on the action part will result in opening the popup with the menu items. + + + + + Gets the breadCrumb element. + + + + + RadbreadCrumb consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets a collection of items which are children of the TabStrip element. + + + + + Initializes a new instance of the TreeViewCheckboxEditor class. + + + + + Begins the edit. + + + + + Toggles the checkbox state. + + + + + Translates system key down events to the owner element. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the editor value. + + + + + + Gets the is modified. + + The is modified. + + + + Gets the type of the editor value + + System.Boolean + + + + Initializes a new instance of the DataFilterCheckboxEditorElement class. + + A instance. + + + + Get the checkmark element. + + + + + Gets or sets the checkmark state. + + + + + Represents a date time editor in RadTreeView. + + + + + Represents a DropDownList editor in RadTreeView. + + + + + Represents a spin editor in RadTreeView. + + + + + Represents the method that will handle events in the hierarchy traverser. + + + + + + + Provides data for all events used in the hierarchy traverser. + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the object instance to be processed by the hierarchy traverser. + + true if [process hierarchy object]; otherwise, false. + + + + Gets the node. + + The node. + + + + + + + + + Gets or sets the font. + + The font. + + + + Gets or sets the color of the fore. + + The color of the fore. + + + + Gets or sets the color of the border. + + The color of the border. + + + + Gets or sets the back color4. + + The back color4. + + + + Gets or sets the back color3. + + The back color3. + + + + Gets or sets the back color2. + + The back color2. + + + + Gets or sets the color of the back. + + The color of the back. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the gradient percentage2. + + The gradient percentage2. + + + + Gets or sets the gradient percentage. + + The gradient percentage. + + + + Gets or sets the gradient angle. + + The gradient angle. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Gets or sets the text alignment. + + The text alignment. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The table element. + + + + Gets or sets the size of the arrow. Used to calculate pixel-perfect results. + + + + + Gets or sets a value determining the shape of the link + + + + + Gets or sets a value determining the style of the link lines + + + + + Defines the differen link styles + + + + + + + + This constant is used internally. + + + + + Initializes a new instance of + + + + + + Initializes a new instance of + + + + + Raises the ModifiedChanged event. + + + + + Appends the given text + + + + + + Clears the editing control's text + + + + + Clears and undoes the text + + + + + Copies the selected text + + + + + Cuts the selected text + + + + + clears the selection + + + + + Gets a character from a given point + + + + + + + Gets the index of a character at a given point + + + + + + + gets the index of the first char in a given line + + + + + + + gets the first char index at the current line + + + + + + Gets a line number from a char index + + + + + + + Gets the position from a char index + + + + + + + pastes the text in the clipboard + + + + + Pasted a given text + + + + + + scrolls the textbox to the caret position + + + + + Makes a selection in a given range specified by a start position and selection length + + + + + + + selects the whole text + + + + + Undoes the last edit operation in the text box. + + + + + Raises the AcceptsTabChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the MultilineChanged event. + + + + + Raises the PreviewKeyDown event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets whether the control can receives the focus when tab is pressed + + + + + Gets or sets whether the text box accepts the return key + + + + + Gets or sets whether the text box accepts the tab key + + + + + Gets if the text box could undo its value + + + + + Indicates if all characters should be left alone or converted + to upper or lower case + + + + + Gets or sets the selection in the text box + + + + + The lines of the text in a multi-line edit, as an array of string values + + + + + Specifies the maximum length of characters which could be entered + + + + + Indicates the visibility level of the object + + + + + The text could span more than a line when the value is true + + + + + Gets or sets the char used for entering passwords + + + + + Gets the preferred height + + + + + Indicates whether the text could be changed or not + + + + + The scrollbars which will appear if the editing control is in multiline mode + + + + + the text which is in selection + + + + + the length of the selection + + + + + Gets or sets the start selection position + + + + + Indicates whether the shortcuts are enabled. + + + + + Gets or sets the alignment of the text in the editing control + + + + + Indicates the text length + + + + + Indicates if lines are automatically word-wrapped for + multiline editing controls + + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets the TextBox control hosted in this item. + + + + + Gets or sets the vertical stretch value + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + This property is used internally. + + + + + Occurs when the TabStop property has changed. + + + + + Occurs when the AcceptsTab property has changed. + + + + + Occurs when the HideSelection property has changed. + + + + + Occurs when the Modified property has changed. + + + + + Occurs when the Multiline property has changed. + + + + + Occurs when a key is pressed while focus is on text box. + + + + + Occurs when the ReadOnly property has changed. + + + + + Occurs when the TextAlign property has changed. + + + + + Represents a base button control. The button control serves as a + RadButtonElement Class wrapper. All logic and + presentation features are implemented in a parallel hierarchy of objects. For this + reason, RadButtonElement Class may be nested in + any other telerik control, item, or element. + + + + + Initializes a new instance of the RadButtonBase class. + + + + + Override this method to create custom main element. By default the main element is an instance of + RadButtonElement. + + Instance of the one-and-only child of the root element of RadButton. + + + + Gets or sets the text associated with this item. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the instance of RadButtonElement wrapped by this control. RadButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadButton. + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + + + + + + + + + + Specifies the options for display of image and text primitives in the element. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Determines whether the button can be clicked by using mnemonic characters. + + + + + Toggles the value of RadToggleSwitch + + + + + Toggles the value of RadToggleSwitch + + Indicates whether to use animation. + + + + Sets the value of RadToggleSwitch. + + The new value. + + + + Sets the value of RadToggleSwitch. + + The new value. + Indicates whether to use animation. + + + + Gets the instance of RadToggleSwitchElement wrapped by this control. RadToggleSwitchElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadToggleSwitch. + + + + + Gets the on element of RadToggleSwitch. + + + + + Gets the off element of RadToggleSwitch. + + + + + Gets the thumb of RadToggleSwitch. + + + + + Gets or sets the text displayed when the state is On. + + + + + Gets or sets the text displayed when the state is Off. + + + + + Gets or sets width of the thumb. + + + + + Determines how far the switch needs to be dragged before it snaps to the opposite side. + + + + + Gets or sets the value. + + + + + Gets or sets a value indicating whether to use animation when changing its state. + + + + + Gets or sets the animation interval. + + + + + Gets or sets the animation frames. + + + + + Gets a value indicating whether the control is currently animating. + + + + + Determines how ToggleSwitch button should handle mouse click and drag. + + + + + Gets or sets a value indicating whether the value could be changed. + + + + + RadToggleSwitch consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadToggleSwitch consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + Occurs when the Value is about to change. Cancelable. + + + + + Occurs when the Value has changed. + + + + + Occurs when the animation starts. + + + + + Occurs when the animation finishes. + + + + + Toggles the value of RadToggleSwitch + + + + + Toggles the value of RadToggleSwitch + + Indicates whether to use animation. + + + + Sets the value of RadToggleSwitch. + + The new value. + + + + Sets the value of RadToggleSwitch. + + The new value. + Indicates whether to use animation. + + + + Cancels the currently running animation. + + + + + Gets or sets a value indicating whether to use animation when changing its state. + + + + + Gets or sets the animation interval. + + + + + Gets or sets the animation frames. + + + + + Gets a value indicating whether the control is currently animating. + + + + + Gets the on element + + + + + Gets the off element. + + + + + Gets the thumb element. + + + + + Gets or sets the value. + + + + + Gets or sets width of the thumb. + + + + + Determines how far the switch needs to be dragged before it snaps to the opposite side. + + + + + Gets or sets the text displayed when the state is On. + + + + + Gets or sets the text displayed when the state is Off. + + + + + Determines how ToggleSwitch button should handle mouse click and drag. + + + + + Gets or sets a value indicating whether the value could be changed. + + + + + + + + + + + + + + + Get or set thumb size + + + + + Gets or sets the image used by the splitter when in horizontal orientation. + + + + + Gets or sets the image used by the splitter when in vertical orientation. + + + + + This class represents the drop-down + of the RadGalleryElement. + + + + + Creates an instance of the + class. + + An instance of the + class that represents the gallery that owns this drop-down. + + + + Represents the groupbox content. + + + + + Gets the FillPrimitive contained in the Content area + + + + + Gets the BorderPrimitive contained in the Content area. + + + + + Creates child elements. Please refer to TPF documentation for more information. + + + + + Returns class name. + + class name + + + + Represents the groupbox footer. + + + + + Creates child elements. Please refer to TPF documentation for more information. + + + + + Performs layout measure. Please refer to TPF documentation for more information. + + + desired size + + + + Returns class name. + + class name + + + + Represents a groupbox. The group box major purpose is to define a radio buttons group. The RadGroupBox does not support scrolling. + The control is highly customizable using themes. + + + + + Parameterless contstructor. + + + + + Gets or sets the header text. + + + + + Gets the groupbox element. + + + + + Gets or sets the groupbox style - Standard or Office. + + + + + Gets or sets the header position - Top, Right, Bottom, Left + + + + + Gets or sets the header alignment - Near, Center, Far. + + + + + Gets or sets the header margin. + + + + + Gets or sets footer visibility. + + + + + Gets or sets the header text. + + + + + Gets or sets the footer text. + + + + + Gets or sets the header image. + + + + + Gets or sets the footer image. + + + + + Gets or sets the header image key. + + + + + Gets or sets the header image index. + + + + + Gets or sets the footer image key. + + + + + Gets or sets the footer image index. + + + + + Gets or sets the header text image relation. + + + + + Gets or sets the footer text image relation. + + + + + Gets or sets the header text alignment. + + + + + Gets or sets the footer text alignment. + + + + + Gets or sets the header image alignment. + + + + + Gets or sets the footer image alignment. + + + + + If true, the first character preceded by an ampersand will be used as mnemonic key + + + + + Gets or sets the header margin. + + + + + Gets or sets the header text. + + + + + Gets or sets the footer text. + + + + + Gets or sets the header image. + + + + + Gets or sets the footer image. + + + + + Gets or sets the header text image relation. + + + + + Gets or sets the footer text image relation. + + + + + Gets or sets the header text alignment. + + + + + Gets or sets the footer text alignment. + + + + + Gets or sets the header image alignment. + + + + + Gets or sets the footer image alignment. + + + + + Gets or sets the header image key. + + + + + Gets or sets the header image index. + + + + + Gets or sets the footer image key. + + + + + Gets or sets the footer image index. + + + + + Gets or sets the group box style - Standard, or Office. + + + + + Defines group box styles. + + + + + Prevent Design time serilizaltion for Image from theme + + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets or sets the position of text and image relative to each other. + + + + + true if the text should wrap to the available layout rectangle otherwise, false. The default is true + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + + + + + + + + + + If true, the first character preceded by an ampersand will be used as the label's mnemonic key + + + + + Gets or sets a value indicating whether the border is visible + + + + + Gets the instance of RadLabelElement wrapped by this control. RadLabelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadLabel. + + + + + A light element that inherits from , adds the base states for theming and sets the default event to Click. + + + + + IsDirty Property + + + + + Takes as parameters the that is binding + and the that is being bound to the RadItem. + + The that is binding. + The object that is being bound to the . + + + + Gets the that is bound. + + + + + Gets the that was swapped with a new RadItem. + + + + + Gets the object that is being bound to the . + + + + + Takes as parameters the that is bound + and the that is being bound to the RadItem. + + The that is bound. + The object that is being bound to the . + + + + Gets the that is bound. + + + + + Gets the object that is being bound to the . + + + + + Returns the type supported by the class implementing the ICellEditor interface. + The supported type is the data type that can be handled and edited by the editor. + + + + + Defines how the editor will be positioned relatively to the edited container + + + + + Editor is positioned inline, inside of the editor container, and logically resides in container's children + hierarchy. Usually it is recommended to use this option for compact-sized editors, + like textboxes, comboboxes, mask editors, checkboxes, etc. + + + + + Editor is positioned inside a popup control which is positioned vertically under the edited + container. Usually it is recommended to use this + option for medium to large-sized editors, like calendars, custom controls and panels, + radiobutton lists, checkbox groups, etc. + + + + + Usually this means that the editor is positioned explicitly by the edited containers's logic. + Also it is used as a default initialization value. + + + + + Provides functionality for managing editors + + + + + Returns an editor instance of the default type for the editor provider. + + An object that implements interface. + + + + Gets the default editor type for the editor provider. + + The default type. + + + + Initializes a specified editor. + + An object that implements interface. + + + + Establishes the common events and also the event-related properties and methods for basic input processing by + Telerik Presentation Foundation (TPF) elements. + + + + + This interface defines all necessary methods for custom scrolling. Performing each + scroll operation via the method (thus allowing custom + logic to be used) is called logical scrolling. The only way to enable logical + scrolling in is via implementation of this + interface. + + + + + Gets the real size of the content that the viewport must visualize. + + + + + Invalidates the viewport. + + + + + Calculate scroll value. This method is used while resizing the scroll panel. + + + + + + + + + + + + + + + Calculates the necessary offset in order to make the given child visible. + + + + Retrieves the scroll parameters. + + + + + + Returns the number of items that are visible when the viewport is scrolled to its + maximum value (the bottom for vertical stack and the right-most place for left-to-right + horizontal stack). The last item must always be fully visible. + If there are children the result will be at least 1. + + Number of full visible items in the viewport. If the items are with different sizes, + the last items are used in the calculations. + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the captured color + + + + + Fires when the color is changed. + + + + + + + + Fires when the selected color has changed + + + + + Represents a color palette + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the number of columns in the palette + + + + + Gets or sets the margin of the palette + + + + + Gets or sets the color in the palette + + + + + Gets or sets the selected color + + + + + Fires when the selected color has changed + + + + + + + + Provides different sets of colors + + + + + Gets the color correspoding to a hex value + + + + + + + Gets the hex value for the color + + + + + + + Gets the rounded value + + + + + + + Gets the set of basic colors + + + + + Gets the set of system colors + + + + + Gets the set of named colors + + + + + Provides common services for color transformations + + + + + Gets a color from RGB ratios + + + + + + + + + Gets a color quotient + + + + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the RgbValue value + + + + + Gets or sets the HSL value + + + + + Fires when the selected color changes + + + + + Represents a hexagon of discrete colors + + + + + Fires when the selected color has changed + + + + + Gets the selected color + + + + + Paints the hexagon + + + + + + Gets or sets the hexagon color + + + + + Gets a rectangle containing the hexagon + + + + + Gets or sets a value indicating whether the hexagon is hovered + + + + + Gets or sets a value indicating whether the hexagon is selected + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color mode + + + + + Gets or sets the color in HSL format + + + + + Gets or sets the color in RgbValue format + + + + + Fires when the selected color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color mode of the slider + + + + + Gets or sets the color in HSL format + + + + + Gets or sets the color in RgbValue format + + + + + Gets or sets the position of the slider arrow + + + + + Fires when the selected color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color in RgbValue format + + + + + Fires when the selected color changes + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color shown in RGB format + + + + + Gets or sets the color shown in HSL format + + + + + Fires when the selected color has changed + + + + + Represents a color selector control + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when custom colors configuration is about to be saved or loaded. + Can be used to change the default location of the configuration file. + + + + + Fires when the selected color changes + + + + + Fires when the OK button is clicked + + + + + Fires when the Cancel button is clicked + + + + + Gets or sets a value indicating whether the Analytics functionality is enable or disable for this control. + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the selected HSL color + + + + + Gets or sets the old color + + + + + Gets the list of custom colors + + + + + Shows or hides the web colors tab + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the professional colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the hex color textbox + + + + + Gets or sets the value indicating whether the user can edit the hexadecimal color value + + + + + Gets or sets the value indicating whether the user can pick a color from the screen + + + + + Gets or sets the value indicating whether the user can save colors + + + + + Gets or sets the text of the add new color button + + + + + Sets or gets the active mode of the RadColorPicker + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the new color label + + + + + Gets or sets the heading of the old color label + + + + + Gets the DiscreteColorHexagon control + + + + + Gets or sets a value indicating whether custom colors should be save upon exiting the color picker. + + + + + A panel holding a collection of saved colors + + + + + Safely tries to find the path to the local app data folder. + If no path is found, tries to find the path to the common app data folder. + + + + + Serializes the custom colors. + + + Deserializes the custom colors. + + + + Save the color to the next color slot + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when the selected color has changed + + + + + Fires when custom colors configuration is about to be saved or loaded. + Can be used to change the default location of the configuration file. + + + + + Gets or sets a value indicatign whether custom colors should be save upon exiting the color picker. + + + + + Gets or sets the custom directory path which will be used + when the custom colors XML file is stored on the hard drive. + + + + + Gets or sets the index of the currently selected color + + + + + Gets the currently selected color + + + + + Gets all the colors in the saved colors collection + + + + + A transparent color box where semi-transparent colors can be shown + + + + + Gets or sets the color shown in the box + + + + + A transparent color box where semi-transparent colors can be shown + + + + + Gets or set the color shown in the box + + + + + Represents the RadDateTimePicker class + + + + + Represents the RadDateTimePicker constructor + + + + + creates and initializes the RadDateTimePickerElement + + + + + + Sets the current value to behave as a null value + + + + + Raises the FormatChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanging event + + + + + + Gets the control's default size + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the culture supported by this calendar. + + + + + Gets the instance of RadDateTimePickerElement wrapped by this control. RadDateTimePickerElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDateTimePicker. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the format of the date and time displayed in the control. + + + + + Indicates whether a check box is displayed in the control. When the check box is unchecked no value is selected + + + + + Gets or sets the custom date/time format string. + + + + + When ShowCheckBox is true, determines that the user has selected a value + + + + + Gets or sets the minimum date and time that can be selected in the control. + + + + + Gets or sets the maximum date and time that can be selected in the control. + + + + + Gets or sets the location of the drop down showing the calendar + + + + + Gets or sets the size of the calendar in the drop down + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Indicates whether a spin box rather than a drop down calendar is displayed for editing the control's value + + + + + Gets or sets the text that is displayed when the DateTimePicker contains a null + reference. + + + + Gets or sets a value indicating whether RadDateTimePicker is read-only. + + true if the RadDateTimePicker is read-only; otherwise, false. The default is + false. + 1 + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the format of the control has changed + + + + + Occurs when the value of the control has changed + + + + + Occurs when the value of the control is changing + + + + + Occurs when the value of the control is changing + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Occurs when the RadItem has focus and the user presses a key down + + + + + Occurs when the RadItem has focus and the user presses a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs before the CheckBox's state changes. + + + + + Occurs when the CheckBox's state changes. + + + + + Occurs when the value of the checkbox in the editor is changed + + + + + Represents the RadDateTimePickerCalendar class + + + + + Represents the RadDateTimePickerCalendar constructor + + + + + + Creates dateTimePicker's children + + + + + Shows the drop-down window part of the combo box + + + + + Sets the date shown in the textbox by a given value and format type. + + + + + + + Gets the instance of RadDateTimePickerElement associated to the control + + + + + Gets the RadArrowButtonElement instance + that represents the Date Time Picker's arrow + button. + + + + + Gets or sets the calendar control which is shown when the pop up control is shown + + + + + Gets or sets the drop down control which is shown when the user clicks on the arrow button + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, vertical or a combination of them. + + + + + Gets or sets the drop down minimum size. + + + + + Gets or sets the drop down maximum size. + + + + + Gets a value representing whether the drop down is shown + + + + + The owner control of the popup + + + + + Shows the popup control with a specified popup direction and offset by the owner + + + + + + + Hides the popup + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Gets or sets the hosted control in the popup. + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Represents the RadDateTimePickerSpinEdit class + + + + + Represents the RadDateTimePickerSpinEdit constructor + + + + + + Sets the date shown in the textbox by a given value and format type. + + + + + + + Creates dateTimePicker's children + + + + + Gets the instance of RadDateTimePickerElement associated to the control + + + + + RadRotator BeginRotate Event Arguments + + + + + Delegate for the BeginRotate event + + The RadRotator that rotates + + + + + This control is transfers the web-based rotators' functionality to the Windows forms work space. + + + + + Initializes the RadRotator control + + + + + Initializes the Childs Items + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + /// + + + + + + + /// + + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + + + + Gets the instance of RadRotatorElement wrapped by this control. RadRotatorElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRotator. + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The RadItem containing , Border and Fill primitives + + + + + + + + + + + + + + + + + + + + + + + + + + Gets the collection of s that will be rotated. + + + + + Gets or Sets the that is to be displayed while loading the rest items. It is not cycled through when rotation starts. + If you want to have initial item that will be cycled through, add it to the collection + and advance to it using + + + + + + + Gets or Sets the interval between consequetive rotation animations. + + + + + Gets or Sets the swap animation's frames number + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + Gets or Sets value indicating whether opacity will be animated when switching frames + + + + + Gets or Sets value defining the initial position of the incomming item + and the final position of the outgoing item. + Note: The position is relative, in the range [-1, 1] for each of the components (X, Y). + Value of positive or negative 1 means that the object will not be in the visible area + before the animation begins (for the incomming item) or after it ends (for the outgoing item) + + + + + Gets or Sets the index of the current item. + Note: When setting the current item, the old and the new item will be swapped. + + + + + + Gets the current item. + + + + + + Gets or Sets value indicating whether the is started/stopped. + + + + + + + + Gets the in the current + + + + + + + + + + + + + + + + + + + + Represents TPF controls container + + + + + Gets the collection of s contained in the + + + + + The RadItem that implements the actual 's functionality. + + + + + Starts cycling through the elements in the collection + + set to true to initiate rotation immediately, or set to false to rotate after the time + there are no elements to rotate (Items collection is empty) + + + + Stops the rotation process. If swap is under way, it will be completed. + + + + + Initiates swap between the current item and the one whose index is supplied. + + the index of the item in the collection. The index of the home element is -1. + true on successful swap + + + + Makes transition to the default element. + + + + + Advances to the next item + + + + + Advances to the previous item + + + + + + + + + + + + + + Gets the collection of s that will be rotated. + + + + + Gets or Sets the that is to be displayed while loading the rest items. It is not cycled through when rotation starts. + If you want to have initial item that will be cycled through, add it to the collection + and advance to it using + + + + + + + Gets or Sets the interval between consequetive rotation animations. + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + Gets or Sets the swap animation's frames number + + + + + Gets or Sets value indicating whether opacity will be animated when switching frames + + + + + Gets or Sets value defining the initial position of the incomming item + and the final position of the outgoing item. + Note: The position is relative, in the range [-1, 1] for each of the components (X, Y). + Value of positive or negative 1 means that the object will not be in the visible area + before the animation begins (for the incomming item) or after it ends (for the outgoing item) + + + + + Gets or Sets the index of the current item. + Note: When setting the current item, the old and the new item will be swapped. + + + + + + Gets the current item. + + + + + + Gets or Sets value indicating whether the is started/stopped. + + + + + + + + Fires when an Item is clicked + + + + + Fires when is started. + + + + + Fires when is stopped. + + + + + Fires before s' swap begins. + + + + + Fires when s' swap has finished. + + + + + Provides information about the validation process. + + + + + Gets the exception that is caused by the validation of the edited value. Generally + the exception is populated by the validation logic and is available for rising by the editor. + + + + + Gets the edited value that fails to be validated + + + + + Represents the method that handles the Validating event. + + The source of the event. + A ValidationErrorEventArgs that contains the event data. + + + + Represents the method that handles the ValueChanging event. + + The source of the event. + A ValueChangingEventArgs that contains the event data. + + + + Adds the RadContextMenu dynamic property and enables using RadContextMenu in all controls. + + + + + Provides a menu-like interface within a button. + + + + + Create main button element that is specific for RadSplitButton. + + The element that encapsulates the functionality of RadSplitButton + + + + + + + Gets the instance of RadSplitButtonElement wrapped by this control. RadSplitButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSplitButton. + + + + + + + + + + + Raises the DropDownItemClicked event. + + + + + Get or sets the item that is activated when the button portion of the + RadSplitButtonElement is clicked or selected and Enter is pressed. + + + + + Get or sets the item that is separating the action part and the arrow part of the button. + + + + + Occurs when the default item is changed. + + + + + + Represents a checkmark element in a menu item. + + + + + Represents checkmark. + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets the instance of BorderPrimitive wrapped by this element. + + + + + Gets the instance of FillPrimitive wrapped by this element. + + + + + Gets the instance of ImagePrimitive wrapped by this element. + + + + + Gets the instance of CheckPrimitive wrapped by this element. + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed as a checkmark. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets value indicating RadCheckmark checkstate. + + + + + Determines whether the item will be used as a separate item in another element. + + + + Gets or sets value indicating whether border must be shown. + + + Gets or sets value indicating whether background must be shown. + + + + Represents a menu item which has a combobox placed inside. + + + + + Provides a reference to the ComboBox element in the menu item. + + + + + Represents a generic menu item which could have any descendant of RadElement placed inside. + Such element could be placed in the menu by setting the ContentElement property. + + + + + Gets or sets if the image column offset is shown along with content element or not. + + + + + Provides a reference to the content element in the menu item. + + + + Defines scrolling states. + + + + + + + Represents event data of the Scroll event defined in all controls providing + scrolling functionality(e.g. RadScrollBar). + + + + + Initializes a new instance of the ScrollPanelEventArgs class. + + + + + + Gets the old thumb position (point). + + + Gets the new thumb position (point). + + + + Represents event data for the + ScrollParametersChanged event. + + + + + Indicates whether the scroll parameters are for the horizontal or for the vertical scroll bar. + + + + + Scroll bar parameters taken from the scroll bar that caused the event. + All parameters are filled correctly, not only the chagned one. + + + + + Indicates whether the need for horizontal or vertical srcolling has changed + + + + + Indicates whether horizontal scrolling was necessary + + + + + Indicates whether horizontal scrolling is necessary + + + + + Represents the method that will handle the + Scroll event. + Represents the event sender. + Represents the event arguments. + + + + + Represents the method that will handle the + Scroll event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + ScrollNeedsChanged event. + + + + + + + Represents parameters of the scroll panel such as values for the small and + large changes while scrolling. + + + + + Represents horizonatal scroll parameters data: horizontal minimum and maximum + positions, and horizontal small and large change. + + + + + Represents vertical scroll parameters data: vertical minimum and maximum + positions, and vertical small and large change. + + + + + Initializes a new ScrollPanelParameters struct. + + + ScrollPanelParameters(int,int,int,int,int,int,int,int) + + + Initializes the parameters pertaining to the horizontal scrolling - small and + large horizontal changes, and minimum and maximum scrolling positions. + + + Initializes the parameters pertaining to the vertical scrolling - small and large + vertical changes, and minimum and maximum scrolling positions. + + + + + Initializes a new ScrollPanelParameters structure. + + + ScrollPanelParameters(ScrollBarParameters,ScrollBarParameters) + + Initializes the minimum horizontal scrolling position. + Initializes the maximum horizontal scrolling position. + + Initializes the small horizontal change value; the value added or substracted + from the current position when small horizontal change is initiated. + + + Initializes the large horizontal change value; the value added or substracted + from the current position when large horizontal change is initiated. + + Initializes the vertical minimum scrolling position. + Initializes the vertical maximum scrolling position. + + Initializes the small change vertical value; the value added or substracted from + the current position when small vertical change is initiated. + + + Initializes the large vertical change value; the value added or substracted from + the current position when large vertical change is initiated. + + + + + Represents a menu. It may be nested in other telerik controls. RadMenu can be + horizontal or vertical. You can add, remove, and disable menu items at run-time. It + offers full support for the Telerik RadControls + for WinForm theming engine, allowing you to easily construct a variety of stunning + visual effects. You can nest any other RadControl within a RadMenu + . For example, you can create a menu with an embedded + textbox or combobox. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Occurs when the menu Orientation property value changes. + + + + + Occurs when the menu AllItemsEqualHeight property value changes. + + + + Gets or sets the context items. + + + + Gets an instance of the class + that represents the layout panel in which the menu items reside. + + + + + + Gets all root menu items (see for more + information about menu items). + + + + Root menu items are these menu items that can be displayed in the menu when + nothing is dropped down. + + Menu items are hierarchical items - they have a parent item and a list of children + items. Children items are menu items that can be dropped down as submenu of + their parent. The difference between the root and the non-root menu items is that + root items have no parent item (the property + can be used to check if an item is a + root one). + + Note that Items contains all root menu items, not just the + items that are displayed. An item remains in the Items collection even if it is an + overflow item and is therefore not currently visible. + + RadMenuItemBase Class + + + + Gets or sets the + orientation of menu + items - Horizontal or Vertical. + + + + + Gets or sets whether all items will appear with the same size (the size of the highest item in the collection). + + + + + Gets or sets a value indicating whether the DropDown animation will be enabled when it shows. + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + Gets an instance of the class + that represents the menu background fill. + + + + + Gets an instance of the class + that represents the border of the menu. + + + + + Represents the method that will handle the RadPopupClosing event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + Represents the event arguments. + Represents the sender of the event. + + + + + Represents a method which will handle the PopupOpening event. + + Repretents the event sender. + Represents the event arguments + + + + Represents a method which will handle the FadeAnimationFinished event. + + Repretents the event sender. + Represents the event arguments + + + + Represents a method which will handle the PopupOpened event. + + Repretents the event sender. + Represents the event arguments + + + Defines the closing reasons for the popup. + + + + Specifies that the popup was closed because + another application has received the + focus. + + + + + Specifies that the popup was closed because the + mouse was clicked outside the + popup. + + + + + Specifies that popup was closed because of + keyboard activity, such as the ESC key being + pressed. + + + + + Specifies that the popup was closed because + ClosePopup() method had been called. + + + + + Specifies that the popup was closed because its parent was closed. + + + + + Instances of this class contain information + about the fade animation finished event of a popup control. + + + + + Gets a boolean value determining the type + of the fade animation. + + + + + Instances of this class contain information + about the opening event of a popup control. + + + + + Creates an instance of the + class. + + + + + Gets an instance of the + struct which contains the coordinates which will be used + to position the popup. + + + + + Represents event data of the RadPopupClosingEvent. + + + + + Initializes a new instance of the RadPopupClosingEventArgs class using the close reason. + + + + + + Defines the direction in which the drop-down window will be shown relative to its parent. + + + This enumeration is used in such controls like menus, combo boxes, etc. for example. + + + + + Indicates that the drop-down will be shown on the left side of the parent. + + + + + Indicates that the drop-down will be shown on the right side of the parent. + + + + + Indicates that the drop-down will be shown on the top side of the parent. + + + + + Indicates that the drop-down will be shown on the bottom side of the parent. + + + + + + + + Gets the screen rectangle of the provided screen. + + The screen. + Determines whether the taskbar is included in the result. + A Rectangle struct that contains the data about the bounds of the screen. + + + + Gets the valid location for a context menu + + + + + + + + + + Gets the valid location for a drop-down (for menus, combo boxes, + etc.). + + + This method calculates: + 1. The rectangle of the screen where the drop down should be shown + 2. The rectangle (in screen coordinates) of the owner element. Owner element + is the element that shows the drop-down and is connected to it - like a menu item + that shows its sub menus or a combobox element that shows its drop-down. + After calculating the screen and the element rectangles this method calls the + basic method. + + + + + + + Offset in pixels from the owner element. When this is zero there is no space + between the owner and the drop-down. + + + + + Gets the valid location for a drop-down (for menus, combo boxes, etc.). + + The popup is not allowed to be outside the screen rectangle and to be shown over + the ownerRect. + + + + + + + Offset in pixels from the owner element. When this is zero there is no space + between the owner and the drop-down. + + + + + Gets a screen from a point on the desktop. + + A Screen object that contains the given point or the PrimaryScreen on + error. + + The point on the desktop that must be in the returned screen. + + + + Gets the rectangle of the screen that contains the biggest part of a given + element. + + The rectangle of the primary screen on error. + + If the element is not added in a control or is not visible the rectangle of the + primary screen is returned. + + + + Gets the rectangle of the screen that contains given point on the desktop. + The rectangle of the primary screen on error. + The point on the desktop that must be in the returned screen rectangle. + + + + Ensures a drop-down rectangle is entirely visible in a given screen + rectangle. + + + + + Represents a progress bar. You can set progress bar appearance in numerous ways. + For example, you can use dash or dash integral style, set separator color and width, set a + background image, etc. The RadProgressBar class is a simple wrapper for the + RadProgressBarElement class. The latter may + be nested in other telerik controls. All UI and logic functionality is + implemented by the RadProgressBarElement + class. RadProgressBar acts to transfer the events to and from the + RadProgressBarElement class. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the text associated with this control. + + + The text. + + + + + Gets or sets the background image of the RadProgressBar. + + + + + Gets or sets the layout of the background image of the RadProgressBar. + + + + + Gets the instance of RadProgressBarElement wrapped by this control. RadProgressBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadProgressBar. + + + + + Gets or sets the value of the first progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the value of the second progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the minimum value for the progress. + + + The minimum. + + + + + Gets or sets the maximum value for the progress. + + + The maximum. + + + + + Gets or sets a value indicating the amount to increment the current value with. + + + The step. + + + + + Gets or sets the StepWidth between different separators. + + + The width of the step. + + + + + Indicates whether the progress bar style is dash. When style is dash + the progress line is broken into segments with separators in between them. + + + + + Indicates whether the progress bar style is hatch. When style is hatch + the progress line is covered with a hatch. You will have to change the SweepAngle + in order to see the style. + + + + + When style is dash indicates if the progress indicators will progress on steps or smoothly. + + + + + Gets or sets the first gradient color for separators + + + The separator color1. + + + + + Gets or sets the second gradient color for separators. + + + The separator color2. + + + + + Gets or sets the third gradient color for separators. + + + The separator color3. + + + + + Gets or sets the fourth gradient color for separators. + + + The separator color4. + + + + + Gets or sets the fourth gradient color for separators. + + + The separator gradient angle. + + + + + Gets or sets the first color stop in the separator gradient. + + + The separator gradient percentage1. + + + + + Gets or sets the second color stop in the separator gradient. + + + The separator gradient percentage2. + + + + + Gets or sets the number of colors used in the separator gradient. + + + The separator number of colors. + + + + + Gets or sets the separators width in pixels. + + + The width of the separator. + + + + + + + + + + + + + + + + + Gets or sets the alignment of the image of the progress line. + + + + + Gets or sets the text orientation in the progress bar. + + + + + Gets or sets the alignment of the text content on the drawing surface. + + + + + Gets or sets the progress + orientation: Bottom, Left, Right, Top. + + + + + Indicates whether the progress bar style is hatch. When true, the style is Hatch. + When both dash and hatch are true the style is hatch. + + + + + Gets or sets the angle at which the dash or hatch lines are tilted. + + + + + Fires when value is changed. + + + + + Fires when step is changed. + + + + + Fires when step width is changed. + + + + + Fires when the separator width is changed. + + + + + Fires when the minimum property is changed. + + + + + Fires when the maximum property is changed. + + + + + Fires when the dash property is changed. + + + + + Fires when the hatch property is changed. + + + + + Fires when the integral dash property is changed. + + + + + Fires when the text orientation is changed. + + + + + Fires when the text alignment is changed. + + + + + Fires when the progress orientation is changed. + + + + + Fires when show progress indicators is changed. + + + + + Fires when the separator color is changed. + + + + + Represents the method that will handle some of the following events: + ValueChanged, + StepChanged, + StepWidthChanged, + SeparatorWidthChanged, + MinimumChanged, + MaximumChanged, + DashChanged, + TextOrientationChanged, + Represents the event sender. + Represents the event arguments. + + + + + Represents a progress bar element. RadProgressBar + is a simple wrapper for RadProgressBarElement. The latter may be included in other + telerik controls. All graphical and logic functionality is implemented by + RadProgressBarElement. The RadProgressBar acts to + transfer the events to and from its RadProgressBarElement instance. + + + + + Creates the child elements and sets their locally applied values as Default + + + + + Initializes the fields. + + + + + Gets the final size of the progress indicator. + + The element. + The client rect. + The value. + + + + + Gets the final size of a vertical progress indicator. + + The client rect. + The value. + The step. + + + + + Gets the final size of a horizontal progress indicator. + + The client rect. + The value. + The step. + + + + + Gets the final size of the separators. + + The progress bar1 rectangle. + The progress bar2 rectangle. + + + + + Raises the event. + + The instance containing the event data. + + + + Advances the + current position of the progress bar by the amount of the Step property + + + + + Reverses the + advance of the current position of the second progress bar by the amount of the Step + property. + + + + + Increments Value1 with the given argument value. + + The value. + + + + Decrements Value1 with the given argument value. + + The value. + + + + Advances the + current position of the first progress bar by the amount of the Step + property. + + + + + Advances the + current position of the first progress bar by the amount of the Step + property. + + + + + Increments Value2 with the given argument value. + + The value. + + + + Decrements Value2 with the given argument value. + + The value. + + + + Gets or sets the value for the first progress indicator. + + + + + Gets or sets the value for the second progress indicator. + + + + + Gets or sets the minimum possible value for the progress bar Value1(2). + + + + + Gets or sets the maximum possible value for the progress bar Value1(2). + + + + + Gets or sets the value with which the progress bar Value1(2) will + increments/decrements. + + + + + Gets or sets the step width in pixels with which the progress bar + indicator will move if style is dash. + + + + + Gets or sets the progress orientation of the progress bar indicator. + Bottom, Left, Right, Top + + + + + Gets or sets if the progress should be show with percentages. + + + + + Gets or sets the style to dash. + + + + + Gets or sets the style to hatch. + + + + + Gets or sets the style to integral dash. To set IntegralDash you need + to first set dash to true. + + + + + Gets or sets the progress bar indicator image. + + + + + Gets or sets the layout of the image in the progress indicator. + + + + + Gets or sets the image index of the progress bar indicator image. + + + + + Gets or sets the image key for the progress bar indicator image. + + + + + Gets or sets the alignment of the image in the progress line. + + + + + Gets an instance of the class + that represents the progress indicator of the progress bar. + + + + + Gets an instance of the class + that represents the progress bar indicator. + + + + + Gets an instance of the class + that represents the separators on the progress bar indicator. + + + + + Gets or sets the separators width in pixels. + + + The width of the separator. + + + + + Gets or sets the first gradient color for separators + + + The separator color1. + + + + + Gets or sets the second gradient color for separators + + + The separator color2. + + + + + Gets or sets the third gradient color for separators + + + The separator color3. + + + + + Gets or sets the fourth gradient color for separators + + + The separator color4. + + + + + Gets or sets the angle of the separators gradient + + + + + Gets or sets the first color percentage in the separator gradient. + + + + + Gets or sets the second color percentage in the separator gradient. + + + + + Gets or sets the number of colors used in the separator gradient. + + + + + Gets an instance of the class + that represents the text of the progress bar. + + + + + Gets or sets the text associated with this element. + + + + + Gets or sets the angle at which the dash or hatch lines are tilted. + + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + Gets the element that displays the caption + + + + + Gets the element that displays the footer line + + + + + Gets the element that displays the Text + + + + + Gets the element that displays the Footer + + + + + Gets the FillPrimitive instance that represents + the screen tip fill. + + + + + Gets the BorderPrimitive instance that represents + the screen tip border. + + + + + Represents event data for the following events: OnTabSelected, OnTabHovered, + OnTabDragStarted, OnTabDragStarting, OnTabDragEnding, and OnTabDragEnded. + + + + + Initializes a new instance of the CommandTabEventArgs class using the + affected command tab. + + + + + + Gets the affected command tab. + + + + + Represents the method that will handle the following event: + CommandTabSelected. + + + + + ContextualTabGroups are used to organize RibbonBar Tabs in + groups which are visible depending on certain context. + + + + + Collection containing references to the TabItems in the group. + + + + Gets or sets the displayed text. + + + + + A collection that stores objects. + + + + + + + + Initializes a new instance of the + . + + + + + + + Initializes a new instance of the + . + + + + + + + Initializes a new instance of the + + based on another + . + + + + A from which the contents are copied + + + + + + Initializes a new instance of the + + containing any array of + objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space to the end of . + is . + + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + + Returns an enumerator that can iterate through + the . + + None. + + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + Gets or sets a value indicating the owner. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + + + + + + Initializes a new instance of the ContextualTabGroupEnumerator class + using a collection of ribbon bar command tabs. + + + + + + Moves to the next element in the collection. When invoked for the first time, + moves to the first element of the collection. + + + + Resets the iterator. + + + Gets the current element of the collection. + + + + Find main form and save it in member variable + + + + + Main method for internal logic + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + This method defines whether a Quick Access Toolbar item is visible or not. + If the method is called to hide an item, its Visibility property is set to Collapsed + and the corresponding menu item in the overflow button is unchecked. + The method throws an InvalidOperationException if the item does not below + to the current QAT collection. + + The item which visibility will be modified. + True to show an item, false to collapse it. + + + Gets the items in the tabstrip. + + + + + + + Determines whether the parent form can be moved by dragging the title bar. + + + + + Gets or sets the value of the caption + + + + + Gets the caption layout + + + + + Gets the Help button. + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + Fires when the close button is clicked + + + + + Fires when the minimize button is clicked + + + + + Fires when the maximize button is clicked + + + + + + + + Transforms the given point's X coordinate from world coordinates to local coordinates. + + The point to transform + The transformed point + + + + This method calculates the available space for the + ribbon caption text at the left side of the + contextual tab groups + The total available size for the elements + managed by this layout panel. + The width available. + + + + This method calculates the available space for the + ribbon caption text at the right side of the + contextual tab groups + The total available size for the elements + managed by this layout panel. + The width available. + + + + Determines whether the tab strip items should be reordered so that they match + the requirements for associated tab strip items. + + True if a reset is needed. Otherwise false. + + + + Checks whether the Add New Tab item is in the tab strip. + + True or false + + + + Gets the count of the empty contextual tab groups. + + The count of the empty groups. + + + + Resets the layout context variables which are used to determine the position + of the caption text, the contextual tabs and the design-time + contextual tab groups which are empty. + + + + + Gets the left most contextual tab group. + + Determines whether empty contextual groups are considered when + calculating the left most group + A reference to the left most group. Null if no groups are found. + + + + Gets the right most contextual tab group. + + Determines whether empty contextual groups are considered when + calculating the right most group + A reference to the right most contextual group. Null if no groups are found. + + + + This method reorders the TabStrip items so that they are positioned under the + ContextualTabGroup they are associated with. All tab items that are + associated with a tab groups should be positioned on the right side of the tab strip. + This algorithm begins iterating from the first to the last contextual tab group as they + appear in the collection of the ribbon bar. The associated tab items are always inserted + at the end of the tab strip. In this way the effect of positioning the last associated + tab item at the end of the corresponding contextual group is achieved. + + + + + This method calculates the size of a contextual group base on the associated tabs. + + The tab group which size is to be calculated + The calculated size of the group. + + + + This method is responsible for measuring the rightmost visible contextual group with associated tabs. + This is a private case method which is called only for the right most group, + since it has to be shrinked when the system buttons panel has to 'step' over it while resizing. + + The available size for measuring + The tab group which is to be shrinked + + + + This method is responsible for arranging the rightmost visible contextual group with associated tabs. + This is a private case method which is called only for the right most group, + since it has to be shrinked when the system buttons panel has to 'step' over it while resizing. + + The final size for arranging + The tab group which is to be arranged + + + Represents parameters of the scroll bar such as small change and + large change in the scrolling position. + + + + Represents the minimum value of the scrolling position. + + + + + Represents the maximum value of the scrolling position. + + + + + Represents a small change in the scrolling position; the value which will be + added or substracted from the current position in case of small change. + + + + + Represents a large change in the scrolling position; the value which will be + added or substracted from the current position in case of large change. + + + + Initializes a new ScrollBarParameters structure. + + Initializes the minimum value of the scrolling. + Initializes the maximum value of the scrolling. + Initializes the small change value. + Initializes the large change value. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Allow form's resize + + + + + Gets or sets the form's border color + + + + + Gets or sets the form's border width + + + + + Gets or sets an instance of the Shape object of a form. The shape of the + form is responsible for providing its' border(s) with custom shape. + + + Some predefined shapes are available, like or . + offers a way to specify element's shape with a sequance of points and curves using code + or the design time + . + + + + Gets or sets theme name. + + + Enables or disables transparent background on Vista + + + + Gets or sets the FormBorderStyle of the Form. + + + + + Represents a title bar. This control helps in creation of borderless forms by + substituting the system title bar. Subscribe for radTitleBar events to implement + the actual action for the the corresponding event. For example, on Close event + close the form of your application. + Use the Visual Style Builder to change the default appearance and the visible + elements. For example the system menu is not visible by default. + + + + + Initializes a new instance of the RadTitleBar class. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets a boolean value that determines whether the title bar + can manage the owner form. + + + + + Allow form's resize + + + + + An Icon that represents the icon for the form. + + + + + Gets the instance of RadTitleBarElement wrapped by this control. RadTitleBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTitleBar. + + + + + Fires when a minimize action is performed by the user (the minimize button is + pressed). + + + + + Fires when a maximize/restore action is performed by the user (maximizes button + is pressed or the title bar is double clicked). + + + + + Fires when the minimize in the tray button is pressed. It is hidden by default. + Use the Visual Style Builder to set which elements are visible and design their visual + appearance. + + + + + Represents the method that will handle some of the following events: Close, + MaximizeRestore, Minimize, and MinimizeInTheTray. + + + + + Represents a button control. The button control serves as a + RadButtonElement Class wrapper. All logic and + presentation features are implemented in a parallel hierarchy of objects. For this + reason, RadButtonElement Class may be nested in + any other telerik control, item, or element. + + + + + Gets or sets the DialogResult for this button. + + + + + Rec editors. It is used in + RadComboboxElement, DropDownButton, etc. + + + + + Note: this property is supposed to be used only when this.Parent.AutoSizeMode==WrapAroundChildren + + + + Represents a menu separation item. + Use it to separate logically unrelated items in the menu. + + + Initializes a new instance of the RadMenuSeparatorItem class. + + + Gets or set the sweep angle in degrees. + + + + Gets or sets the separator + orientation. Possible values are members of SepOrientation enumeration. + + + + Gets or sets separators width in pixels. + + + + Gets or sets the offset of the location where the draw of the line should start + + + + Gets a value indicating whether the RadMenuSeparator can be selected. + + + + Gets or sets a value indicating whether the text should be visible. + + + + + Represents the RadRadioButton control + + + + + Represents a RadToggleButton. A ToggleButton may have the following states: + On, Off, and Indeterminate. The button may have only the first two states if the + IsThreeState property is set to false. + + The RadToggleButton class is a simple wrapper for the + RadToggleButtonElement. All UI and + logic functionality is implemented in the + RadToggleButtonElement class. The + latter can be nested in other telerik controls. RadToggleButton acts to + transfer events to and from the its corresponding + RadToggleButtonElement instance. + + + + + Initializes a new instance of the RadToggleButton class. + + + + Initializes a new instance of the class. + + + + + Create main button element that is specific for RadToggleButton. + + The element that encapsulates the functionality of RadToggleButton + + + + Raises the StateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the CheckStateChanging event. + + + + + Raises the CheckStateChanged event. + + + + + Gets the instance of RadToggleButtonElement wrapped by this control. RadToggleButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadToggleButton. + + + + + + + Gets or sets a boolean value indicating where the button is checked. + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + Gets or sets a boolean value indicating where the button is checked. + + + + Gets or sets a value indicating whether the toggle button is read only. + + + true if the toggle button is read only; otherwise, false. + + + + Occurs when the elements's state is changing. + + + + Occurs when the element's state changes. + + + + Occurs when the elements's check state is changing. + + + + Occurs when the element's check state changed. + + + + + Create main button element that is specific for RadRadioButton. + + The element that encapsulates the funtionality of RadRadioButton + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets the default size of RadRadioButton + + + + + Gets the instance of RadRadioButtonElement wrapped by this control. RadRadioButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRadioButton. + + + + Gets or sets a value indicating the alignment of the radio button. + + + + Represents a radio button element. The RadRadioButton + class is a simple wrapper for the RadRadioButtonElement class. The + RadRadioButton acts to transfer events to and from its + corresponding RadRadioButtonElement instance. The RadRadioButtonElement which is + essentially the RadRadioButton control may be nested in + other telerik controls. + + + + + Registers the RadioCheckAlignment dependency property + + + + + initializes and adds the child elements + + + + + Fires te Click event and handles the toggle logic + + + + + Gets or sets a value indicating the alignment of the radio-mark according to the text of the button. + + + + Represents checkmark. + + + + Registers the CheckState dependency property + + + + + Registers the IsImage dependency property + + + + + Registers the IsCheckMark dependency property + + + + + Initializes the newly added children if needed. + + + + + + + handles the properties behavior when a property value is changed. + + + + + + Sets the toggle state of the RadioMark + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets an instance of the check element + + + + + Gets an instance of Image element + + + + Gets or sets value indicating RadRadiomark checkstate. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Raises the GalleryItemHover event. + + + + + Raises the DropDownOpening event. + + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosing event. + + + + + Raises the DropDownClosed event. + + + + + Gets an instance of the class + that represents the popup control which hosts the + displayed to the user when he/she clicks on the drop-down button of the gallery. + + + + + Gets an instance of the class + that represents the main element put in the + when it is shown to the user. This element holds the content of the gallery, + as well as some additional elements like sizing grip etc. + + + + + Gets the instance + that represents the Gallery Element's fill. + + + + + Gets the instance + that represents the Gallery Element's border. + + + + + Gets tne that + represents the up button in the gallery element. + + + + + Gets tne that + represents the down button in the gallery element. + + + + + Gets tne that + represents the show popup button in the gallery element. + + + + + Gets or sets a value indicating whether group filtering is enbled when filters are defined. + + + + + Gets a collection representing the group filters defined in this gallery. + + + + + Gets a collection representing the groups contained in this gallery. + + + + + Returns whether the gallery is currently dropped down. + + + + + Gets a collection representing the items contained in this gallery. + + + + + Gets or sets a value indicating whether the selection of the gallery items is enabled or not. + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the maximum number of columns to be shown in the drop-down portion of the gallery. + + + + + Gets or sets the maximum number of rows to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the minimum number of columns to be shown in the drop-down portion of the gallery. + + + + + Gets or sets the currently selected item. + + + + + Gets the Tools menu items collection where you can add and remove items from the + Tools part of the gallery + + + + + Gets or sets a value indicating whether a gallery item is zoomed-in when mouse over it. + + + + + Occurs when the mouse pointer rests on the gallery item. + + + + + Occurs when the drop-down is opening. + + + + + Occurs when the drop-down has opened. + + + + + Occurs when the drop-down is about to be closed. + + + + + Occurs when the drop-down window has closed. + + + + + Gets or sets value indicating whether DropDownMenu will have the same class name as the owner control or its own. + True means that the same class name will be used as the control that opened the dropdown. + + + + + Gets a collection representing the group items contained in this gallery filter. + + + + + Returns whether the filter is currently selected. + + + + + Gets or sets a value indicating whether the caption of the group is shown. + + + + + Gets or sets the description text associated with this item. + + + + + Angle of rotation for the button image. + Unlike AngleTransform the property ImagePrimitiveAngleTransform rotates the image only. + AngleTransform rotates the whole item + + + + + Gets or sets the font of the description text of the RadGalleryItem. + + + + + Returns whether the gallery item is currently selected. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets the element responsible for painting the background of the label + + + + + Gets the element responsible for painting the text of the label + + + + + Gets the image element responsible for painting the image part of the label. + + + + + Gets the responsible for painting the image part of the label. + + + + + Represents a check box. The RadCheckBox class is a simple wrapper for the + RadCheckBoxElement class. The RadCheckBox acts + to transfer events to and from its corresponding + RadCheckBoxElement. The + RadCheckBoxElement which is essentially the + RadCheckBox control may be nested in other telerik controls. + + + + + Create main button element that is specific for RadCheckBox. + + The element that encapsulates the functionality of RadCheckBox + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets the instance of RadCheckBoxElement wrapped by this control. RadCheckBoxElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadCheckBox. + + + + Gets or sets value indicating the checked state of the checkbox. + + Since RadCheckBox is tri-state based (ToggleState property) the Checked property is provided for compatibility only. + Checked=true corresponds to ToggleState.On and Checked=false corresponds to ToggleState.Off. + If value of ToggleState property equals , + value of Checked property is 'false'. + + + + + Gets or sets a value indication whether mnemonics are used. + + + + Gets or sets a value indicating the alignment of the check box. + + + + Represents a RadRepeatButton. If the button is continuously held pressed, it + generates clicks. The RadRepeatButton class is a simple wrapper for the + RadRepeatButtonElement class. The + RadRepeatButton acts to transfer events to and from its corresponding + RadRepeatButtonElement instance. The + RadRepeatButtonElement which is + essentially the RadRepeatButtonElement + control may be nested in other telerik controls. All graphical and logical + functionality is implemented in + RadRepeatButtonElement class. + + + + + Raises the ButtonClick event. + + + + + Gets the instance of RadRepeatButtonElement wrapped by this control. RadRepeatButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRepeatButton. + + + + + Determines whether the button can be clicked by using mnemonic characters. + + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Propagates internal element click. + + + + + Represents the method that will handle the + ToggleStateChanging + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + CheckStateChanging + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents event data of the + CheckStateChanging + event. + + + + + Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and + + + + + + + + Gets or sets the old toggle state. + + + + + Gets or sets the new toggle state. + + + + + Represents event data of the + ToggleStateChanging + event. + + + + + Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and + + + + + + + + Gets or sets the old toggle state. + + + + + Gets or sets the new toggle state. + + + + + Represents event data of the + ToggleStateChanged. + + + + + Initializes a new instance of the StateChangedEventArgs class. + + + + + + Gets the toggle state Off, On, or Indeterminate + + + + + Represents the method that will handle the + ToggleStateChanged + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the SelectedIndexChanged event. + A SelectedIndexChangedEventArgs that contains the event data. + The source of the event. + + + + + Represents event data of the SelectedIndexChanged event. + + + + + Initializes a new instance of the SelectedIndexChangedEventArgs class. + + + + + Gets the instance of previously selected item. + + + + + Gets the instance of currently selected item. + + + + Used to group collections of controls. + + A RadPanel is a control that contains other controls. You + can use a RadPanel to group collections of controls such as a + group control of radio buttons. If the RadPanel control's + Enabled property is set to false, the controls + contained within the RadPanel will also be disabled. + You can use the AutoScroll property to enable scroll bars in + the RadPanel control. When the AutoScroll + property is set to true, any controls located within the + RadPanel (but outside of its visible region), can be scrolled to + with the scroll bars provided. + The RadPanel control is displayed by default with border and + a text (using TextPrimitive). There is a + FillPrimitive which is transparent by default. It allows gradients + to be used for background of the RadPanel. + + + + Initializes new RadPanel + + + Creates the main panel element and adds it in the root element. + + + + Gets the instance of RadPanelElement wrapped by this control. RadPanelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadPanel. + + + + + Gets or set a value indicating whether panel will scroll automatically to show + the currently focused control inside it. + + + + + Gets or sets the alignment of the text within Panel's bounds. + + + + Gets the default size of the control. + The default System.Drawing.Size of the control. + The default Size of the control. + + + + This property is not relevant for this class. + + + + + Gets or sets a value indicating whether the control causes validation to be + performed on any controls that require validation when it receives focus. + + + true if the control causes validation to be performed on any controls requiring + validation when it receives focus; otherwise, false. + + + + The main element of the RadPanel control. + + + Create the elements in the hierarchy. + + + + Gets the of the + panel element. + + + + + Gets the of the + panel element. + + + + + Gets the of the + panel element. + + + + + This class represents the root element + of a control. + + + + + Represents a dialog containing a color picker + + + + + Creates instance of RadColorDialog class + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the color selector + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Gets or sets the active mode of the color tabstrip + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides whe professional colors tab + + + + + Shows or hides the custom colors tab + + + + + Shows or hides the hex color value + + + + + Allows or disallows editing the HEX value + + + + + Allows or disallows color picking from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the selected color has changed + + + + + Instance of this class contain information about the control to which + a container of the RadScrollablePanel is scrolled. + + + + + Gets an instance of the + class that represents the scrollable panel that holds + the gallery items when the popup is shown. + + + + + Gets an instance of the class + that represents the element holding the buttons that represent + the different filters and groups. + + + + + Gets an instance of the class + that represents the sizing grip of the dropdown. + + + + + Set theme name for the whole RadMessageBox + + + + + + Displays RadMessageBox with specified text. + + The text to display in the RadMessageBox. + One of the values + + + + Displays RadMessageBox with specified text and caption. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, and buttons. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, and buttons. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, and icon. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, and icon. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, icon and default button. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, icon and default button. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text and caption. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, and buttons. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, and buttons. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, and icon. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, and icon. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + that displays in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values that specifies right to left settings. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values that specifies right to left settings. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + that displays in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values. + + + + Gets the RadMessageBoxForm instance + + + + + Gets or set theme name for the whole RadMessageBox + + + + + Set the cursor that is displayed when the mouse pointer is over the control. + + + + + Set the message to be shown in windows taskbar. Default is false + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Set label text and size according to text string measure + + + + + + Calculate form size according to title text size + + width + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value indicating whether a beep is played when the message box is shown. + + + true if a beep is played; otherwise, false. + + + + + Sets the RadMessageBox Text + + + + + Sets the RadMessageBox caption text + + + + + RadMessageBox Icon + + + + + Gets ot sets the size of the buttons shown in the message box. + + + + + Provides Localization service for RadMessageBox + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + present RadGripElement + + + + + creacte child elements + + + + + OnMouseDown + + + + + + OnMouseUp + + + + + + OnMouseMove + + + + + + Grip image + + + + + Represents a RadStatusStrip. The RadStatusStrip class is a simple wrapper for the + RadStatusBarElement class. The RadStatusStrip acts + to transfer events to and from its corresponding + + + + + create RadStatusStrip instance + + + + + create child items + + + + + + fire the StatusBarClick event + + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + implement default Dock style + + + + + This property is not relevant for this class. + + + + + Gets or sets the visibility of the grip used to reposition the control. + + + + + Gets all the items that belong to a RadStatusStrip. + + + + + Set the RadStatusStrip's layout style + + + + + Gets the instance of RadStatusBarElement wrapped by this control. RadStatusBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadStatusStrip. + + + + + RadStatusStrip consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadStatusStrip consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + status bar click events + + + + + this event fired before Layout Style Changing + + + + + this event fired after LayoutStyle Changed + + + + + custom event handle for the click event + + + + + + + represent the RadStatusBarClickEventArgs object + + + + + create a instance of + + + + + + + present the clicked element + + + + + Represents a RadStatusBarElement. + + + + + create elements in the RadStatusBarElement + + + + + this event fired before Layout Style Changing + + + + + this event fired after LayoutStyle Changed + + + + + Gets a collection representing the "View changing" items contained in this statusbar. + + + + + get or set RadStatusBarElement orienatation + + + + + show or hide the Grip element in RadStatusStrip + + + + + Set the RadStatusStrip's layout style + + + + + enumerate RadStatusStrip LayoutStyles + + + + + represent the RadStatusBarPanelElement + + + + + create child items + + + + + Represents the StatusBarBoxLayout class + + + + + Registers the Proportion dependancy property of StatusBarBoxLayout + + + + + Registers the Orientation dependancy proeprty of StatusBarBoxLayout + + + + + Registers the StripPosition dependancy property of StatusBarBoxLayout + + + + + Gets the proportion based on a given element + + + + + + + arranges the children by a given criteria + + + + + + + Gets or sets strip orientation - it could be horizontal or vertical. + + + + + represents StripPosition enumeration + + + + Gets or sets the line width in pixels. + + + + Gets or sets the line orientation. Possible values are defined in the SepOrientation + enumeration. + + + + Gets or sets the line angle in degrees. + + + + Represents a numeric up/down control box. The RadSpinEditor class is a simple wrapper for the + RadSpinElement class. The RadSpinEditor acts + to transfer events to and from its corresponding + RadSpinElement. The + RadSpinElement which is essentially the + RadSpinEditor control may be nested in other telerik controls. + + + + + Initializes a new instance of the RadSpinEditor class + + + + + CreateChildItems + + + + + + increase or decrease value in the numeric up/dowm with step value + + + + + + Gets or sets a value indicating whether the user can give the focus to this control using the TAB key. + + + True if the user can give the focus to the control using the TAB key, otherwise false. The default is true. + + + + + set the default control size + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadSpinElement wrapped by this control. RadSpinElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSpinControl. + + + + + Gets or sets the mimimum value for the spin edit + + + + + Gets or sets the maximum value for the spin edit + + + + + Gets or sets the whether RadSpinEditor will be used as a numeric textbox. + + + + + Gets or sets whether by right-mouse clicking the up/down button you reset the value to the Maximum/Minimum value respectively. + + + + + Gets or sets a value indicating whether the border is shown. + + + + + Set or get the Step value + + + + + Set or get the Step value + + + + + Gets or sets a value indicating that value will revert to minimum value after reaching maximum and to maximum after reaching minimum. + + + + + Represents the decimal value in the numeric up/down + + + + + Represents the decimal value in the numeric up/down. The Value can be null + + + + + Gets or set how to interpret the empty text in the editor portion of the control + if true the empty value will set NULL in NullableValue property + + + + + Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to select values. + + + + + Gets or sets a value indicating whether the text can be changed by the use of the up or down buttons only. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the RadSpinEditor + + + + + Gets or sets the number of decimal places to display in the RadSpinEditor + + + + + Gets or sets a value indicating whether the RadSpinEditor should display the value it contains in hexadecimal format. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + Gets or sets a value indicating whether the control causes validation to be + performed on any controls that require validation when it receives focus. + + + true if the control causes validation to be performed on any controls requiring + validation when it receives focus; otherwise, false. + + + + + Occurs before the value of the SpinEdit is changed. + + + + + Occurs before the value of the SpinEdit is changing. + + + + + Occurs when the NullableValue of the SpinEdit is changed. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Initializes a new instance of the RadTextBoxBase class. + + + + + Represents RadTextBoxBase constructor + + + + + Initializes textbox's children + + + + + Appends text to the current text. + + + + + Empties the TextBox. + + + + + Undo to the previous text value before clear invocation. + + + + + Copies the text value to the clipboard. + + + + + Cuts the text value to the clipboard. + + + + + Deselects the text in the cotrol. + + + + + Retrieves the character that is closest to the specified location within the + control. + + + + + Retrieves the index of the character nearest to the specified location. + + + + + Retrieves the index of the first character of a given line. + + + + + Retrieves the index of the first character of the current line. This method + is not supported by MaskedTextBox. + + + + + Retrieves the line number from the specified character position within the + text of the control. + + + + + Retrieves the location within the control at the specified character + index. + + + + + Pastes the text value to the clipboard. + + + + + Pastes the string parameter to the clipboard. + + + + + Scrolls the contents of the control to the current caret position. + + + + + Selects the text in the TextBox from the start position inclusive to the end + position exclusive. + + + + + Selects the text in the TextBox. + + + + + Undoes the last edit operation in the text box. + + + + + Sets input focus to the control. + + true if the input focus request was successful; otherwise, false. + + + + + Activates the control. + + + + + Raises the AcceptsTabChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the ModifiedChanged event. + + + + + Raises the MultilineChanged event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Raises the TextChanging event. + + + + + Gets or sets whether the edit control is auto-sized + + + + Gets or sets the displayed text. + + + + Gets or sets + the font of the text displayed by the control. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline RadTextBox + control creates a new line of text in the control or activates the default button for + the form. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text + box control types a TAB character in the control instead of moving the focus to the + next control in the tab order. + + + + Gets value indicating whether undo is allowed. + + + + Gets or sets a value indicating whether the RadTextBox control modifies the + case of characters as they are typed. + + + + + Gets or sets a value indicating whether the selected text remains highlighted + even when the RadTextBox has lost the focus. + + + + + Gets or sets + the lines of text in multiline configurations. + + + + + Gets or sets + the maximum number of characters allowed in the text box. + + + + + Gets or sets a value indicating whether the RadTextBox control has been modified + by the user since the control was created or since its contents were last set. + + + + + Gets or sets + a value indicating whether this is a multiline TextBox control. + When the value is true, the AutoSize property is automatically changed to false and the user needs to take care of the height of this control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets a value indicating whether the null text will be shown when the control is focused and the text is empty. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Gets or sets + a value indicating whether the contents of the TextBox control can be + changed. + + + + + Gets or sets + which scroll bars should appear in a multiline TextBox control. + + + + + Gets or sets a value indicating the currently selected text in the + control. + + + + + Gets or sets + the number of characters selected in the text box. + + + + + Gets or sets + the starting point of text selected in the text box. + + + + + Gets or sets + a value indicating whether the defined shortcuts are enabled. + + + + Gets or sets how text is aligned in a TextBox control. + + + Gets the length of the text in the control. + + + + Gets or sets a value indicating whether a multiline text box control + automatically wraps words to the beginning of the next line when necessary. + + + + + Occurs when + the value of the AcceptsTab property has changed. + + + + + Occurs when + the value of the HideSelection property changes. + + + + + Occurs when + the value of the Modified property has changed. + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the ReadOnly property changes. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Occurs + when text is being changed. + + + + + The TextBox control that is hosted by default by RadTextBoxItem. + Children of this calss can be passed to RadTextBoxItem in order to customize the hosted text box. + + + + + Overload to automatically create the Graphics region before drawing the text prompt + + The Graphics region is disposed after drawing the prompt. + + + + Draws the NullText in the client area of the TextBox using the default font and color. + + + + + Gets or sets a color of the null text + + + + + Gets or sets a value indicating whether the null text will be shown when the control is focused and the text is empty + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + + Represents a RadTextBox. The RadTextBox control serves as a simple wrapper for + RadTextBoxElement class which in turn wraps + RadTextBoxItem Class. All logic and presentation + features are implemented in a parallel hierarchy of objects. For this reason, + RadTextBoxElement class may be nested in any + other telerik control, item, or element. RadTextBox acts to transfer events to and + from its corresponding instance of the + RadTextBoxElement class. + + + + + Represents RadTextBox's constructor + + + + + Initializes textbox's children + + + + + Gets the instance of RadTextBoxElement wrapped by this control. RadTextBoxElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTextBox. + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + Gets or sets a value indicating whether the text should appear as the default password character. + + + true if the text otherwise hould appear as the default password character; false. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Gets or sets a value indicating whether the control causes validation to be + performed on any controls that require validation when it receives focus. + + + true if the control causes validation to be performed on any controls requiring + validation when it receives focus; otherwise, false. + + + + + Represents a layout panel used in the RadCheckBoxElement. + + + + Gets or sets the offset between the check and body elements. + + The body can contain image and / or text the same way as all buttons can - + see + + + + Gets or set a value indicating the check alignment. + + + + RadScrollLayoutPanel is the layout panel that arranges viewport, horizontal and vertical scrollbars + and a spot that appears when both scrollbars are shown. + + + For more information about scrolling see the help for + RadScrollViewer class and for + IRadScrollViewport interace. + + + + + The spot between the ScrollBars when both are shown + + + + + Set visible and enabled state of the ScrollBars. + + + + + Make viewportOffset to be with correct value. + Set Value of ScrollBars using viewportOffset + + + + + Occurs when horizontal or vertical scrolling is performed + + + + + Occurs when the need for horizontal or vertical scrollbar has changed. + + + + + Occurs when property that affects the scrolling functionality is changed. + + + + + Occurs when the Viewport is changed + + + + + Gets the horizontal scrollbar + + + + + Gets the vertical scrollbar + + + + + Gets the retcangle that is between the two scrollbars when they both are shown. + + + + + Gets a value indicating whether can be performed horizontal scrolling operation + + + + + Gets a value indicating whether can be performed vertical scrolling operation + + + + Gets or sets the scroll state of the horizontal scroll bar. + State of type . Default value is AutoHide. + + + Gets or sets the scroll state of the vertical scroll bar. + State of type . Default value is AutoHide. + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets or sets the element which content will be scrolled if the scroll viewer has + not enough space for it. Very often the viewport is a layout panel that implements + . + + + Object of type RadElement which represents the content that could be scrolled if + necessary. Default value is null. + + + + + Gets or sets a value indicating whether physical or logical scrolling will be + used. + + Boolean value: when it is false logical scrolling will be used. + + + This property cannot be set to false if does not + implement . + + + Default value is true for ordinary viewports and false for viewports that + implement . + + + + + + Gets or sets the number of pixels to use when performing Line + Up/Down/Left/Right scrolling operation. + Still the scrolling position can be set with one pixel accuracy if the scroll + bar thumb is dragged. + + + + Gets the minimum possible scrolling position. + + Point which contains minimum values for scrolling in horizontal and vertical + direction. + + + + Gets the maximum opssible scrolling position. + + Point which contains maximum values for scrolling in horizontal and vertical + direction. + + + + + Gets or sets the scrolling position. The value is between + and . + + + Point which contains the current scrolling position in horizontal and vertical + direction. + + + + + + The only implementation of and base class of + all scrollable elements. + + This class contains one element called Viewport. In addition to the ordinary + property Size, Viewport has parameter called "extent size" which represents the + real size of its content. Extent size could be bigger as well as smaller than the + size of the scroll viewer. + + There are two types of viewports: ordinary elements and elements that implement + . In the first case extent size is the + size of the viewport itself. The scrolling is done on pixel basis and via + painting offset of the viewport (it is called physical scrolling). In the + second case the functions that are declared in + are called for getting extent size and + performing the scroll operation (this is called logical scrolling). + + + If the viewport implementation is of type it + still can be physically scrolled by setting the property + to true. + + + Physical scrolling has one parameter that can be set - + which represents the small change value + for the scrolling (i.e. the number of pixels for Line Up/Down/Left/Right). The + large change (Page Up/Down/Left/Right) is the corresponding size of the + viewable size of the viewport. + + + For more information about custom viewports and logical scrolling - see + . + + + Current scroll position can be get or set via the property + . In addition scrolling can be performed by calling the + methods that are implemented from . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value indicating whether the border is shown. + + + Gets or sets a value indicating whether the fill is shown. + + + + + + + + + + + + + Represents a menu. RadMenu can be horizontal or vertical. You can add, + remove, and disable menu items at run-time. It offers full theming support, + allowing you to easily construct a variety of stunning visual effects. You + can nest any other RadControl within a RadMenu. For + example, you can create a menu with an embedded textbox or combobox. + RadMenu is a simple wrapper for the RadMenuElement class. + + + + + Initializes a new instance of the RadMenu class. RadMenu can be horizontal or + vertical. You can add, remove, and disable menu items at run-time. It offers full + theming support, allowing you to easily construct a variety of stunning visual effects. + You can nest any other RadControl within a RadMenu. For + example, you can create a menu with an embedded textbox or combobox. + + + + + + + + + + + + + + + + + + + + + + + Gets or sets boolean value that determines whether + RadMenu handles the MDI menu functionality. + + + + + Indicates whether the menu items should be stretched to fill the available space. + + + + + Gets or sets whether the Alt or F10 keys can be used to highlight the menu. + + + + + Gets the instance of RadMenuElement wrapped by this control. RadMenuElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadMenu. + + + + + + + + + + + + + + + + + + + + + + + RadMenu consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadMenu consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + This enumerator describes the states can + jump into when processing mnemonics. + + + + + When the menu is in this state, that means that Mnemonics are visible. + + + + + When the menu is in this state, that means it listens for keyboard input and can process mnemonics. + + + + + When the menu is in this state, that means it can process keyboard input not associated with mnemonics. + This can be navigation input for instance. + + + + + When the menu is in this state, that means it will not process mnemonics. + + + + + other Telerik RadControls and Windows Represents a RadRibbonBar. The + RadRibbon bar visual appearance can be customized in numerous ways through themes. + Also you can nest other telerik controls in the ribbon bar chunks thus creating + intuitive interface for your applications. All of the application's functionality + is accessible from a single ribbon. The ribbon is divided into command tabs such as + Write, Insert, and Page Layout. When the users clicks on a command tab, they see + chunks such as Clipboard, Font, and Paragraph. Each chunk can hold an unlimited + number of controls including toolbars, comboboxes, and Forms controls. + + The RadRibbonBar class is a simple wrapper for the + RadRibbonBarElement class. All UI and + logic functionality is implemented in + RadRibbonBarElement class. RadRibbonBar + acts to transfer the events to and from its + RadRibbonBarElement class. + + + + + Initializes a new instance of the RadRibbonBar control class. + + + + + + + + + + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the small image list + + + + + Gets or sets the text of the control + + + + + Gets or sets a flag indicating whether the control causes validation + + + + + + + + + + + + + + Allows the user to navigate the control using the keyboard + + + + + Represent the Ribbon Help button + + + + + Represent the Ribbon Expand button + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets a value indicating the type of the fade animation. + + + + + + + + + + + Gets the QuickAccessToolBar element + + + + + + + + + + + + + + + + + + + + Gets the options menu button + + + + + Gets the exit menu button + + + + + + + + Gets the instance of RadRibbonBarElement wrapped by this control. RadRibbonBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRibbonBar. + + + + Gets or sets a value indicating whether the ribbon bar is expanded. + + + Gets or sets a value indicating whether the ribbon bar will be collapsed or expanded on ribbon tab double click. + + + + Gets or sets if the ribbon bar has minimize button in its caption + + + + + Gets or sets if the ribbon bar has maximize button in its caption + + + + + Gets or sets if the ribbon bar has close button in its caption + + + + + Gets the localization settings associated with this control + + + + + RadRibbonBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadRibbonBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Represents a ribbon bar button group. You can group buttons that are + logically related, for example, bold, italic, and underline buttons in + a text editor application. + + + + + Fires ItemChanged event. + + + + + Fires ItemClicked event. + + + + + + + + + + + Refreshes the items nested in the argument. + + + + + + + + + + + + + Gets the collection of items in the button group. + + + Gets or sets the orientation of the elements inside the button group: Horizontal or Vertical. + + + Gets or sets a value indicating whether the border is shown. + + + Gets or sets a value indicating whether the back color is shown. + + + + Gets the stack layout panel + that holds all elements. + + + + + Represents a Ribbon Bar group. The Group can contain telerik controls. You may + group related controls in groups; this gives the application intuitive interface. + + + + + Overrides object ToString() method. Returns the value of the Text property + prefixed with the "chunk:" string. + + + + Expands the chunk. + + + Collapses the chunk. + + + + Gets an instance of the class + that represents the group's outer border. + + + + + Gets an instance of the class + that represents the group's fill; + + + + + Gets an instance of the class + that represents the caption's fill; + + + + + Gets an instance of the class + that represents the body's fill; + + + + + Get or sets value indicating whether Dialog button is visible or hidden. + + + + Gets a collection of nested items. + + + Gets or sets the orientation of the items inside the chunk. Possible values are: Horizontal and + Vertical. + + + + Gets or sets the image that is displayed when the chunk is collapsed. + + + + + Get or Set collapsing order weight - bigger mean to start collapsing from this RadRibbonbarGroup + + + + + Occurs when Dialog Button is clicked + + + + + + A collection that stores objects. + + + + + + + + Initializes a new instance of the + . + + + + + + Initializes a new instance of the . + + Collection owner. + + + Fires when the collection is changed. + + + + Represents a ribbon bar element. The RadRibbonBarElement can be nested in other + telerik controls. Essentially RadRibbonBar class is a simple wrapper for + RadRibbonBarElement class. RadRibbonBar acts to transfer events to and from the its + corresponding instance of the RadRibbonBarElement. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An instance that contains the event data. + + + + Calls the OnCommandTabCollapsed event. + For internal use only. + + The event args associated with this event + + + + Calls the OnCommandTabExpanded event. + For internal use only. + + The event args associated with this event + + + + Gets or sets a boolean value determining whether the groups are collapsed according to the ribbon's size. + + + + + Gets or sets the Minimize button + + + + + Gets or sets the Maximize button + + + + + Gets or sets the Close button + + + + Gets a collection of the command tabs. + + + + Gets or the localization settings for this element + + + + + Gets a collection of contextual tab groups. + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Get or sets value indicating whether RibbonBar Expand button is visible or hidden. + + + + + Gets the collection of quick access menu items. + + + + Gets or sets the height of the quick access. + + + Gets or sets if the quick access toolbar is below the ribbon. + + + + Gets or sets the image of the start button placed in the top left corner. + + + + + Gets the application menu element + + + + + Gets the options menu button + + + + + Gets the exit menu button + + + + + Gets the collection of the start button menu item. + + + + + Gets the collection of the start button menu items which appear on the right. + + + + + Gets the collection of the start button menu DropDown which is displayed when the button has two columns. + + + + + Gets or sets the width of the start menu + + + + + Gets an instance of the TabStripElement which is used to display the tab items in the RibbonBarElement. + + + + + Gets the instance of the currently selected command tab. + + + + + Gets or sets a boolean value indicating whether the + RadRibbonBarElement is expanded or not. + + + + + Gets the QuickAccessToolBar + + + + + Gets the instance + that represents the fill of the ribbon's caption. + + + + + Gets the instance + that represents the border of the ribbon's caption. + + + + + Occurs just before a command tab is selected. + + + + + Occurs when a command tab is selected. + + + + + Occurs when a command tab is expanded by double clicking a collapsed command tab item. + + + + + Occurs when a command tab is collapsed by double clicking an expanded command tab item. + + + + + Gets an instance of the RibbonBarPopup class which represents the + RadRibbonBar popup. + + + + + Implements + the basic functionality of a horizontal scroll bar control. + + + + Implements the basic functionality for the scrolling. + + + This class can be used both for horizontal and for vertical scrolling through its + property . Only the + specialized children are put in the Toolbox: + and . + + + To adjust the value range of the scroll bar control set the + and + properties. To adjust the + distance the scroll thumb moves, set the + and + properties. To adjust the starting point of the scroll thumb, set the + property when the control is + initially displayed. + + + + + + Decrements the thumb position by the number of small steps given as a parameter. + The distance of a small step is determined by the + SmallChange property. + + + + + Increments the thumb position by the number of small steps given as a parameter. + The distance of a small step is determined by the + SmallChange property. + + + + + Decrements the thumb position by the number of large steps given as a parameter. + The distance of a large step is determined by the + LargeChange property. + + + + + Increments the thumb position by the number of large steps given as a parameter. + The distance of a large step is determined by the + LargeChange property. + + + + + Scrolls to the first position specified by the Minimum + property. + + + + + Scrolls to the last position specified by the Maximum + property. + + + + + Scrolls to the specified position. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadScrollBarElement wrapped by this control. RadScrollBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of both + RadHScrollBar and RadVScrollBar. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RadScrollBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadScrollBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This property is not relevant for this class. + + + + + + + + + + + Gets or sets the ScrollType. Possible values are defined in the ScrollType + enumeration: Vertical, and Horizontal. + + + + Implements the basic functionality for scrolling. + + + This class can be used both for horizontal and for vertical scrolling via its + property . In the Toolbox only the specialized + children are put: and + . + + + To adjust the value range of the scroll bar control, set the + and properties. To adjust + the distance the scroll thumb moves, set the and + properties. To adjust the starting point of the + scroll thumb, set the property when the control is + initially displayed. + + + + + + + + + + Retrieves the srolling parameters. + ScrollBarParameters Structure + + + Sets the given scroll parameters. + ScrollBarParameters Structure + + + + Simulate scrolling - just like the top / left button is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is decremented with (numSteps * SmallChange) + + + + Simulate scrolling - just like the bottom / right button is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is incremented with (numSteps * SmallChange) + + + + Simulate scrolling - just like the top / left area according the thumb is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is decremented with (numSteps * LargeChange) + + + + Simulate scrolling - just like the bottom / right area according the thumb is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is incremented with (numSteps * LargeChange) + + + + Simulate scrolling with positioning the thumb on its first position. + Unlike setting property Value this function fires scrolling events. + + + + + Simulate scrolling with positioning the thumb on its last position. + Unlike setting property Value this function fires scrolling events. + + + + Scrolls just like the thumb is dragged at given position + Position of the thumb (in screen coordinates). + + + + Occurs when the scroll thumb has been moved by either a mouse or keyboard + action. + + + + + Occurs when the property is changed, either by a + event or programmatically. + + + + + Occurs when a property that affects the scrolling is changed. + See for more information on which properties affect the scrolling. + + + + + Indicates whether invalid values should be clamped or an exception should be thrown + + + + + Gets the first button element of this scrollbar + + + + + Gets the second button element of this scrollbar + + + + + Gets or sets a value between 0.0 and 1.0 that indicates what part of the scrollable area + can be occupied by the thumb. If the value is 0.0 then the thumb should be with length 0 + but the property MinThumbLength will cause the thumb to be larger. + If the value is 1.0 the thumb takes the whole area between the two scrolling buttons. + Negative value means that the thumb length should be calculated automatically based on + Minimum, Maximum and LargeChange values. + + + + + + Gets or sets the minimum length of the scrolling thumb. See + for more information about thumb length. + + + + An integer value that gives the minimum thumb length. It is taken into account no + matter if the thumb length is calculated automatically or the thumb length is set + explicitly. + The thumb length could be smaller than MinThumbLength if there is no space in the scroll bar. + + + + + Gets the length of the scrolling thumb. Thumb length is the thumb's height + for vertical scroll bar and the thumb's width for horizontal scroll bar. + + + + + Controls the angle that the fill primitive will be rotated when switching from horizontal to vertical orientation + + + + Gets or sets the upper limit of the scrollable range. + A numeric value. The default value is 100. + + NOTE: The value of a scroll bar cannot reach its maximum value through user + interaction at run time. The maximum value that can be reached is equal to the + Maximum property value minus the + property + value plus 1. The maximum value can only be reached programmatically. + + + + Gets or sets the lower limit for the values of the scrollable range. + A numeric value. The default value is 0. + + The value of a scroll bar cannot reach its maximum value through user + interaction at run time. The maximum value that can be reached is equal to the + Maximum property value minus the + property + value plus 1. The maximum value can only be reached programmatically. + + + + + Gets or sets a numeric value that represents the current position of the scroll thumb on + the scroll bar. + + + A numeric value that is within the and + range. The default value is 0. + + + + + Gets or sets the value to be added to or subtracted from the + property when the scroll thumb is moved a small distance. + + A numeric value. The default value is 1. + + When the user presses one of the arrow keys, clicks one of the scroll bar + buttons or calls one of the LineXXX() functions, the Value property changes + according to the value set in the SmallChange property. + + + + + Gets or sets a value to be added to or subtracted from the + property when the scroll + thumb is moved a large distance. + + A numeric value. The default value is 10. + + When the user presses the PAGE UP or PAGE DOWN key, clicks in the scroll bar + track on either side of the scroll thumb, or calls one of the PageXXX() functions, the + Value property changes according to the value set in the LargeChange + property. + + + + + Gets or sets the scroll type - it could be horizontal + or vertical. + + + + + Gets the thumb element of this scrollbar + + + + + Gets or sets the scroll timer delay + + + + Represents a vertical scroll bar. + + + + Gets or sets the ScrollType. Possible values are + defined in the ScrollType enumeration: Horizontal and Vertical. + + + + + Represents a scrollbar button. There are two buttons in the implementation of the + RadScrollBar: FirstButton and SecondButton. + + + + Initializes a new instance of the ScrollBarButton class. + + + + Initializes a new instance of the ScrollBarButton class using + scrollButtonDirection. + + + + + Gets or sets a value indicating the button + direction defined in the ScrollButtonDirection enumeration: up, right, + buttom, and left. + + + + + Gets an instance of contained in the button. + + + + + Gets an instance of contained in the button. + + + + + Gets an instance of contained in the button. + + + + Represents a scrollbar thumb in the scroll bar. + + + + Gets a value indicating whether the thumb is in pressed state. + + + + + Gets or sets the image associated with the thumb + + + + + Gets an instance of contained in the thumb. + + + + + Gets the contained in the thumb. + + + + + RadWebBrowserElement extends RadWebBrowserItem adding border and background fill. + + + + + + + + + + + + + + + + + + + + + Gets the of the + + + + + + Gets the of the + + + + + + Gets or Sets value indicating whether the is visible + + + + + + RadWebBrowserItem hosts WebBrowser control to allow using it in the TPF structure. + + + + + Gets or Sets the Url that is to be browsed. + + + + + + Gets or Sets the HTML document content. + + + + + + Gets the HTML document title content. + + + + + + Fires when document loading has completed. + + + + + + Fires when file has been downloaded + + + + + + Fires when the browser has navigated to a new document and has begun loading it. + + + + + + + Fires before the browser navigates to a new document + + + + + + + Fires before new browser window is opened + + + + + + Fires before System.Windows.Forms.Control.KeyDown event when a key is pressed while focus is on this control. + + + + + Fires when the RadWebBrowserItem has updated information on the download progress of a document it is navigating to. + + + + + + Fires when the System Colors change + + + + + Gets or sets the zoom popup shadow + + + + + Gets or sets the animation frames count + + + + + Gets or sets the animation interval (in miliseconds) + + + + + Provides data for the ToolTipTextNeeded event used in ItemScroller + + + + + Initializes a new instance of the GridElementToolTipTextNeededEventArgs class. + + The tool tip. + The row index of the first visible item. + The first visible item. + The default tooltip text. + + + + Gets the item index of the first visible item. + + + + + Gets the item associated with this ToolTip. + + + + + Represent a interface that is traversable + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Specifies the mode in which an ItemScroller will scroll the items in its view. + + + + + Items are scrolled one at a time. The scrollbar maximum is equal to the number of the items in the view. + The scrollbar SmallChange is equal to 1 and each small increment or decrement will move the items in the view with one whole item. + + + + + Items are scrolled smoothly. The scrollbar maximum is equal to the sum of the heights of all the items in the view. + The scrollbar SmallChange is calculated automatically. Increments and decrements will move the items in the view with the actual value of the scrollbar. + + + + + Works in a similar way as Smooth with the difference that the view is updated only when the scrollbar thumb is released. A tooltip helps indicated the + position to which the view will be scrolled to. + + + + + Represent a navigating event handler raised by ItemScroller + + + The sender. + The e. + + + + Event arguments of ItemsNavigatingEventHandler + + Item + + + + Initializes a new instance of the class. + + The navigating item. + + + + Gets the item. + + + The item. + + + + + Gets or sets a value indicating whether the item should be skipped. + + + true if skip the item; otherwise, false. + + + + + Represent a generic scroll view element + + + + + Container element of + + + + + Gets or sets the element count. + + The element count. + + + + Gets or sets the color of the elements. + + The color. + + + + Gets or sets the secondary color of the elements. + + The secondary color. + + + + Gets or sets the inner radius. + + The inner radius. + + + + Gets or sets the radius. + + The radius. + + + + Gets or sets the initial start element angle. + + The initial start element angle. + + + + Gets or sets the rotation direction. + + The rotation direction. + + + + Gets or sets the element gradient percentage. + + The element gradient percentage. + + + + Gets or sets the element gradient percentage. + + The element gradient percentage. + + + + Gets or sets the element back color3. + + The element back color3. + + + + Gets or sets the element back color3. + + The element back color3. + + + + Gets or sets the element number of colors. + + The element number of colors. + + + + Gets or sets the current leading element angle. + + The current leading element angle. + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the last dot radius. + + The last dot radius. + + + + Gets or sets the line thickness. + + The line thickness. + + + + Checks if an angle is in given range(by given start and end angles) depending on the RotationDirection. + + The angle to check. + Start of range. + End of range. + + + + + Gets or sets a value indicating whether to expand and collapse the ring. + + Boolean. + + + + Gets or sets the sweep angle. + + The sweep angle. + + + + Gets or sets the minimal sweep angle. + + The minimal sweep angle. + + + + Gets or sets the outer ring sweep angle. + + The outer ring sweep angle. + + + + Gets or sets the width of the outer ring. + + The width of the outer ring. + + + + Gets or sets the background color of the outer ring. + + The outer ring background color. + + + + Gets or sets the inner ring sweep angle. + + The inner ring sweep angle. + + + + Gets or sets the inner ring start angle measured in degrees. + + The inner ring start angle. + + + + Gets or sets the width of the inner ring. + + The width of the inner ring. + + + + Gets or sets the background color of the inner ring. + + The inner ring background color. + + + + Gets or sets the distance between segments. + + + + + Represents accelerating dots moving in a line. + + + + + Gets a value indicating whether the WaitingDirection is vertical(Top or Bottom). + + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the acceleration speed. + + The acceleration speed. + + + + Gets or sets the distance between dots. + + The distance between dots. + + + + Gets or sets a value, indicating the distance(in percent) which each ball moves with slow speed. + + The slow speed range. + + + + Gets or sets the waiting direction. + + The waiting direction. + + + + Gets or sets the empty frames count between animation cycles. + + The delay between animation cycles. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the acceleration speed. + + The acceleration speed. + + + + Gets or sets the max speed sweep angle. + + The max speed sweep angle. + + + + Gets or sets the sweep angle dot travels before the end of animation cycle. + + The dot sweep angle life cycle. + + + + Gets or sets the distance between dots. + + The distance between dots. + + + + Gets or sets the empty frames count between animation cycles. + + The delay between animation cycles. + + + + Represents the content element of . + + + + + The waiting style property of + + + + + Clears all indicators and creates new, depending on the WaitingStyle value. + + + + + Gets the reversed direction. + + The direction. + + + + + Increments the offset of the indicator + + The value. + + + + Determines whether this instance is vertical. + + + true if this instance is vertical; otherwise, false. + + + + + Resets the waiting state of the indicator. + + + + + Updates the indicator stretch orientation. + + The indicator. + + + + Updates the vertical state property of the indicator. + + The indicator. + + + + Adds the indicator step. + + The step. + The index of the indicator. + + + + + Arranges the indeterminate indicator elements. + + The client rectangle. + + + + Calculates the indicator step. + + The client rectangle. + + + + + Gets the final size of the throbber indicator element. + + The element. + The client rectangle. + + + + + Gets the final size of the dash element. + + The element. + The client rectangle. + + + + + Moves the indicator element. + + The element. + The client rectangle. + The waiting direction. + + + + + Sets the elements visibility. + + The style. + + + + Sets the indicators visibility. + + The visibility. + + + + Sets the dash initial position. + + The element. + The client rectangle. + + + + + Updates the offset. + + The client rectangle. + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets an instance of the class + that represents the waiting bar text element + + + + + Gets an instance of the class + that represents the waiting bar separator element + + + + + Gets and sets the direction of waiting. + Range: Bottom, Left, Right, Top + + + + + Indicates whether the element is currently waiting + + + + + Gets or sets the style of the WaitingBarElement. + + + + + Returns true if WaitingStyle is Indeterminate, Throbber or Dash. + + + + + The RadWaitingBar class is a simple wrapper for the + RadWaitingBarElement class. + The latter implements all UI and logic functionality. + The RadWaitingBar class acts to transfer events to and from the + RadWaitingBarElement class. + RadWaitingBarElement can be + nested in other telerik controls. + + + + + Creates the waiting bar element. + + + + + + exclude WaitingBarElement from Serilization + + should serialize + + + + Starts the waiting animation. + + + + + Stops the waiting animation. + + + + + Resets the waiting indicator to initial position. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets the instance of RadWaitingBarElement wrapped by this control. RadWaitingBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadWaitingBar. + + + + + Sets the DefaultSize of RadWaitingBar + + + + + Gets and sets the image property of the indicator + + + + + Gets and sets the image index property of the indicator + + + + + Gets and sets the image key property of the indicator + + + + + Indicates whether the control is currently waiting + + + + + Indicates the orientation of the RadWaitingBar + + + + + Indicates whether the indicators are stretched horizontally + + + + + Indicates whether the indicators are stretched vertically + + + + + Sets the style of RadWaitingBar + + + + + Gets and sets the text of the control's textElement + + + + + Gets and sets the WaitingDirection of the RadWaitingBarElement + + + + + Gets and sets the size of the indicator in pixels + + + + + Gets and sets the speed of the animation. Higher value moves the indicator more quickly across the bar + + + + + Gets and sets the number of pixels the indicator moves each step + + + + + Shows text in RadWaitingBar. + + + + + Gets/Sets the control to associated it. RadWaitingBar will be shown in the middle of the associated control when started. + + + + + Gets the associated panel. + + + + + Starts control waiting + + + + + Ends control waiting + + + + + Represents a waiting bar element. It may be included in other telerik controls. + All graphical and logical functionality is implemented in RadWaitingBarElement. + + + + + The timer + + + + + The continue waiting + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Starts the waiting process + + + + + Stops the waiting process + + + + + Sets the indicator to its starting position depending on the WaitingDirection + + + + + Gets an instance of the class + that represents the waiting bar content element + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets an instance of the class + that represents the waiting bar text element + + + + + Gets an instance of the class + that represents the waiting bar separator element + + + + + Gets and sets the Image of the element's indicator + + + + + Gets and sets the ImageIndex of the element's indicator + + + + + Gets and sets the ImageKey of the element's indicator + + + + + Shows text in RadWaitingBarElement. + + + + + Indicates whether the indicators are stretched horizontally + + + + + Indicates whether the indicators are stretched vertically + + + + + Sets the style of the WaitingBarElement + + + + + Gets and sets the size of the indicator in pixels + + + + + Indicates whether the element is currently waiting + + + + + When set to vertical the RadWaitingBar WaitingDirection property is set to Bottom + When set to horizontal the RadWaitingBar WaitingDirection is property is set to Right + + + + + Gets and sets the direction of waiting, e.g. + the Right value moves the indicator from left to right + Range: Bottom, Left, Right, Top + + + + + Gets and sets the speed of the indicator + Greater value results in faster indicator + Range: [0, 100] + + + + + Gets and sets the step in pixels which moves the indicator + + + + + Occurs when waiting is started. + + + + + Occurs when waiting is stopped. + + + + + The state manager class of + + + + + Represents a collection of items. + + + + + Initializes a new instance of the class. + + + + + Represents waiting bar indicator element + + + + + Initializes the class. + + + + + Gets the separator element. + + + The separator element. + + + + + Gets a offset of the indicator. + + + + + The state manager class of . + + + + + The state manager class of + + + + + Represents 's text element + + + + + Represents separator element in . + + + + + Initializes the class. + + + + + Sets and gets the width of each separator line in pixels + + + + + Sets and gets the distance between two adjacent separator lines + + + + + Sets and gets the orientation of the separator element + + + + + Sets and gets the angle of rotation of all separator lines + + + + + Indicates whether separator lines should be drawn + + + + + Indicates whether a second set of separator lines should be drawn + + + + + Represents a collection of items. + + + + + Initializes a new instance of the class. + + +
+
diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.dll b/HexcalMC/bin/x64/Debug/Telerik.WinControls.dll new file mode 100644 index 0000000..9d11f51 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/Telerik.WinControls.dll differ diff --git a/HexcalMC/bin/x64/Debug/Telerik.WinControls.xml b/HexcalMC/bin/x64/Debug/Telerik.WinControls.xml new file mode 100644 index 0000000..510774e --- /dev/null +++ b/HexcalMC/bin/x64/Debug/Telerik.WinControls.xml @@ -0,0 +1,22380 @@ + + + + Telerik.WinControls + + + + + This interface represents a monitor which receives trace events from RadControls. You can implement it if you need to + receive trace events from the controls used in your application. + + + + + This method is called when an atomic feature is executed. + + The feature to be tracked. + + + + This method is called when a feature is initiated. + + The feature that was initiated. + + + + This method is called when a feature finishes execution. + + The feature that finished. + + + + This method is called when a feature is canceled. + + The feature that was canceled. + + + + Traces an error in a specified feature. + + The feature in which the error occurred. + The error that occurred. + + + + This method is called when a value connected with a specific feature is tracked. + + The feature that produced the value. + The value that was tracked by the feature. + + + + Gets or sets the monitor, which the controls report to. + + + + + Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed. + + + You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes the CollectionChanged event that must be raised whenever the underlying collection changes. + + + + + Occurs when the collection changes. + + + + + Moves the specified old index. + + The old index. + The new index. + + + + Adds the range. + + The items. + + + + Adds the range. + + The items. + + + + Begins the update. + + + + + Ends the update. + + + + + Defers the refresh. + + + + + + Defines possible reasons for a CurrentChanged notification from RadCollectionView. + + + + + The default reason for causing the event. + + + + + The event was caused by an Add operation. + + + + + The event was caused by a Move operation. + + + + + The event was caused by an EndUpdate operation. + + + + + The event was caused by a Sync operation. + + + + + String + + + + + Number + + + + + DateTime + + + + + Boolean + + + + + Null + + + + + Other + + + + + Used when exporting null value. + + + + + General format + + + + + Displays anything as text (i.e. Left aligned without formatting) + + + + + Displays numeric values with two fixed decimals + + + + + Displays numeric values with two fixed decimals and digit grouping + + + + + Displays numeric values as percentage values + + + + + Displays numeric values in scientific notation + + + + + Displays numeric or date values as short date format + + + + + Displays numeric or date values as short date format + + + + + Displays numeric or date values as medium date format + + + + + Displays numeric or date values as long date format + + + + + Displays numeric or date values as a combination of the short date and short time patterns, separated by a space. + + + + + Displays numeric or date values as a combination of the long date and long time patterns, separated by a space. + + + + + Displays numeric date as currency + + + + + Displays numeric or date values in a long time format + + + + + Displays numeric or date values in a medium time format + + + + + Displays numeric or date values in a short time format + + + + + Custom defined format + + + + + The cell content type + + + + + Cell does not contain anything + + + + + Cell contains a string + + + + + Cell contains a number + + + + + Cell contains a DateTime value + + + + + Cell contains a bool value + + + + + Cell contains a formula + + + Cell contains a formula which cannot be resolved + + + + + Gets or sets the type of the grid row. + + The type of the row. + + + + Gets or sets the index of the grid row. + + The index of the row. + + + + Gets or sets the type of the grid column. + + The type of the column. + + + + Gets or sets the index of the grid column. + + The index of the column. + + + + Gets or sets the cell style info. + + The cell style info. + + + + This creates a linear gradient depending on number of colors needed + + + + + this.editor.Position = savePosition; + + Horizontal offset that will be set as new Matrix position + Vertical offset that will be set as new Matrix position + + + + Enum listing the export formats supported by RadSpreadProessing. + + + + + XLSX format + + + + + PDF format + + + + + CSV format + + + + + Txt format + + + + + Enum listing the export formats supported by RadSpreadStreamProessing. + + + + + XLSX format + + + + + CSV format + + + + + Enum listing the different options when exporting to a file + + + + + Export as new sheet in existing file + + + + + Export in new file or override existing file + + + + + Load expression items list from embedded in Telerik assembly xml source + + + + + Load expression items list + + Xml file path + + + + Load expression items list + + + + + + Sets the first page as the current page. + + true if the operation was successful; otherwise, false. + + + + Sets the last page as the current page. + + true if the operation was successful; otherwise, false. + + + + Moves to the page after the current page. + + true if the operation was successful; otherwise, false. + + + + Requests a page move to the page at the specified index. + + true if the operation was successful; otherwise, false. + The index of the page to move to. + + + + Moves to the page before the current page. + + true if the operation was successful; otherwise, false. + + + + Gets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Occurs when the IPagedCollectionView.PageIndex has changed. + + + + + Occurs before the IPagedCollectionView.PageIndex is changed. + + + + + Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change. + + true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false. + + + + Gets a value that indicates whether a page index change is in process. + + true if the page index is changing; otherwise, false. + + + + Gets the zero-based index of the current page. + + The zero-based index of the current page. + + + + Gets or sets the number of items to display on a page. + + The number of items to display on a page. + + + + Gets the total number of items in the source collection. + + The total number of items in the source collection, or -1 if the total number is unknown. + + + + Gets or sets the tag. + + The tag. + + + + Determines whether [contains] [the specified value]. + + The value. + + true if [contains] [the specified value]; otherwise, false. + + + + + Copies to. + + The array. + The index. + + + + Indexes the of. + + The value. + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Use the StyleBuilderReadOnly attribute to mark properties that should appear as readonly when edited in the Visual + Style Builder application + + + + + This attribute should be used on classes which will be present in the Visual Studio toolbox (i.e. the ones that should also have a attribute). + + + + + Creates a new instance of the ToolboxCategory attribute with the specified title. + + The title of the category where the control will be placed + + + + Theme manager Component is used to load user-defined themes for RadControls in an application. + Use the LoadedThemes property to add new team source files. Themes load immediately when correct + property values specified and last for the life time of the application. After a theme is loaded + it can be used by the corresponding types of controls placed on any Form of the application. + + + + + ThemeSource is used to load user-defined themes for RadControls in an application. + Themes load immediately when correct property values specified and last for the life + time of the application. After a theme is loaded it can be used by the corresponding + types of controls placed on any Form of the application. ThemeSource object are generally + used by ThemeManager component placed on a Form + + + + + Base for all TPF classes. Implements WPF-like property system with different value sources. + Provides public interface for getting, setting value or re-setting property value. + + + + + Represents a basic object which implements IDisposable interface. + + + + + Gets the current bit state for the object, defined by the provided key. + + + + + + + Applies the specified boolean value to the BitVector of the object. + + + + + + + Notifies the object for a change in its bit state. + + + + + + + + Releases all resources associated with this object. + + + + + Performs the actual Dispose logic. + + + + + + Performs the core resources release logic. + + + + + + Disposes all MANAGED resources - such as Bitmaps, GDI+ objects, etc. + + + + + Releases any UNMANAGED resources used by this object. + NOTE: If you declare some unmanaged resources in your class, + you should override its finalizer and put disposing logic there also. + + + + + Gets the RadBitVector64 structure that holds all the bit states of the object. + + + + + Provides a simple list of delegates. + + + + + Determines whether the object is in a process of being disposed of. + + + + + Determines whether the object is already disposed. + + + + + Replaces the default property descriptors of properties of the object in order to perform Rad-Object specific + tasks like checking ShouldSerialize and RadProperty-DefaultValue... + + + + + + + + + + + + Removes all references to external property modifiers such as + property bindings, style settings and animations. + + + + + Allows PropertyChanging and PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Gets the RadPropertyValue structure that holds information + about the specified property's effective value for this instance. + May be null if no effective value is recorded. + + + + + + + Applies the provided value as an override + of the Default value provided by the specified property's metadata. + + + + + + + + Marks the current PropertyValue entry for the specified property as "Set at design-time". + This is used by our custom code-dom serializer to determine which properties needs to be persisted. + + + + + + Applies the specified value as Local for the desired property + and raises the flag IsLocalValueSetAtDesignTime for that property. + All design-time direct property modifications (e.g. item.Text = "Item1") + should be done through this method for the property to be properly serialized. + If a property is modified through a property grid, the custom property descriptor will automatically apply this logic. + This method is used internally. + + + + + + + Retrieves the current value for the specified property. + + + + + + + Applies the provided value as Local for the specified property. + + + + The result of the operation. + + + + Resets the current value of the specified property. + This method will remove any effective value modifier + (such as style or animation setting) for the specified property. + + The RadProperty that should be reset. + The result of the operation. + + + + Resets the current value of the specified property using the provided flags. + + The RadProperty that should be reset. + Additional flags that specify which effective modifiers should be reset. + The result of the operation. + + + + Forces re-evaluation of the current value for the specified property. + + + The result of the operation. + + + + Gets the source of the current value for the specified property. + + + + + + + Gets the registered property with the specified name. + + + + + + + Performs the core value update logic. + + + The result of the operation. + + + + Performs the core logic of updating property value. + + The property value structure, holding property information. + Additional modifier, like IPropertySetting + The actual new value to be set, valid for Local and DefaultValue sources. + Specifies the source of the provided new value. + The result of the operation. + + + + Resets the specified property value, using the provided reset flags. + + + + The result of the operation. + + + + Allows inheritors to provide custom default value. + + + + + + + + Allows inheritors to force a coersion of the current calculated value for the given property. + + The property value. + The current caluclated value of the property. + Null if no coersion is needed. + + + + Determines whether the property defined by the provided property descriptor should be serialized. + + + + + + + Checks needed conditions to perform property update. + + + + + + + Performs the following logic: + 1. Compares oldValue and newValue and returns ValueUpdateResult.NotChanged if they are equal. + 2. Raises the PropertyChanging notification. If the event is canceled returns ValueUpdateResult.Canceled. + 3. Raises PropertyChanged notification and returns ValueUpdateResult.Updated. + + + + + + The result of the operation. + + + + Determines whether the object can raise PropertyChanging and PropertyChanged notifications. + Current implementation checks whether the object is disposing or is already disposed of. + + + + + + + Gets the animation (if any) attached to the current property. + + + + + + + Gets notified for a change in an animated property. + + The property which is currently animated. + + + + Binds the specified property to a property of the provided binding source object. + + Our property that is about to be bound. + The object to which source property belongs. + The property to which we will bind. + Additional options, specifying the binding operation. + + + + Removes the binding for the specified property. + + + The result of the operation. + + + + Gets notified that the specified object has bound to a property of ours. + + The instance that has bound the specified property. + + + + + Gets notified that the specified object has unbound itself from a property of ours. + + + + + + + Notifies a binding source that a change occured in a two-way bound property. + + + + + + + Gets notified for a change in an already bound external property. + + + + + + Detaches binding reference from the binding source. + + + + + + Registers a style setting for this instance. + + + + + + Called when element style condition changes. This method is used internally. + + + + + + Called when element style condition changes. This method is used internally. + + + + + + Searches up in the chain of InheritanceParents for a value for the specified property. + + The property to examine. + + + + + Raises the event. + + + + + + Raises the event. + + + + + + Raises the PropertyChanged event. + + The name of the property. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Determines whether the specified property may be canceled. + + The metadata associated with the property change. + + + + Occurs when a property of an object changes. + Note: if a property which is not a RadProperty changes, + the developer is responsible for firing this event by using the + API. + + + + + Occurs when a property of a RadObject changes. + + + + + Occurs prior to property of a RadObject changes. + + + + + Gets a collection containing property values. + + + + + Gets the RadObject which is treated as the parent from which inheritable properties are composed. + + + + + Determines whether the element is in design mode. + + + Gets or sets a value indicating whether design mode is active. + + + + + Gets or sets a Filter instance, used to filter the ICustomPropertyDescriptor.GetProperties collection. + + + + + Gets the RadObjectType which is associated with this system type. + + + + + Gets or sets the BindingContext for the object. + + + + + Loads the theme from the file resource specified and registers it into ThemeResolutionService. Thais method is called + immediately when correct ThemeLocation and StorageType are specified. + + + + + Indicates whether the specified theme was loaded successfully. + + + + + Gets value indicating the error message if Theme was not loaded successfully. + + + + + Gets or sets the full resource name if StorageType is Resource. Example: "MyNamespace.MyThemeFileName.xml". + If the StorageType specified is File, then the value of this property should represent the full or relative file path, + accessible by the application. The "~" sign can be used to substitute the application executable path. + Eg. "C:\MyApp\MyThemeFileName.xml" or "..\..\MyThemeFileName.xml" or "~\MyThemeFileName.xml" + + + + + Gets or sets the owner theme manager component. Generally used by Form's designer. + + + + + Gets or sets File or Resource type of storage for the theme file + + + + + Gets a value indicating whether property values are valid + + + + + Represents + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of the. + + + + Owner component + + + + + + Initializes a new instance of the based on another . + + + + A from which the contents are copied + + + Owner component + + + + + + Initializes a new instance of the containing any array of objects. + + + + A array of objects with which to intialize the collection + + + Owner component + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Defines the theme storage type. + + + + + Indicates that the theme is contained in a external file. + + + + + Indicates that the theme is contained as a resource. + + + + + Represent the ColorChangedEventArgs class + + + + + Represents event arguments for the + %ColorChanged:Telerik.WinControls.CaptureBox.ColorChanged% event. + + + Represents the changed color. + + + + + Represents event arguments for the + event. + + + Represents the changed color. + + + + + Modes the RadColorPicker can be in + + + + + This class is used to hold the event arguments + for the CustomColorsConfigLocationNeeded event of the CustomColors control. + + + + + Creates an instance of the CustomColorsEventArgs class. + + The location of the config file. + The name of the config file. + + + + Gets or sets the file name of the configuration file. + + + + + Gets or sets the path where the configuration file will be stored. + + + + + Represents color in HSL color space. + + + Used for color blending operations, defined in HSL color space which are more precise than in RGB. + HSL colors are used by theming and painting sub-systems of RadControls. + + + + + H Channel value + + + + + S Channel value + + + + + L Channel value + + + + + RGB color value + + + + + Gets or sets color'a alpha chanel level in terms of argb color. Used mainly for conversion from/to ARGB color values. + + + + + Wraps the functionality provided by the color picker + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Shows or hides the basic colors tab + + + + + Gets or sets the active mode of the color tabs + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides the professional colors tab + + + + + Shows or hides the custom colors panel + + + + + Shows or hides the hex color textbox + + + + + Allows or disallows editing the hex value + + + + + Allows or disallows picking colors from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the OK Button is clicked + + + + + Fires when the Cancel Button is clicked + + + + + Gets the color selector + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Gets or sets the active mode of the color tabstrip + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides whe professional colors tab + + + + + Shows or hides the custom colors tab + + + + + Shows or hides the hex color value + + + + + Allows or disallows editing the HEX value + + + + + Allows or disallows color picking from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the selected color has changed + + + + + Represents a dialog that can be used to select color with rich UI and extended functionality. + + + + + Resets the properties of a color dialog box to their default values. Replaces the underlaying ColorDialogForm + with new instance + + 1 + + + + Shows modal dialog box. + + + + true if the dialog box was successfully run; otherwise, false. + + + A value that represents the window handle of the owner window for the common dialog box. + + + + Gets the instance of RadColorDialogForm, which incorporates various settings of the + underlaying color selection Form and ColorSelector user control. + + + + + Gets or sets the icon displayed for this dialog. + + + + Gets or sets a value indicating whether control's elements are aligned + to support locales using right-to-left fonts. + One of the values. + The default is . + The assigned + value is not one of the values. + + + + + Gets or sets the selected color. References to SelectedColor of . + + + + + Gets or sets the selected color. References to SelectedColor of . + + + + + Gets the user-defined colors. References to CustomColors of . + + + + + Represents the method that will handle the ColorChanged event. + + + + + + + + + + + + + + + + + + + Fires when the selected color changes + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + + + + Represents a RadControl. RadControl is an abstract class and is base class for + all Telerik controls. + + + + + Returns the value for some ambient properties like BackColor, ForelColor, Font, etc. + + + + + + + Updates after a change in an ambient property like BackColor, ForeColor, Font, etc. + + + + + + Creates the input behavior instance. Allows inheritors to provide custom input implementations. + + + + + + Loads the element tree. While not loaded, no layout operations are allowed upon the tree. + By default, the tree will be loaded when the control is displayed for the first time. + + + + + Loads the element tree using the specified desired size. + + + + + + This method is used internally! + + + + + + Determines whether the BackColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Notifies that the control is about to be visualized. + + + + + + Processes a focus request from the specified element. + + The element that requested the focus. + True if focus is approved, false otherwise. + + + + Processes a capture request from the specified element. + + The element which requested the capture. + + True if the capture request is approved, otherwise false. + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + Suspends layout during initialization. + + + Resumes layout. + + + + Raises the PropertyChanged event + + The name of the property + + + + Fires the ZoomGesture event. + + The arguments for the ZoomGesture event. + + + + Fires the RotateGesture event. + + The arguments for the RotateGesture event. + + + + Fires the PanGesture event. + + The arguments for the PanGesture event. + + + + Fires the TwoFingerTapGesture event. + + The arguments for the TwoFingerTapGesture event. + + + + Fires the PressAndTapGesture event. + + The arguments for the PressAndTapGesture event. + + + + Enable firing gesture events of the specified type. + + The type of gesture events to enable. + + + + Disable firing gesture events of the specified type. + + The type of gesture events to disable. + + + + Checks whether the 's theme is defined by the control. + + + If true is returned the ThemeResolutionService would not not set any theme to the element + to avoid duplicating the style settings of the element. + + The element to should be checked. + true if the control defines theme for this element, false otherwise. + + + + Replaces the default style group for specific element. + + The style group to replace. + The element on which this style should apply. + An instance of is successfull. + + + + Strips all html tags of the text set to the control and returns only the plain text. + + Plain text stripped of any html tags. + + + + Determines whether an element from this element tree may be displayed in the EditUIElements dialog. + + + + + + + Method used by control Code Dom serializer to access element in the collection of RootElement. + + + + + + + Determines whether the specified RadProperty should be serialized. + + + + + + + Determines whether an element may be edited via the EditUIElements dialog at design-time. + + + + + + + This method is used internally! + + The default size for this control + + + + This method is used internally! + + + + + + + Gets or sets a value indicating whether the RadControls scaling logic will be used when the application is run in a high DPI environment. + + + + + Determines whether the control is properly loaded. + + + + + Set or get the default value for UseCompatibleTextRendering property. + + + + Gets the input behavior for the control. + + + Gets the RootElement of the control. + + + Gets or sets padding within the control. + A representing the control's + internal spacing characteristics. + + + + Gets or sets control's preferred theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets value indicating whether the control is styled through theme + + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usage of the control. + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Gets or sets the image scaling size. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets or sets the size that is the upper limit that GetPreferredSize can + specify. + + + + + Gets or sets the size that is the lower limit that GetPreferredSize can + specify + + + + + Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus. + + + + + Gets or sets the SmallImageList that contains the small images which are displayed when there's not enough space. + + + + Gets or sets the small image scaling size. + + + + Determines whether the control is currently displayed on the screen. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets or sets the Font of the control. This is actually the Font property of the root element. + + + + + Occurs when a RadItem instance inside the RadControl requires ToolTip text. + + + + + Occurs prior the ScreenTip of a RadItem instance inside the RadControl is displayed. + + + + Fires when the theme name is changed. + + + Fires when the control is initialized. + + + + Occurs when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Occurs when a zoom gesture was sent by a touch input device. + + + + + Occurs when a rotate gesture was sent by a touch input device. + + + + + Occurs when a pan gesture was sent by a touch input device. + + + + + Occurs when a two-finger-tap gesture was sent by a touch input device. + + + + + Occurs when a press-and-tap gesture was sent by a touch input device. + + + + + Gets or sets a value indicating whether the Gestures functionality is enabled. + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disabled for this control. + + + + + Gets or sets the Analytics Name associated with this control. + By default the Control Name property is logged. + If you want to customize the information which will be logged for this control + set this property to a preferred value. + + + + + Gets or sets a value indicating whether the RadControls Accessible custom object is enabled. + + + + + Gets or sets a value indicating whether the CodedUI Tests functionality is requested from external program such a Narrator. + + + + + Gets or sets a value indicating whether the CodedUI Tests functionality is enabled. + + + + + Gets or sets the default value for EnableCodedUITests property. + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets a value indicating whether the gradient editor is in loading state. This property is used internally. + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the values + + + + + Fires when the color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the different positions where an item can be docked + + + + + Defines element selector types. + + + + + Selects an element based on its type. + + + + + Selects an element based on its class property. + + + + + Selects an element based on its visual state property. + + + + + Defines the different sign styles + + + + + plus/minus sign + + + + + up/down arrow + + + + + image + + + + + Triangle + + + + + TextWrapExpand Modes + + + + + Indicates Indeterminate style + + + + + Indicates Throbber style + + + + + Indicates Dash style + + + + + Shows a line of moving dots. + + + + + Shows a ring of moving dots. + + + + + Shows a ring, composed of lines. + + + + + Shows a ring, composed of segments. + + + + + Shows a ring, composed of dots. + + + + + Shows a rotating fading ring. + + + + + Shows two rotating rings in opposite directions. + + + + + [true] if the event has been handled and should not be proccessed further, [false] otherwise. + + + + + The type of the gesture that has occured. + + + + + [true] if this is the beggining of the gesture, [false] otherwise. + + + + + [true] if this is the end of the gesture, [false] otherwise. + + + + + [true] if the event was caused by inertia, [false] otherwise. + + + + + The location of the gesture. + + + + + Initializes a new instance of the class. + + The index of the requested page. + + + + Gets the index of the requested page. + + The index of the requested page. + + + + The possition offset according to the previous pan event. + + + + + A direction vector that indicates the direction of the velocity. + + + + + The offset of the tapping finger according to the pressing finger. + + + + + The rotation angle in radians. + + + + + The zoom factor according to the previous zoom gesture event. + + + + + The center of the zoom gesture. + + + + + Exposes methods and properties for a concrete property setttings used in StyleSheets and Themes. + PropertySetting can customize the current value of any RadPropertry of any RadElement instance. + + + + + Retrieves the current value of the property. + + + + + + + + + + + Applies the value to the element given as a parameter. + + + the element that the property value is applied to. + + + + + Unapply the property to the element given as a parameter. + + + the element that the property value is unapplied to. + + + + + Gets or sets the property itself. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + + + + + + Represents the item which could be added to an ItemsCollection and can be selected, deleted or moved during VS design time. + + + + + + + + Extends RadElement and adds visual properties common to all elements. + + + + + RadElement class represents the smallest unit in a RadControl that can be painted or that has a layout slot in a RadControl. + Generally each RadCotnrol is composed of a tree of RadElements. The tree has as a root the and + children property. + + + Elements nesting also represents the visual nesting. Elements are painted starting + from the root to the leaves of the tree. the leaves are most often primitive + elements like, text, fills, borders and so on. Elements that are descendants of + LayoutPanel are responsible for arranging their children in the available space + and/or for notifying the parent that the layout space is not enough to expand. + Layout behavior of each element can be adjusted using the properties: + , , + (old layouts), and and for + the new layouts. + RadElement is the base class of all elements that need to take advantage of TPF features, like + property inheritance, layouts, styling + with the Visual Style Builder application. Each property change of a RadElement or + of its inheritance parent would result in calling the method OnPropertyChange, + which can be overridden in order to customize the response to changes of any + RadPoperty. + + + + + Defines a visual element which may be displayed using system skins (UxTheme semantic). + + + + + Gets the VisualStyleElement which represents the current state of this instance for Windows XP. + + + + + + Gets the VisualStyleElement which represents the current state of this instance for Windows Vista. + + + + + + Determines whether to use system skins or not. + If this is false, the default TPF rendering will be used. + If this is true and there is no system skin enabled, TPF rendering will be used. + + + + + This constant is used internally. + + + + + Creates the child elements and sets their locally applied values as Default + + + + + Temporary suspends UpdateReferences method. + Useful when modifying the element tree without changing the actual element's references. + + + + + Resumes previously suspended UpdateReference method. + + + + + Initializes member fields to their default values. + This method is called prior the CreateChildItems one and allows for initialization of members on which child elements depend. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + A callback used by the owning RadControl to notify the element for a first-time screen visualization. + + True to notify entire subtree for the load process, false otherwise. + + + + This method is used internally. + + + + + + Allows inheritors to provide custom load logic. + + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Unloads the element if it was previously loaded on an element tree. + + Reference to the element tree from which we are in a process of unload. + + + + + Executes the core unload logic. Allows inheritors to perform additional action while the element is unloading itself. + + Reference to the element tree from which we are in a process of unload. + + + + Notifies that the element has been successfully unloaded from an element tree. + Allows inheritors to provide custom logic at this stage. + + Reference to the element tree from which the element has been unloaded. + + + + The element gets notified for a change in its current ElementTree member. + + + + + + A callback used by the owning RadControl to notify the element for the beginning of a disposing process. + + + + + Applies the specified RadElement instance as parent of the current instance. + + + + + + Notifies for a change in the Parent value. + + The previous parent element (if any) + + + + Updates the local references using the provided element tree. + + + True to update inheritance chain, false otherwise. + True to update children also, false otherwise. + + + + This method is used internally! + + + + + + + Updates the state of the element when reference update is suspended and we have a change in our parent. + + + + + + Performs an update after a change in the Children collection. + + The element associated with the change. + + + + + Resets all layout related fields and puts the element in its initial layout state. + + + + + + Determines whether there is an ancestor in this element tree that is not visible. + + + + + + This method is used internally. + + + + + + Temporary suspends layout operations upon this element. + + + + + Temporary suspends layout operations upon this element. + + True to suspend children also, false otherwise. + + + + Sets the bounds of the element to the specified rectangle (locating and + size). + + + + + Sets the bounds of the element to the specified rectangle (X, Y, width and + height). + + + + + Gets the rectangle which surrounds the rotated element (if having AngleTransform property set). + + The size of the element which is accepted as a parameter (for example when returned from GetPreferredSize). + + + + + Retrieves a point in screen coordinates taking as a parameter a point which is in + element coordinates (this means that the top left corner of the element is with + coordinates 0, 0). + + + + + Retrieves a rectangle in screen coordinates taking as a parameter a rectangle + which is in element coordinates (this means that the top left corner of the element is + with coordinates 0, 0). + + + + + This method is used internally. + + + + + + Arranges the to its final location. + The element must call the Arrange method of each of its children. + + The size that is available for element. + The rectangle occupied by the element. Usually . Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion. + In this method call to the Arrange method of each child must be made. + + + + Measures the space required by the + + Used by the layout system. + + The size that is available to the . The available size can be infinity (to take the full size of the element) + The minimum size required by the element to be completely visible. Cannot be infinity. + In this method call to the Measure method of each child must be made. + + + + Gets the arrange rectangle, valid for this element. + + + + + + + Determines whether the element can perform layout operation. + + + + + + Determines whether the element is currently in valid state. + That is having a valid RadElementTree reference and being in either Constructed or Loaded state. + + + + + + Gets the offset that is caused by scrolling. The difference between this method and + PositionOffset property is that GetScrollingOffset() takes into account RightToLeft. + + The scrolling offset for this element. + + + + Returns the bounds of the area that should be invalidated when the element is invalidated. + + The bounds to invalidate. + + + + This method is executed when a property which affects the absolute position of the element has been changed. + + + + + This method is used internally. + + + + + Provides a routine to paint element's content when system skin appearance is desired. + + + + + + Virtual layer between PaintChildren() and Paint(). + Can be overridden to fully customize element hierarchy paint. + Used for painting disabled items. + + The graphics object. + The rectangle which has been invalidated. + The angle (in degrees) to which the current element is rotated. This angle is a sum of all AngleTransform properties of this element's parents. + + + + + + This method is used internally. + + + + + + + + + + Gets the VisualStyleElement instance that describes the skin appearance for the element when the current OS is Windows XP. + + + + + + Gets the VisualStyleElement instance that describes the skin appearance for the element when the current OS is Windows Vista. + + + + + + Performs initialization when the element is first-time painted using system skin. + + + + + Gets the rectangle where skin background should be painted. + Defaults to BoundingRectangle. + + + + + + The element gets notified for a change in the UseSystemSkin property. + This method will recursively notify all descendants for the change. + + + + + + Determines whether we should paint system skin. + + + + + + Composes a value which determines whether the element should use system skins when painting. + This method will traverse the element and control tree and will end with the global UseSystemSkin property. + + + + + + Maps a style property to another property. This method is used + to map corresponding properties of LightVisualElement + instances and instances. + + An instance of the + class that represents the property to map. + + An instance of the + class which represents the mapped property. If no property is found, + the method returns null + + + + Gets the IFilter instance that may be used to filter the properties, treated as Stylable for this element. + + + + + + Resets the Style modifier of each registered property. + + + + + Resets the Style modifier for the specified property. Will reset all properties if null is passed. + + + + + Adds a property change behavior to the list of behaviors of the element. + + + Behaviors can be used to specify how an element should respond when a certain element property changes. + Behaviors are used internally by stylesheets when applying to an hierarchy of elements. + + behavior instance - should not be null (or Nothing in VB.NET) + + + + + + list of behaviors + + + + Used internally to support RadControl infrastructure. This method is not intended for use directly from your code. + + + + + + This method is used internally. + + + + + This method is used internally. + + + + + Gets a list of child elements using the type to filter the results. + + + + + + + Searches up the parent chain and returns the first parent with the provided ThemeEffectiveType. + + + + + + Searches up the parent chain and returns the first parent of type T. + + + + + + + Gets a boolean value that determines whether a given element + resides in the element hierarchy of this element. + + An instance of the + class which is checked. + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of type T. + + + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of type T. + + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of the specified Type. + + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided predicate. + + The mode used to traverse the subtree. + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided predicate. + + The filter that defines the match criteria. + The mode used to traverse the subtree. + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided filter. + + The filter that defines the match criteria. + The mode used to traverse the subtree. + + + + + Gets a list with all the descendants that match the provided filter. + + + + + + + + Gets a list with all the descendants that match the provided filter. + + + + + + + + Provides a routine which enumerates all ancestors up in the parent chain of this element, which match the provided Filter. + + + + + + + Provides a routine which enumerates all ancestors up in the parent chain of this element, which match the provided predicate. + + The predicate used to filter parents. + + + + + Forces an update in the z-ordered collection after a change in the Children collection. + + + + + + + Allows enumerating of this element's children, using the specified options. + + + + + + + Sends this element to the beginning of its parent's z-ordered collection. + + + + + Sends this element at the end of its parent's z-ordered collection. + + + + + Method used by control Code Dom serializer to access items in the collection + + + + + + + Get a value indicating whether the element is a direct or indirect child of specified parent element + + Parent to test + true if the element is child of parent, false otherwise + + + + This method sets the focused state of an element. It is used internally. + + The new focused state. + + + + This method is used internally! + + + + + Raises the Click event. + + + + + Raises the DoubleClick event. + + + + + Raises the MouseWheel event. + + + + + + This method is used internally! + + + + + + Updates the ContainsMouse property. The notification may be received from a child whose IsMouseOver property has changed. + + + + + Updates the ContainsFocus property. The notification may be received from a child whose IsFocused property has changed. + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + Invalidates all Ambient (inherited) properties down in the parent chain. + Called when the parent for this element changes. + + True to update children also, false otherwise. + + + + The object gets notified for a parent property change. + + + + + + Add the ElementTree property if we are in the context of RadControlSpy. + + + + + + + Tunnels and bubbles on MouseClick on current element + + + + + Tunnels and bubbles on MouseDoubleClick on current element + + + + + Tunnels and bubbles on MouseDown on current element + + + + + Tunnels and bubbles on MouseUp on current element + + + + + Tunnels and bubbles on MouseWheel on current element + + + + + Routed event key for ChildElementAdded event. Bubbles when element is added + + + + + Routed event key for ParentChanged event. Tunnels when element parent changes + + + + + Tunnels when bounds changed in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + Tunnels and bubbles when changes the current element + + + + + Tunnels when the Enabled property changes in order to notify any children that should take special actions. + + + + + Tunnels when the winforms control has been changed. + + + + + Used by RadControlSpy to display certain hidden properties in the Property Grid. + + + + + Get or sets the maximum size to apply on an element when layout is calculated. + + + + + Property key of the ZIndex Property. + + + + + This field is used internally. + + + + + Gets the current state of the element. + + + + + Gets the layout manager of the element. Will be null until the element is loaded on a visual scene. + + + + + Gets the element desired size. + + + + + Gets a value indicating whether the layout is suspended or not. + + + + + Represents the rectangle which surrounds the element bounds after the rotation caused by setting the AngleTransform property to some degree. The rectangle is in parent element's coordinates. + + + + + Represents the rectangle which surrounds the element bounds after the rotation caused by setting the AngleTransform property to some degree. The rectangle is in control coordinates. + + + + + This property is used internally. + + + + + Gets the level of this element in the ElementTree it currently resides. + + + + + This event occurs after printing the element. It is used internally. + + + + + Gets or sets the mode that describes the usage of system skinning (if available). + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets a value indicating whether the element can have its own style with style conditions. + + + + + Defines whether stylesheet rules should be applied for this element and its children, or only for this element + + + + + Gets a reference to the tree object, that contains information about the scene where the element is currently visualized. + + + + + Gets the collection of elements that are child elements in the element + tree. + + + + + Enumerates entire subtree of elements (using depth-first approach), + starting from this one as a root. + + + + Gets a reference to the parent element in the visual element tree. + + + + + + + Gets the count of all elements, which visibility is not ElementVisibility.Collapsed. + + + + + Occurs when the mouse pointer rests on the element. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + Occurs when the mouse pointer is over the element and a mouse button is pressed. + + + + + Occurs when the mouse pointer is over the element and a mouse button is released. + + + + + Occurs when the element is clicked. + + + + + Occurs when the element is double-clicked. + + + + + Occurs when the mouse pointer enters the element. + + + + + Occurs when the RadItem has focus and the user scrolls up or down the mouse wheel + + + + + Occurs when the mouse pointer leaves the element. + + + + + Occurs when the children collection of the element is changed. + + + + + Determines whether the element or one of its descendants currently contains the keyboard focus. + + + + + Specifies whether the Item should handle MouseOver, MouseMove and related mouse events. + + + By default only elements that inherit RadItem can process mouse input. + + + + + Gets or sets a value indicating whether the element should pass the handled mouse + event to the first parent element which has the + property set to true. + + + + + Gets or sets a value indicating whether the element size will be calculated + automatically by the layout system. Value of false indicates that the element's size + will not be changed when calculating the layout. + + + + + Gets or sets a value corresponding to the bounding rectangle of the element. + Location and/or Size portions of the bounds may be calculated automatically based + on the current and + settings. + + + + + Gets or sets the location of the element based on the element parent rectangle. + Corresponds to .Location + + + + + Gets or sets the size of the element which is the height and width of the visual + rectangle that would contain the graphics of the element. Size corresponds to + element's Bounds.Size. When the AutoSize property is set + to true setting the Size property to some value has no effect. + + + + + Gets or sets the border thickness of the element. This thickness is included into the + element's bounding rectangle. + + + + + Gets or sets the padding sizes of the element. The paddings are included into the + element's bounding rectangle. + + + + + Gets or sets a value corresponding to the margins of the element. Margins are not + included into the element's bounding rectangle. + + + + + Gets or sets the preferred location of the element if its size is less than its + parent size. + + + + + Gets or sets the way the element should calculate its , when + the property is set to true. + + + + + Gets or sets a value indicating the way element will fill its available size when + parent element is calculating element size and location. + + + + + Gets or sets a value indicating whether the element can respond to user + interaction. + + + By default, if element is currently selected when Enabled set to false, next element would be selected. + Values inherits from Parent.Enabled. + When a scrollable control is disabled, the scroll bars are also disabled. + For example, a disabled multiline textbox is unable to scroll to display all the lines of text. + + + + + Gets or sets a value indicating whether the element can receive input + focus. + + + + + Gets a value indicating whether the element has input focus. + + + + + Gets or sets a value indicating whether the mouse has entered the bounds of the + element or any of its sibling elements in the parent RadItem. + + + + + Gets or sets a value indicating whether the mouse has entered the bounds of the + element. + + + + + Gets or sets a value indicating whether the mouse button has been pressed when + inside the bounds of the element. + + + + + Provide for use within TelerikLayoutEngine. + + + + Gets or sets a value indicating whether the element should be painted. + + Children visibility is not be affected. + + + + Gets or sets a value indicating element visibility. + + Setting this property affects also the children of the element. Collapsed means the element and its children would not be painted and would not be + calculated in the layout. + This property has no effect in design-time on objects. + + + + Gets a value indicating if the element is visible. + + + Represents the element unique name. + + + + Gets or sets a string value indicating the element visual class name. It's used + when a stylesheet has been applied to this element. + + + Style sheets contain groups of property settings categorized by element type and/or class, thus + element "class" is used to determine whether certain style rule would be applied over an element. + Generally this property is assigned by the control developer but it can be changed design time or runtime if + certain element is decided to have different style class. + + + + + Indicates whether the painting of the element and its children should be + restricted to its bounds. + + + + + Gets or sets an instance of the Shape object of an element. The shape of the + element is both responsible for clipping the element's children and for providing its' + border(s) with custom shape. + + + Value of null (or Nothing in VisualBasic.Net) indicates that element has rectangular (or no) shape. + Shape is an object that defines the bounding graphics path of an element. Graphics clip is always applied when an element has shape. + Shape is considered when painting the border element, and when hit-testing an element. + Some predefined shapes are available, like or . + offers a way to specify element's shape with a sequence of points and curves using code + or the design time + . + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Get or sets the maximum size to apply on an element when layout is + calculated. + + + + + Gets of sets the order of painting an element compared to its sibling elements. Greater ZIndex means an element would be + painted on top of other elements amongst its siblings. ZIndex changes the order of the elements in the list returned by + . + + + + + Gets or sets the direction of flow of the elements and whether elements are aligned to support locales + using right-to-left fonts. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets the RadImageShape that describes the background of the element. + + + + + Determines whether the element or one of its descendants currently contains the mouse. + + + + + Gets or sets a value indicating the scale transform factors, when painting the + element and its children. + + + + + Gets or sets the rotation transform angle used when painting the element and its + children. + + + + + Gets or sets the offset of the origin of the coordinate system used when + painting the element and its children. + + + TrnslateTransform of the graphics is used prior to painting the element and after painting element children, + to reset the transformation + + + + + Gets or sets whether the properties of this element should be serialized + + + + + Gets or sets whether the element should be serialized in designer + + + + + Gets or sets whether the children of this element should be serialized + + + + Gets or sets a value indicating maximum rendered frames per second. + + + + Gets a value indicating if theme finished applying + + + + + Gets a value indicating if a theme should be applied + + + + + Gets a value indicating whether the AngleTransform should use + the center of the object as origin for the transformation. + + + + + Specifies when the Click event should fire. + + + + + Gets or sets a value indicating whether the DoubleClick event will fire for this item. + + + + + Determines whether mouse will be captured upon MouseDown event. + + + + + This property is used internally! + + + + + Gets or sets the stylesheet associated with the element. + + + Stylesheets provide dynamic property settings for elements' RadProperties organized into groups, each regarding a + certain state of the element. State means a property has certain value. + Style of an element can affect also element children. + Generally element style is set through control theme, which is a holder for various styles for many controls. + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Fires when the font is changed. + + + + + Gets or sets the DefaultSize. + + + + + Gets or sets the forecolor. Color type represents an ARGB color. + + + + + Gets or sets the backcolor. Color type represents an ARGB color. + + + + + Gets or sets the font. Font type defines a particular format for text, including + font face, size, and style attributes. + + + + + Gets or sets the smoothing mode of an element. Smoothing mode enumeration defines + possible values. + + + + + Gets or sets the opacity of an element. Value 0.0f indicates that the element is completely transparent, + 1.0f means the element is not transparent (the default value). + + + + + This constant is used internally. + + + + + Gets or sets a value indicating whether design mode is active. + + + + + Gets the collection of data-binding objects for this IBindableComponent. + + + + + Exposes methods and properties for draggable elements. + + + + + Determines that the element is availble for dragging. + + An instance of which represents a dragging start location. + True if the object can be dragged, otherwise false. + + + + Gets the assosiated with dragged element data context. + + + + + + Gets the image used by the DragDropService to indicate that the element is being dragged. + Usually this is a snapshot of the element itself. + + + + + + Determines whether this instance may enter drag operation. + + + + + Exposes methods for drop targets + + + + + Completes drag-drop operation of instance of the IDraggable over the specified target. + + An instance of which represents a drop location. + An instance of the IDraggable which is dragged over the target. + + + + + + The current position of the mouse cursor + An instance of the IDraggable which is dragged over the specified target. + True if the operation finished successfully, otherwise false. + + + + Drop operations to occur in the drop target. Called when the cursor first enters the specified target. + + The current position of the mouse cursor + An instance of the IDraggable which is dragged over the target. + + + + Special behavior when the drag operation leaves the specified target. + + The old position of the mouse cursor + An instance of the IDraggable which is dragged over the target. + + + + Determines whether the instance allows for drop operations. + + + + + Occurs when the complete keyboard combination for a registered RadShortcut is triggerred. + + + + + + Occurs when a registered shortcut's keyboard combination is partially complete. + E.g. if we have Ctrl+C+V and Ctrl+C is pressed the event will be raised. + + + + + + This constant is used internally. + + + + + Raises the KeyDown event. + + + + + + Raises the KeyPress event. + + + + + + Raises the KeyUp event. + + + + + Raises the event. + + A that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Paints the border highlight. + + The screen RAD graphics. + + + + Determines if the item displays any text. + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + Add the VisualState property if we are in the context of RadControlSpy. + + + + + + + Calls the appropriate gesture event according to the GestureType property of the event arguments. + + The event arguments. + + + + Fires the TwoFingerTapGesture event. + + The arguments for the TwoFingerTapGesture event. + + + + Fires the PressAndTapGesture event. + + The arguments for the PressAndTapGesture event. + + + + Fires the PanGesture event. + + The arguments for the PanGesture event. + + + + Fires the RotateGesture event. + + The arguments for the RotateGesture event. + + + + Fires the ZoomGesture event. + + The arguments for the ZoomGesture event. + + + + Determines whether the element may be dragged. + + + + + + + Gets the context, associated with a drag operation. + + + + + + Gets the image to be used as a hint when this element is being dragged. + + + + + + Core logic when a drag-drop is performed over this element. + Allows inheritors to provide their own implementations. + + + + + + + Determines whether the element may be treated as a drop target during drag-and-drop operation. + + + + + + + + Allows the element to perform additional action upon mouse entering its bounds upon a drag-and-drop operation. + + + + + + + Allows the element to perform additional action upon mouse leaving its bounds upon a drag-and-drop operation. + + + + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + The value of the Class property of the child element for which + the override stands. (e.g. ButtonFill, ButtonBorder, etc.) + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + The type of the child element for which + the override stands. (e.g. typeof(FillPrimitive), typeof(BorderPrimitive), etc.) + + + + Resets all overrides for the theme settings of a given property. + + The property to reset overrides for. + + + + Resets all overrides for the theme settings of a given property and a given state. + + The property to reset overrides for. + The state to reset. + + + + Resets all theme override settings for this element. + + + + + Suspends the apply of theme settings. + + + + + Resumes the apply of theme settings. + + + + + Gets the available visual states for this item. Visual states can be combined using "." (dot). + + A list with the available visual states for this element. + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Occurs when the TextOrientation property value changes. + + + + + Occurs when the FlipText property value changes. + + + + + Gets or sets whether the item should use the default way for painting the item when disabled (making it gray) or whether + the disabled appearance should be controlled by the theme. + + + + + Specifies the orientation of the text associated with this item. Whether it should appear horizontal or vertical. + + + + + Specifies the text associated with this item will be flipped. + + + + + Gets or sets the text associated with this item. + + + + + Gets a value indicating whether the item can be selected. + + + + + This property is used internally. + + + + + This property is used internally. + + + + + Occurs when the RadItem has focus and the user presses a key down + + + + + Occurs when the RadItem has focus and the user presses a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when a zoom gesture was sent by a touch input device. + + + + + Occurs when a rotate gesture was sent by a touch input device. + + + + + Occurs when a pan gesture was sent by a touch input device. + + + + + Occurs when a two-finger-tap gesture was sent by a touch input device. + + + + + Occurs when a press-and-tap gesture was sent by a touch input device. + + + + + Gets or sets string representing the current visual state of the Item which is used by themes to determine the appearance of the item and its child elements + + + + + Determines whether the element may be dragged by a RadDragDropService instance. + + + + + Determines whether the element may accept a drop operation. + + + + + Gets the collection of all RadShortcut instances registered with this item. + + + + + Gets or sets the description that will be reported to accessibility client applications. + + + + + Gets or sets the name of the control for use by accessibility client applications. + + + + + Gets or sets the accessible role of the item, which specifies the type of user interface element + of the item. + + + + + This property is used internally! + + + + + Gets or sets a value indicating whether the Analytics functionality is enable or disbale for this item. + + + + + Initializes a new instance of the class. + + + + + Gets or sets value indicating whether Office 2007 UI compliant screen tip sizing should be used + + + + + Override this property and provide custom screentip template description in DesignTime + + + + + Gets the screen tip actual template type. Used for component serialization. + + + + + Gets a value indicating screen tip preset size. + + + + + Sets the screntip element to be wrapped by this control. + + An instance of RadScreenTipElement + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the method that will handle a CollectionChanged event. + + the %sender:System.Collections.CollectionBase% of the event + the %event arguments:Telerik.WinControls.UI.CollectionChangedEventArgs" + + + + Represents event data for the CollectionChanged event. + + + + + Initializes a new instance of the CollectionChangedEventArgs class using the + target, the index of the item, and the item's change operation. + + + + + + + + Gets or sets a value specifing the target. + + + + + Gets or sets a value indicating the index in the collection of the changed item. + + + + + Gets or sets a value indicating the items chnage operation. + + + + + Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed. + + + + + + Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed. + + + You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes the CollectionChanged event that must be raised whenever the underlying collection changes. + + + + + Occurs before the collection changes. + + + + + Notifies clients that a property value is changing. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the ObservableCollection class. + + + + + Initializes a new instance of the ObservableCollection class that contains elements copied from the specified list. + + + + + + Overridden. Removes all items from the collection. + + + + + Overridden. Inserts an item into the collection at the specified index. + + + + + + + Moves the item at the specified index to a new location in the collection. + + + + + + + Moves the item at the specified index to a new location in the collection. + + + + + + + Suspends event notification. + + + + + Resumes event notification. + + + + + Resumes event notification. + + + + + Calls the NotifyListenersCollectionChanged method with the provided arguments if not in a batch update. + + + + + + Raises the CollectionChanged event with the provided arguments. + + + + + + Calls the NotifyListenersCollectionChanging method with the provided arguments if not in a batch update. + + + + + + Raises the CollectionChanging event with the provided arguments. + + + + + + Overridden. Removes the item at the specified index of the collection. + + + + + + Overridden. Replaces the element at the specified index. + + + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + A instance containing event data. + + + + Raises the PropertyChanging event + + The name of the property + + + + Raises the NotifyPropertyChanging event + + A instance containing event data. + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs before an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + true to indicate the collection has completed update; otherwise false. + + + + + Occurs when a property of an object changes. + Calling the event is developer's responsibility. + + + + + Occurs before a property of an object changes. + + + + + Interface to the node + + + + + Interface to the tree + + + + + Add item + + + + + Add or get item + + + + + Find item + + + + + Delete item by key + + + + + Delete specific item + + + + + Clear the tree + + + + + Get synchornization root + + + + + Interface to the tree + + + + + Get first node + + + + + Get last node + + + + + Get next node + + + + + Get prior node + + + + + Get number of nodes in the tree + + + + + Interface to the tree which supports direct access to the items + + + Interface to the tree + + + + + Get item by order index + + + + + Get index by item + + + + + Parameters of ordered node + + + + + Node's rank + + + + + Number of sub nodes + + + + + Ordered node + + + + + Node of the red-black tree + + Key type + Node's parameter + + + + Set parent node + + + + + Set left node + + + + + Set right node + + + + + Update reference count + + + + + Node parameters + + + + + Constructor + + + + + Copy from other node + + + + + Parent node + + + + + Left node + + + + + Right node + + + + + Key value of the node + + + + + Colour of the node + + + + + Constructor + + + + + Set parent node + + + + + Set left node + + + + + Set right node + + + + + Update reference count + + + + + Copy from other node + + + + + Basic RBTree with ordering + + Operation like Add and Remove are an O(2logN) operations. + Operation Find is O(logN) operation. + + + + + Base class for the tree. + Based on the Damian Ivereigh implementation + Support for the multi-trees has been added. + Do not use this class directly. Use RBTree, RBMultiTree, RBOrderedTree and RBOrderedMultiTree classes + + Key type + Node type + Node parameter type + + + + Add item + + + + + Add or get item + + + + + Find item + + + + + Delete item by key + + + + + Clear + + + + + Delete item by key + + + + + Get first node + + + + + Get last node + + + + + Get next node + + + + + Get prior node + + + + + Comparator + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Add new key into the tree + + This operation is O(logN) operation + + In case the key is already in the tree + + + + Add new key into the tree or get existing node + This operation is O(logN) operation + + + + + Remove key from the dictionary + This operation is O(logN) operation + + + + + Remove all items + + + + + Remove node from the dictionary + This operation is O(1) operation + + + + + Find key in the dictionary + This operation is O(logN) operation + + + + + Get first node + This operation is O(logN) operation + + + + + Get last node + This operation is O(logN) operation + + + + + Get next node + This operation is O(logN) operation + + + + + Get previous node + This operation is O(logN) operation + + + + + Get enumerator + + + + + Get enumerator + + + + + Balance tree past inserting + + + + + Create new node + + + + + Go trough tree and find the node by the key. + Might add new node if node doesn't exist. + + + + + Rotate our tree Left + + X rb_left_rotate(X)---> Y + / \ / \ + A Y X C + / \ / \ + B C A B + + N.B. This does not change the ordering. + + We assume that neither X or Y is NULL + + + + + Rotate our tree Right + + X Y + / \ / \ + A Y leftArrow--rb_right_rotate(Y) X C + / \ / \ + B C A B + + N.B. This does not change the ordering. + + We assume that neither X or Y is NULL + > + + + + Return a pointer to the smallest key greater than x + + + + + Return a pointer to the largest key smaller than x + + + + + Delete the node z, and free up the space + + + + + Restore the reb-black properties after a delete + + + + + + Is tree unique + + + + + Object can be used for synchronization + + + + + Root of the tree + + + + + Number of nodes in the tree + + + + + Get collection object for this + + + + + Adapter implementing collection interface + + + + + Referenced tree + + + + + Constructor + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Get item by order index + This operation is O(logN) operation + + + + + Get order index of item + This operation is O(logN) operation + + + + + Get item by order index + + + + + Get index by item + + + + + Unique ordered RBTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Non-unique RBMultiTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Tree node + + + + + Constructor + + + + + Unique RBTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Non-unique RBMultiTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Generic tree enumerator + + Node type + Key type + >Node parameter + + + + Tree + + + + + Current item + + + + + + Constructor + + + + + Move to next element + + + + + Reset enumeration + + + + + Dispose object + + + + + Get current element + + + + + Get current element + + + + + Generic tree value's enumerator + + Node type + Key type + Node parameter + + + + Tree + + + + + Current item + + + + + Constructor + + + + + Move to next element + + + + + Reset enumeration + + + + + Dispose object + + + + + Get current element + + + + + Get current element + + + + + Colour of the node + + + + + Red + + + + + Black + + + + + Represents a read-only data collection that provides notifications when the original has changed. + + + + + + Initializes a new instance of the with an instance of a /> + + + + + + Fires the CollectionChanged event. + + + + + + Fires the PropertyChnaged event. + + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Gets the type. + + + The type. + + + + + Gets or sets the session identifier. + + + The session identifier. + + + + + Gets the instalation key. + + + The instalation key. + + + + + Converts an ISO 8601 time/date format string, which is used by JSON and others, + into a DateTime object. + + + + + + + Converts a DateTime object into an ISO 8601 string. This version + always returns the string in UTC format. + + + + + + + Ensures a two-digit number with leading zero if necessary. + + + + + + + Ensures a three-digit number with leading zeros if necessary. + + + + + + + The ASP.NET Ajax team made up their own time date format for JSON strings, and it's + explained in this article: http://msdn.microsoft.com/en-us/library/bb299886.aspx + Converts a DateTime to the ASP.NET Ajax JSON format. + + + + + + + Converts an ASP.NET Ajax JSON string to DateTime + + + + + + + Converts a Unicode character to a string of its ASCII equivalent. + Very simple, it works only on ordinary characters. + + + + + + + Returns null if no DTE instance is available. + + EnvSessionManager or Null depending on whether DTE is available. + + + + Tries to add the item to the collection. If it already exists it won't be added. + + The item to be added. + + + + Represents a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the pointer on the control. + Provides extended functionality by removing the necessity to have a control in the element tree + + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + An containing the duration, in milliseconds, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + A containing the offset, in pixels, relative to the upper-left corner of the screen, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + The horizontal offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + The vertical offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + The horizontal offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + The vertical offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + An containing the duration, in milliseconds, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + A containing the offset, in pixels, relative to the upper-left corner of the screen, to display the . + An containing the duration, in milliseconds, to display the . + + + + Hides this instance. + + + + + Repository for Telerik-related resources. Not for general use. + + + + + Represents a rectangle with chamfered corners. + + + + Represents element shape. Base class for specialized shapes such as + EllipseShape, RoundRectShape, Office12Shape, etc. + + + + Retrieves the shape of the element. GraphicsPath represents a series of connected + lines and curves. + + + + + Retrieves the contour of the element0. GraphicsPath represents a series of + connected lines and curves. + + + + Creates path using a rectangle for bounds. + + + Creates path using a rectangle for bounds. + + + + Mirrors the GraphicsPath. Used in RightToLeft mode. + + + + + Serializes properties. Required for serialization mechanism of telerik + framework. + + + + + Deserializes properties. Required for the deserialization mechanism of telerik + framework. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The width of the chamfer. + + + + Initializes a new instance of the class. + + The width of the chamfer. + The angle of the chamfer in degrees. + + + + Initializes a new instance of the class. + + The width of the chamfer. + The angle of the chamfer in degrees. + if set to true the top left corner will be chamfered. + if set to true the bottom left corner will be chamfered. + if set to true the bottom right corner will be chamfered. + if set to true the top right corner will be chamfered. + + + + Creates path using a rectangle for bounds. + + + + + + + Serializes properties. Required for telerik serialization mechanism. + + + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + + Gets or sets the width of the chamfer. + + + + + Gets or sets the angle of the chamfer in degrees. The value must be between 0 inclusive and 90 exclusive. + + + + + Gets or sets a value indicating whether the top left corner of the shape will be chamfered. + + + true if the top left corner is be chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the top right corner of the shape will be chamfered. + + + true if the top right corner is be chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the bottom right corner of the shape will be chamfered. + + + true if the bottom right corner is chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the bottom left corner of the shape will be chamfered. + + + true if the bottom left corner is chamfered; otherwise, false. + + + + + Creates circle shape in the middle of the provided rectangle. + + + + + Creates circle shape in the middle of the provided rectangle. + + + + + Creates circle region in the middle of the provided rectangle. + + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Should snap to the line or curve + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + The default constructor sets the following default values: + FieldWidth = 1.0f; + SnapRelative = 0.2f; + SnapDelta = 0.2f; + SnapType = SnapTypes.Relative; + + + + + Set the snap type to be one of the following: + SnapTypes.Relative - snap distance is relative to the FieldWidth + + SnapTypes.Fixed - snap distance is fixed + + + + + Width of a single box in the snap grid. + It's value cannot be less than or equal to zero. + + + + + Sets/Gets the snap distance for fixed type snapping. + Does not activate fixed type snapping. + + + + + + Sets/Gets the relative snap distance. + Does not activate relative type snapping. + + + + + + Gets the precached snap distance. + Doesn't need to be equal to any of the SnapFixed or SnapRelative properties. + + + + Represents custom shape of an element. + + + Initializes a new instance of the CustomShape class. + + + Creates a path using a ractangle for bounds. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets a List of Shape points. + + + Gets or sets a Rectangle indicating the dimension of the shape. + + + + Represents a shape editor control. + + + + + Draws grid lines in the specified rectangle with the specified color + + + + + + + + Translates a rectangle in accordance with the offsets due to scrolling + + + + + + + Translates a point in accordance with the offsets due to scrolling + + + + + + + Updates the bounds of the drawable area + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents a shape point. + + + + + Represents a base class of the ShapePoint class. + + + + + Initializes a new instance of the ShapePointbase class. + + + + + Initializes a new instance of the ShapePoint class using X and Y + coordinates. + + + + + Initializes a new instance of the ShapePoint class using a Point structure. + + + + + + Initializes a new instance of the ShapePoint class using an instance of the + ShapePointBase class. + + + + + + Sets the X and Y coordinates of the shape point. + + + + + + + Sets the point position from a Point structure. + + + + + + Retrieves a Point structure corresponding to the point position. + + + + + + + + + + + + + Retrieves a string representation of the ShapePointBase class. + + + + + + Gets or sets a float value indicating the X coordinate of the shape point. + + + + + Gets or sets a float value indicating the Y coordinate of the shape point. + + + + + Gets or sets a value indicating the anchor style. + + + + + Gets or sets a boolean value indicating whether the shape point is locked. + + + + + Initializes a new instance of the ShapePoint class. + + + + + Initializes a new instance of the ShapePoint class from + the X and Y coordinates of the point. + + + + + + + Initializes a new instance of the ShapePoint class from a Point structure. + + + + + Initializes a new instance of the ShapePoint class using a ShapePoint instance. + + + + + + Retrieves the line direction of the line that passes through the instance + point and the point given as an argument. + + + + + + + Creates a Bezier curve between the current point and the point given as a + parameter. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the first control point. + + + + + Gets or sets the second control point. + + + + + Exposes the line direction. + + + + + Exposes the line position. + + + + + Indicates horizontal position. + + + + + Indicates vertical position. + + + + + The default constructor sets the following default values: + FieldWidth = 1.0f; + SnapRelative = 0.2f; + SnapDelta = 0.2f; + SnapType = SnapTypes.Relative; + + + + + Set the snap type to be one of the following: + SnapTypes.Relative - snap distance is relative to the FieldWidth + + SnapTypes.Fixed - snap distance is fixed + + + + + Width of a single box in the snap grid. + It's value cannot be less than or equal to zero. + + + + + Sets/Gets the snap distance for fixed type snapping. + Does not activate fixed type snapping. + + + + + + Sets/Gets the relative snap distance. + Does not activate relative type snapping. + + + + + + Gets the precached snap distance. + Doesn't need to be equal to any of the SnapFixed or SnapRelative properties. + + + + Represents donut like shape. + + + + Creates donut-like path. Overrides the method defined in its base class - + ElementShape. + + + + Represents element shape converter. + + + Represents ellipse shape. + + + + Creates ellipse shape. Overrides the method defined in its base class - + ElementShape. + + + + + Defines possible modes to be used when rendering an image. + + + + + Image is painted without any modification. + + + + + Image is stretched within the paint rectangle. + + + + + Image is stretched by the X axis and tiled by the Y one. + + + + + Image is stretched by the Y axis and tiled by the X one. + + + + + Inner image segment is tiled while all others are stretched. + + + + + Image is centered within the paint rectangle. + + + + + Image is centered by the X axis and stretched by the Y one. + + + + + Image is centered by the Y axis and stretched by the X one. + + + + + Image is centered by the X axis and tiled by the Y one. + + + + + Image is centered by the Y axis and tiled by the X one. + + + + + Image is tiled within the paint rectangle. + + + + + Image is flipped by the X axis and tiled within the paint rectangle. + + + + + Image is flipped by the X and Y axis and tiled within the paint rectangle. + + + + + Image is flipped by the Y axis and tiled within the paint rectangle. + + + + + Gets the segment associated with this object. + + + + + Gets or sets the image part associated with this object. + + + + + Represents an image which may be divided in 9 different segments where only the inner one is stretched within the paint rectangle. + + + + + Gets or sets the RotateFlipType value that defines additional transform on the rendered image. + + + + + Gets or sets the interpolation mode to be applied on the device context when image is rendered. + + + + + Determines which segments from the image will be painted. + + + + + Determines whether the image will be rendered using segments. + + + + + Gets or sets the mode to be used when image is painted. + + + + + Gets or sets the image to be rendered. + + + + + Gets or sets the string representation of the + + + + + Gets or sets the opacity of the rendered image. Valid values are within the interval [0, 1]. + + + + + Gets or sets the Padding structure that defines the margins of the segmented image. + + + + + Gets or sets the Padding structure that defines offset when the image is rendered to the destination rectangle. + + + + Represents the shape of the MS Office forms. + + + Greates the path. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets whether the bottom edges of the form should be rounded. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + Creates donut-like path. Overrides the method defined in its base class - + ElementShape. + + + + Represents round rectangle shape. + + + Initializes a new instance of the RoundRectShape class. + + + Initializes a new instance of the RoundRectShape class. + + + Initializes a new instance of the RoundRectShape class using a radius. + + + Initializes a new instance of the RoundRectShape class using a radius and rounded corners. + + + Greates round rectangle like path. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets the radius of the shape. + + + + Gets or sets value indicating whether the bottom left corner of the shape should be round + + + + + Gets or sets value indicating whether top left corner of the shape should be round + + + + + Gets or sets value indicating whether bottom right corner of the shape should be round + + + + + Gets or sets value indicating whether top right corner of the shape should be round + + + + Represents IE like tab shape. Shapes are series of connected lines and curves. + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents office 12 like tab. + + + + Creates office 12 like tab. Overrides the method defined in its base class - + ElementShape. + + + + Represents VS like tab shape. Shapes are series of connected lines and curves. + + + + Creates VS like tab shape. Overrides CreatePath method in its base class - + ElementShape. + + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets the orientation of this shape. + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents RadElementTree. Every Telerik control has a corresponding tree of + RadElements. This gives a lot of flexibility in building controls allowing, for + example, inheritance of properties from the ancenstor nodes. + + + + Initializes a new instance of RadElementTree class. + + + + Gets the element of specific type at specific coordinates if it handles the mouse input. + + Element location in control coordinates + The element if successfull, otherwise null + + + + Gets the element at specific coordinates if it handles the mouse input. + + Element location in control coordinates + The element if successfull, otherwise null + + + + Gets the element at specific coordinates if it meets the predicate criteria. + + Element location in control coordinates + Specify a predicate or null if the first element should be returned. + The element if successfull, otherwise null + + + + Retrieves the size of a rectangular area into which a control can be + fitted. This override is called only when AutoSize is true. + + + + Gets the RootElement of the tree. + + + Gets or sets the RadControl for the corresponding tree. + + + Gets the bridge between the abstract RadElement layout and the RadControl instance. + + + Gets the tree name. + + + + + + + + + Represents a collection of PropertyChangeBahavior instances. + See also RadElement.AddBehavior + + + + + Tunnels when the AutoSize property of RadControl changes in order to notify any children that should take special actions. + + + + + Tunnels when some of the stretch properties (horizontal or vertical) has changed in order to notify any children that should take special actions. + + + + + Tunnels when the layout has been suspended in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + Tunnels when the layout has been resumed in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + This method is used internally. + + + + + This method is used internally. + + + + + Paints the RootElement and its element tree. Intended for use by RadControl inheritors. + + IGrpahics object to be used to paint elements + Clipping rectangle to be painted. Only those elements from the tree which intersect with this rectangle will be painted. + + + + Paints the RootElement and its element tree. Intended for use by RadControl inheritors. + + IGrpahics object to be used to paint elements + Clipping rectangle to be painted. Only those elements from the tree which intersect with this rectangle will be painted. + + + + + Gets or sets the forecolor. Color type represents an ARGB color. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value corresponding to the bounding rectangle of the owning Control. + + + + + Gets or sets value indicating whether the shape set to the root element would be applied as a region to + the RadControl that contains the element. + + + + + This property is used internally! + + + + + When set, replaces the default control size. + + + + + Represents a routed event. Routed events can be tunnel or bubble event + according to the routed direction of the event. + + + + + Gets or sets the event name. + + + + + Gets the owner's type. + + + + + Represents a raised routed event. + + + + + Initializes a new instance of the RaisedRoutedEvent class. + + + + + Initializes a new instance of the RaisedRoutedEvent class using + routed event, event sender, sender's type, and routing direction (tunnel + or bubble). + + + + + + + + + Compares the instance with the other event arguments and the sender of the event. + + + + + + + + Compares the instance with another event passed as a parameter. + + + + + + + Gets or sets a value indicating the routed event. + + + + + Gets or sets a string value indicating the routed event name. + + + + + Gets or sets the sender's type. + + + + + Gets or sets the sender. + + + + + Gets or sets the routing direction - tunnel or bubble. + + + + + Defines the routing directions for an events. + + + + + Indicates a tunnel event. + + + + + Indicates a bubble event. + + + + + Represents event arguments for a routed event. + + + + + Initializes a new instance of the RoutedEventArgs class using EventsArgs to + initializes its base class and the RoutedEvent. + + + + + + + Gets or sets the original EventArgs. + + + + + Gets or sets a value indicating the RoutedEvent. + + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Gets or sets a value indicating the routing direction for the event. + + + + + A collection of the RoutedEventBehavior objects. Used by the StyleSheet system. + + + + + Represets an animated property setting + + + + + Initializes new instance of + + + + + Initializes new instance of + + The property to animate. + The number of frames. + The interval between animation frames. + The step used to calculate the next value. + + + + Initializes new instance of + + The property to animate. + The start value. + The end value. + The number of frames. + The interval between animation frames. + + + + Gets or sets the property that will be animated. + + + + + Gets or sets the start value for the animation. + + + + + Gets or sets the end value for the animation. + + + + + Gets or sets the maximum allowed value when using OutElastic mode + + + + + Gets or sets the step used when calculating the next value. + + + + + Gets or sets the number of frames in which the animation will run. + + + + + Gets or sets the interval between animation frames. + + + + + Gets or sets a value indicating the time delay before starting the animation. + + + + + Gets or sets a value indicating whether to set a random delay before starting the animation. + The random delay applies if the value of this property is different from 0. + + + + + Gets or sets the easing to be used when applying animation values. + + + + + Gets or sets a value that determines whether the animation value remains applied after the animation finishes. + + + + + Static value indicating whether animations are enabled at global level. + + + + + Occurs when the animation finishes. + + + + + Occurs when the animation starts. + + + + + Calculates int values for property animation. + + + + + Calculates values used in each frame of property animation. + Also supports converting animation step values to and from a string for + theme serialization. + + + + + Calculates the animated value from start value, end value, current value, + current frame, total number of frames and the specified animation calulator. + + + + + + + + + + + + + + + + + + + + Retrieves the animation step as a string value. + + + + + + + Converts a string to an animation value. + + + + + + + Calculates the animation step from start value, end value, and the total number of frames. + + + + + + + + + Calculates the animation end value from start value, step, and the total number of frames. + + + + + Represents a map of CLR types and corresponding type using when property animation is running and + for animations serialization in themes. + + + + + Animates color values using ColorAnimationStep objects. + + + + + Calculates double values for the property animation. + + + + + Calculates float values for the property animation. + + + + + Calculates Font values for property animation, using FontAnimationStep values. + + + + + Calculates int values for property animation. + + + + + Calculates animation rectangle values. + + + + + Represents a value point animation calculator. + + + + + Represents a value point animation calculator using floating point values. + + + + + Calculates animation rectangle values. + + + + + Represents a value size animation calculator. + + + + + Represents a value size animation calculator using floating point values. + + + + + Represents a numerical value calculator. It is used internally by StyleSheet + system to calculate the value changes when animating RadElement properties. + + + + + Calculates the current value of some property from the initial value, end value, current frame, and the numbers of frames. + + + + + + + + + + Calculates the current value of some property from the initial value, end value, current frame, and the number of frames. + + + + + + + + + + Caclulates the current value of a property from the initial value, end value, current frame, and the number of frames. + + + + + + + + + + Defines the time of the animation occurrence. + + + + + Indicates that no animation is played. + + + + + Indicates that animation is played on applying a setting. + + + + + Indicates that animation is played on up-apply a setting. + + + + + Indicates that animation is always played. + + + + + Defines the possible types of animation looping. + + + + + No animation looping is enabled. + + + + + The animation is started from the beginning after it ends. + + + + + The animation is started again, whereby + end and start values are swapped. + + + + + Defines the animation type. + + + + + + + + + + + + + + + Defines the easing equations for the easing animations. + + + + + Contains information about the way Animation has finished + + + + + Gets value indicating whether the animation has been interrupted by another one. + + + + + Gets value indicating whether the animation has been interrupted by another one. + + + + + Gets the element (if it exists) associated with the specified animation. + + + + + Gets the object associated with the specified animation. + + + + + AnimationStartedEventHandler delegate + + + + + + + AnimationFinishedEventHandler delegate + + + + + + + Event raised during animation notifying the new size for the panel + + the object sending the notification + the new size for the window collasping/expanding + + + + Event raised when animation is finished + + + + + Event raised in parallel with the executing animation. + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Initializes a new instnace of the PropertySetting class. + + + + + Initializes a new instnace of the PropertySetting class by specifying property name and its value. + + A property name. + A property value. + + + + Initializes a new instnace of the PropertySetting class by specifying property and its value. + + A property. + A property value. + + + + Initializes a new instnace of the PropertySetting class by using an exising property setting instance. + + An existing property setting. + + + + Gets or sets the property mapper used to map property names based on the stylable element type. + + + + + Gets the current property value for the specified + + The object. + The current property value for the object. + + + + Applies the property setting on the specified element. + + An instance of + + + + Unapplies the property setting from the specified element. + + An instance of + + + + Resolves the object based on its arguments. + + The type which owns this property. + The property name. + Specifies whether to search base classes if the current type does not contain the specified property. + An instance of if successful. + + + + Gets or sets the property name. + + + + + Gets or sets the full property name (including the class name). + + + + + Gets or sets the property value. + + + + + Gets or sets the property end value (creates an animated property setting). + + + + + Gets an instance of related with this setting. + + + + + Gets the associated RadProperty. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class by using an existing instance. + + The PropertySettingGroup to be used as a source. + + + + Applies the property settings contained in this group to the specified element. + + The element. + + + + Searches for a property setting for the specified property. + + The property to search for + An instance of if successfull. + + + + Searches for a property setting for the specified property. + + The name of the property to search for + An instance of if successfull. + + + + Gets or sets value indicating the key of a repository item which this group is based on. + + + + + Gets the for this property setting group. + + + + + Gets a collection of the property settings for the property setting group. + + + + + Gets a collection of repository settings for the property setting group. + + + + + Initializes a new instance of the ElementSelector class. + + + + + Initializes a new instance of the ElementSelector class by specifying element state. + Sets thw type property to VisualStateSelector. + + The element state. + + + + Initializes a new instance of the ElementSelector class by specifying selector properties. + + The selector type. + The selector value + + + + Initializes a new instance of the ElementSelector class by using an existing one. + + The ElementSelector to be used as a source. + + + + Determines whether the selector is compatible with the specified element. + + The element to compare with. + true if the element is compatible. + + + + Determines whether the selector is valid an element with specific state. + + The element to compare with. + The element state. + true if the selector is valid. + + + + Determines whether the selector is compatible with specific selector. + + The selector. + true if successfull. + + + + Gets or sets the selector value. + + + + + Gets or sets the selector type. + + + + + Gets or sets the child selector. + + + + + Initializes a new instance of the StyleGroup class. + + + + + Initializes a new instance of the StyleGroup class by adding a default style registration. + + The default style registration. + + + + Initializes a new instance of the StyleGroup class by specifying an element type. + Creates a new ElementTypeDefault registration. + + The element type. + + + + Initializes a new instance of the StyleGroup class by using an existing StyleGroup instance. + + The StyleGroup to be used as a source. + + + + Determines whether the style group is compatible with the specified control type. + + The control type. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified control. + + The control. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified stylable node. + + The stylable node. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified style group. + + The stye group. + true if the style group is compatible. + + + + Creates a new style sheet based on this style group for the specified element. + + The element. + An instance of if successful. + + + + Combines the style group with a specified style group by adding its property setting groups. + + style group to combine with. + Specifies whether to replace existing styles. + + + + Saves all style settings presented in this group in a file with XML formatting. + + The theme name to be stored in the file. + The name of the file to be created. + + + + Creates a new theme which is a cloned version of all styles existing in this style group. + + The name of the new theme. + An instance of the Theme class if successfull. + + + + Gets a collection with property setting groups for the style group. + + + + + Gets a collection with style registrations for the style group. + + + + + Initializes a new instance of the StyleRegistration class. + + + + + Initializes a new instance of the StyleRegistration class by creating an ElementTypeDefault registration. + + The full element type. + + + + Initializes a new instance of the StyleRegistration class by using an existing StyleRegistration instance. + + The StyleRegistration to be used as a source. + + + + Initializes a new instance of the StyleRegistration class. + + The registration type. + The full element type. + The full control type. + The element name. + The control name. + + + + Determines whether the style registration is valid for the specified control. + + The control to check. + true if the style registration is compatible. + + + + Checks whether the style registration conatins a style for a child element of the specified stylable node. + + The to check. + true if this style registration is compatible. + + + + Determines whether the style registration is valid for the specified control type. + + The control type to check. + true if the style registration is compatible. + + + + Determines whether the style registration is valid for the specified stylable node. + + The stylable node to check. + true if the style registration is compatible. + + + + Determines whether the style registration is compatible with existing style registration. + + The style registration to check. + true if the style registration is compatible. + + + + Gets or sets the registration type. + + + + + Gets or sets the element type. + + + + + Gets or sets the control type. + + + + + Gets or sets the element name. + + + + + Gets or sets the control name. + + + + + Initializes a new instance of the StyleRepository class. + + + + + Initializes a new instance of the StyleRepository class and specifies the repository key. + + The repository key. + + + + Initializes a new instance of the StyleRepository class and specifies its main properties. + + The style repository type. It can be: Border, Gradient, Image and Layout + The repository name. + The repository key. + + + + Initializes a new instance of the StyleRepository class by using an existigng instance. + + The StyleRepository to be used as a source + + + + Initializes the repository and maps its properties. + + + + + Searches for a specific property setting in the repository. + + The property name to search for. + An instance of + + + + Searches for a specific property setting in the repository. + + The property to search for. + An instance of + + + + Gets or sets the repository type. + + + + + Gets or sets the repository name. + + + + + Gets or sets the repository key. + + + + + Gets a collection containing the repository settings. + + + + + Initializes a new instance of the Theme class. + + + + + Initializes a new instance of the Theme class. + + The name of the theme. + + + + Searches for a StyleGroup based on the control type. + + The control type to search for. + An instance of if successfull. + + + + Searches for a StyleGroup for a specified control. + + The control to search for. + An instance of if successfull. + + + + Searches for a StyleGroup for a specified stylable node. + + The stylable node to search for. + An instance of if successfull. + + + + Searches for a StyleRepository based on its key. + + The repository key to search for. + An instance of if successfull + + + + Relates repositories with style groups. + + + + + Determines whether this theme is compatible with the specified theme name. + + Theme name to compare with. + true if successfull. + + + + Creates a new theme by reading a TSSP file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading an XML file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading a CSS like file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading a CSS like formatted text. + + The text containing a theme in CSS style syntax. + An instance of if successfull. + + + + Creates a new theme by reading a file. The function determines the correct file format by using file extension. + + The file location. + An instance of if successfull. + + + + Creates a new theme by loading it from a resource. The function determines the correct file format by using file extension. + + The assembly to load from. + The location of the resource. + An instance of if successfull. + + + + Creates a new cloned version of the class. + + A new instance of the Theme class + + + + Combines two themes. + + The source theme. + Determines whether to merge repositories. + Determines whether to replace existing styles. + + + + Gets or sets the name of the theme. + + + + + Gets a collection containing the style groups for the theme. + + + + + Gets a collection containing the repositiories for the theme. + + + + + Gets or sets a value indicating whether the theme should be visible at design time. This property value is not serialized. + + + + + Initializes a new instance of the StyleSheet class. + + + + + Applies contained property setting groups, if their conditions are ture. + + The element. + Specifies whether to apply initial condition if the element is in other state. + + + + Gets a collection of the property setting groups for the property setting group. + + + + + Searches for a theme with specific name. + + The theme name to search for. + an instance of if successfull. + + + + Searches for a theme with specific name. + + The theme name to search for. + Sepecifies whether to fallback to control default theme if no other theme is found. + an instance of if successfull. + + + + Adds a new theme to the repository. + + The theme to add. + + + + Adds a new theme to the repository. + + The theme to add. + Specifies whether to replace all matching styles if a theme with the same name exists. + + + + Removes a theme from the repository. + + The theme to remove. + + + + Registers a theme without loading it. + + The theme component to register + + + + Gets or sets the default control theme. + + + + + Gets a list with all loaded themes. + + + + + Gets a list with all theme names that are available. + + + + + Checks is a given element or any of its descendants contain the focus. + + The element. + [true] if the element or any of its children contain focus, [false] otherwise. + + + + This method is used internally. + + + + + + + Clears all resources reserved for the KeyTips functionality + + + + + This method is used internally. + + + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the tool tip + + The tool tip. + + + + Gets or sets the value of how much the tooltip will be moved on the Y coordinate + + + + + Gets or sets the value of how much the tooltip will be moved on the X coordinate + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets value indicating whether the control should show all screen tips under the control client rectangle, as required for the RibbonBar control, for example + + + + + Gets the shortcust collection. + + + + + This property is used internally! + + + + + Gets whether this instance of RadControl is on a active form + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets whether Key Tips (Office 2007 like accelerator keys map) + are used for this specific control. + + + + + Determines whether the mouse over the owning IComponentTreeHandler instance. + + + + + Only RadItem should manipulate this property + + + + + Gets the current selected element (hovered by the mouse). + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + This method is used internally. + + + + + + Fires when hovered element is changed. + + + + Suspends the animated property changes for the control. When animation are suspended property changes still occur but without aniumations. + + + + + Resumes the animated property changes for the conrol. For more info see + + + + + Gets the currently used theme. + + + + + Gets or sets control's preffered theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usage of the control. + + + + + Gets the version of the style applied to this themable element tree. This property is used internally. + + + + + Gets or sets a value indicating whether to fallback to control default theme if the control does not support the current theme. + + + + + Gets value indicating whether the animated property changes are suspended for the control. Also see . + + + + + Represents the method that will handle the + %HoveredElementChanged:HoveredElementChanged% event. + + Initializes the event sender. + Initializes the %event arguments:HoveredElementChangedEventArgs%. + + + + Represents event data for the HoveredElementChanged event. + + + + + Initializes a new instance of the HoveredElementChangedEventArgs class. + + + + + + An interface which provides methods for handling a collection of RadItems. + This interface is used throughout controls which represent a list of items. + + + + + Returns the selected item in the control. + + An reference to a RadItem instance which represents + the currently selected item. + + + + Selects an item in the control. + + A reference to a RadItem instance which + represents the item which is to be selected. + + + + Gets an item from the collection that is next to a certain item. + + The item which neighbour to return. + The direction in which to look for the neighbour. + A reference to a RadItem instance which represents the neighbour item. + + + + Selects an item from the collection that is next to a certain item. + + The item which neighbour to return. + The direction in which to look for the neighbour. + A reference to a RadItem instance which represents the neighbour item. + + + + Gets the first visible item from the collection. + In a IItemsControl that is the first item that is visible on the control. + + A reference to a RadItem instance that represents + the first visible control. + + + + Gets the last visible item from the collection. + In a IItemsControl that is the last item that is visible on the control. + + A reference to a RadItem instance that represents + the last visible control. + + + + Selects the first visible item on the IItemsControl. + + A reference to a RadItem instance that represents the item selected. + + + + Selects the last visible item on the IItemsControl. + + A reference to a RadItem instance that represents the item selected. + + + + Defines whether the IItemsControl can execute navigation + operation based on the keydata provided. + + An instance of the + struct that defines the key command issued. + True if navigation possible, otherwise false. + + + + Defines whether the IItemsControl has an item that + corresponds to the mnemonic passed in the parameter. + + A character that defines the mnemonic command issued. + True if mnemonic can be processed, otherwise false. + + + + Fires when an item has been selected. + + + + + Fires when an item has been deselected. + + + + + Gets a collection containing the items + that are currently active. + + + + + Gets the collection of items associated + with the IItemsControl. + + + + + Gets or sets a boolean value that determines whether + the rollover items functionality will be allowed. + + + + + Gets or sets a boolean value that determines whether + keyboard input will be processed by the IItemsControl. + + + + + Gets the item affected by the operation. + + + + + Represents event data for the ItemUpdated event. + + + + + Initializes a new instance of the ItemUpdatedEventArgs class using the RadItem. + + + + + + Gets the RadItem that is updated. + + + + + Represents a encapsulated implementation of the IItemsControl interface. + + + + + Represents a Win2K+ layered window semantic, which allows for semi-transparent windows. + + + + + Default constructor. + + + + + + + + + + + + + + + + + Provides special handling for the WM_MOUSEACTIVATE, WM_PAINT and WM_NCHITTEST messages. + + + + + + Brings the window on top of the z-order. + + + + + + Sends the window to back of the z-order. + + + + + + Suspends any Layered-related updates for the window. + Useful for multiple properties set-up without sequential update for each property change. + + + + + Resumes previously suspended updates and forces Layered update. + + + + + Resumes previously suspended updates. Optionally preforms Layered update. + + + + + + Displays the window to user using the specified location and current size. + + + + + Performs painting of the window. + Default implementation simply paints the BackgroundImage (if any). + + The graphics to use. + The off-screen bitmap instance the graphics is created from. + + + + Updates the layered window. + + + + + Performs native layered window update, using the Win32 UpdateLayeredWindow API. + + + + + + + + + + + Gets or sets the Image that represents the Layered window. + + + + + Gets the final Bitmap that represents the content of the Layered Window. + + + + + Determines whether window's handle will be re-created upon a Size change. + If the window is large - e.g. 800*600 pixels, + applying new size may cause flicker due to the nature of Layered Windows semantic. + + + + + Determines whether the window is updated (used UpdateLayeredWindow API). + + + + + Gets or sets the Alpha (transparency) value - [0, 1] - for the window. + + + + + Gets the current size used by the window to visualize itself. + + + + + Gets or sets the size of the window. + + + + + Determines whether the window is TopMost (above all floating windows). + + + + + Determines whether the Control is visible for mouse input. + + + + + This class represents a that allows for non-client area modification and paiting. + + + + + This is a helper class which avoids design time error when control design time is opened directly. + + + + + Represents the method that will handle the ScreenTipNeeded event of a RadControl. + + + + + Provides data for the ScreenTipNeeded event. + + + + + Initializes a new instance of the class. + + The item. + + + + Initializes a new instance of the class. + + The item. + The offset. + + + + Gets the item for which the ScreenTipNeeded event occurs. + + The item. + + + + Gets or sets the delay. + + The delay. + + + + Gets or sets the offset. + + The offset. + + + + + + + + + + + Represents the method that will handle the ThemeNameChanged event. + + + Initializes the event sender. + + + Initializes the %event arguments:ThemeNameChangedEventArgs%. + + + + + Represents the event data for the %ThemeNameChanged:ThemeNameChanged% event. + + + + + Represents the old theme name. + + + + + Represents the new theme name. + + + + + Initializes a new instance of the ThemeNameChangedEventArgs class. + + + Initializes the old theme name. + + + Initializes the new theme name. + + + + + Represents the method that will handle the ToolTipTextNeeded event of a RadCOntrol. + + The source of the event. + A ToolTipTextNeededEventArgs that contains the event data. + + + + Provides data for the ToolTipTextNeeded event. + + + + + Initializes a new instance of the class. + + The tool tip. + + + + Initializes a new instance of the class. + + The tool tip. + The tool tip text. + + + + Initializes a new instance of the class. + + The tool tip. + The tool tip text. + The offset. + + + + Gets or sets the ToolTip text. + + + + + Gets or sets the offset from the Cursor.HotSpot + + The offset. + + + + Gets the tool tip. + + + + + Inserts the with duplicates. + + The value. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The source collection view. + + + + Gets the view. + + The source. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + + + + + Gets or sets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the group descriptors. + + The group descriptors. + + + + Gets or sets the filter. + + The filter. + + + + Gets the expression. + + The filter descriptor. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the operator. + + The operator. + + + + Gets or sets the value. + + The value. + + + + Gets the filter expression. + + The filter expression. + + + + Gets a value indicating whether this instance is default filter descriptor of the column + + + true if this instance is default; otherwise, false. + + + + + Gets the expression. + + The filter descriptor. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the date value. + + The date value. + + + + Gets the filter expression. + + The filter expression. + + + + Get or set if the time part of date value should be ignored. + + + + + Passeses the filter. + + The item. + + + + + Suspends event notification. + + + + + Resumes event notification. + + + + + Resumes event notification. + + + + + Defers the refresh. + + + + + + Copies to array. + + The array. + Index of the array. + + + + Loads the data. + + The collection. + + + + Finds the specified item index. + + Index of the item. + The data bound item. + + + + + Searches the Groups collection for a match, using the Keys in the provided group. + + + + + + + Determines whether the specified group is present within this view. + + + + + + + Indexes the of. + + The item. + + + + + Determines whether [contains] [the specified item]. + + The item. + + true if [contains] [the specified item]; otherwise, false. + + + + + Evaluates the specified expression. + + The expression. + The item. + + + + + Evaluates the specified expression. + + The expression. + The start index. + The count. + + + + + Evaluates the specified expression. + + The expression. + The items. + + + + + This method is used internally. + + + + + + + + + Try to evaluate the specified expression. + + The expression. + The items. + Index of item, which the result will be calculated for + Expression result + + + + + This method is used internally. + + + + + Moves the current to. + + The item. + + + + + Moves the current to first. + + + + + + Moves the current to last. + + + + + + Moves the current to next. + + + + + + Moves the current to position. + + The position. + + + + + The core update routine for the current position. + + New position of the current item. + True to raise CurrentChanged regardless of whether actual position change is available. + + + + + Moves the current to previous. + + + + + + Refreshes this data view. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Ensures the index of the page is within the valid pages range. + + + + + Raises the NotifyPropertyChanged event + + + + + + Sets the first page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Sets the last page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Moves to the page after the current page. + + + true if the operation was successful; otherwise, false. + + + + + Requests a page move to the page at the specified zero-based index. + + The zero-based index of the page to move to. + + true if the operation was successful; otherwise, false. + + + + + Moves to the page before the current page. + + + true if the operation was successful; otherwise, false. + + + + + Fires the PageChanging event. Returns the value of the Cancel event argument. + + The new index. + True if the event was canceled, otherwise false. + + + + Fires the PageChanged event. + + + + + Gets or sets the comparer. + + The comparer. + + + + Gets or sets the comparer. + + The comparer. + + + + Gets or sets a value indicating whether [change current on add]. + + true if [change current on add]; otherwise, false. + + + + Gets a value indicating whether this item collection is empty. + + true if this item collection is empty; otherwise, false. + + + + Gets a value that indicates whether the underlying collection provides change notifications. + + + true if this instance is dynamic; otherwise, false. + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Indicates whether string comparisons of data are case-sensitive. + + + + + Gets or sets the filter expression. + + The filter expression. + + + + Gets or sets a value indicating whether filtering will be performed or it will be handled by the user/data source. + + + + + Gets or sets a value indicating whether sorting will be performed or it will be handled by the user/data source. + + + + + Gets a value indicating whether this instance has filter applied. + + + true if this instance has filter applied; otherwise, false. + + + + + Gets a value indicating whether this instance has group applied. + + true if this instance has group applied; otherwise, false. + + + + Gets a value indicating the current version of the view. + + + + + This property is used internally. + + + + + This property is used internally. + + + + + Gets a value indicating whether this instance has sort applied. + + true if this instance has sort applied; otherwise, false. + + + + Gets or sets the current item. + + The current item. + + + + Gets or sets the current position. + + The current position. + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Gets the source collection. + + The source collection. + + + + Gets the sort descriptions. + + The sort descriptions. + + + + Gets the group descriptions. + + The group descriptions. + + + + Provides a callback so that the default filtering expression parser can be substituted. + + + + + Gets a value indicating whether this instance is incremental filtering. + + + true if this instance is incremental filtering; otherwise, false. + + + + + Default callback so that the default filtering expression parser can be substituted. + + + + + Gets the groups. + + The groups. + + + + Gets the default group predicate. + + The default group predicate. + + + + Gets or sets a value indicating whether paging is performed before grouping or vice versa. + + + true if paging is performed before grouping; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Occurs when the IPagedCollectionView.PageIndex has changed. + + + + + Occurs before the IPagedCollectionView.PageIndex is changed. + + + + + Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change. + + true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false. + + + + Gets a value that indicates whether a page index change is in process. + + true if the page index is changing; otherwise, false. + + + + Gets the zero-based index of the current page. + + The zero-based index of the current page. + + + + Gets or sets the number of items to display on a page. + + The number of items to display on a page. + + + + Gets the total number of items in the source collection. + + The total number of items in the source collection, or -1 if the total number is unknown. + + + + Gets the total number of pages with the current page size. + + + + + Gets or sets the comparer. + + The comparer. + + + + Gets the groups. + + The groups. + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Gets the type of the . + + The filter descriptor. + + + + + Creates the descriptor. + + The type. + + + + + + + Creates the descriptor. + + The type. + Name of the property. + Type of the data that will be filtered. + The values. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Converts to the filter descriptor to concrete type + + The type. + The converted instance of + + + + Converts to the filter descriptor to a concrete type. + + The type to which the filter will be converted. + The type of data that will be filtered. + + The converted instance of + + + + + Gets or sets the logical operator. + + The logical operator. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets or sets a value indicating whether [not operator]. + + true if [not operator]; otherwise, false. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the operator. + + The operator. + + + + Gets a value indicating whether this instance contains FilterDescriptor's with different PropertyName. + + + true if any child filters have the same name; otherwise false. + + + + + Gets the filter expression. + + The filter expression. + + + + + + + + + Type is not predefined. + + + + + Between + + + + + Not Between + + + + + Determines whether [contains] [the specified item]. + + The item. + + true if [contains] [the specified item]; otherwise, false. + + + + + Indexes the of. + + The item. + + + + + Evaluates the specified expression. + + The expression. + + + + + Gets the items contained in this group. This method is used internally. + + A list containing group items. + + + + Get the zero-based depth of the Group + + + + + Gets or sets the header. + + The header. + + + + Gets the key of the group. + + The key. + + + + Gets the item count. + + The item count. + + + + Gets the item at the specified index. + + + + + + Gets the parent. + + The parent. + + + + Gets the groups. + + The groups. + + + + This property is used internally. + + + + + Adds the specified property name. + + Name of the property. + The filter operator. + The value. + + + + Indexes the of. + + Name of the property. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Removes the specified property name. + + Name of the property. + + + + + Removes the specified property name. + + Name of the property. + The predicate which determine weather the filter can be deleted. + + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the logical operator. + + The logical operator. + + + + Gets or sets the expression. + + The expression. + + + + Gets the group list contained in this collection. This property is used internally. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Gets or sets the aggregates. + + The aggregates. + + + + Gets or sets the format. + + The format. + + + + Gets or sets the expression. + + The expression. + + + + Gets the group names. + + The group names. + + + + Adds the specified property name. + + Name of the property. + The direction. + + + + Removes the specified property name. + + Name of the property. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + + true if [contains] [the specified property name]; otherwise, false. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Finds all sort descriptors associated with the group descriptors by property name + + Name of the property. + All sort descriptors contained in the group descriptors by the specified propertyName + + + + Finds all sort descriptors associated with the group descriptors by property name + + Name of the property. + if set to true [case sensitive]. + All sort descriptors contained in the group descriptors by the specified propertyName + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the expression. + + The expression. + + + + Used to build groups from indexer + + + + + + Performs the grouping operation for specified items. + + The items. + The level. + The parent. + + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the default group predicate. + + The group predicate. + + + + Gets a value indicating whether [needs refresh]. + + true if [needs refresh]; otherwise, false. + + + + Gets the collection view associated with this builder. + + + + + + + + + + + Evaluates the specified expression. + + The expression. + The item. + + + + + Evaluates the specified expression. + + The expression. + The start index. + The count. + + + + + Sets the view in dirty state. + + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the source collection. + + The source collection. + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + This method is called right befor the event is fired. + + + + + + Raises the PropertyChanging event + + The name of the property + + The value that is goint to be set to the property. + + + + Raises the PropertyChanging event + + The name of the property + true if the event has been canceled, for more information see + + + + Raises the PropertyChanging event. + Note: This method is called even when the notifications are suspended. + + A instance containing event data. + + + + This method is called right before the event is fired. + Note: If is true, this method is not called. + + + + + + General method for setting the value of the field related to the property that is modified. + This method confirms that the old and new values are different, then fires the + event, then sets the given value to the supplied field, + and fires the event. + Note: If the event is canceled, the last two actions are + not performed. + + + + public class MyNotificationsTest : NotifyPropertyBase + { + private int myInt = 0; + private int myInt2 = 0; // + + public int AsInt + { + get + { + return this.myField; + } + set + { + if (SetProperty("AsInt", ref this.myInt, value)) + { + // perform additional actions when new value is set to myInt. + } + } + } + + public int AsInt2 + { + get + { + return (float)this.myInt2; + } + set + { + // The following property setter is the same as the previous one. + if (this.myInt2 != value) + { + PropertyChangingEventArgs2 ea = new PropertyChangingEventArgs2("AsInt2", value); + OnPropertyChanging(ea); + + if (!ea.Cancel) + { + this.myInt2 = (int)ea.Value; + OnPropertyChanged("AsInt2"); + + // perform additional actions when new value is set to myInt2. + } + } + } + } + } + + + The two setter implementations are identical. If you require to perform some actions before + the event is fired, you can use the second implementation, or, + a better solution is to override the method and place + the code there. + The type of the field that is to be modified. + The name of the property, that will appear as propertyName in the and event args. + The field, that is related to the property. + The value that is to be set to the field in case the event is not being Canceled. + true if new value is being set + + + + Occurs when a property of an object changes. + + + + + Occurs before a property of an object changes. + + + + + Sets the last page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Gets or sets the sort comparer. + + The comparer. + + + + Gets or sets the group comparer. + + The group comparer. + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the default group predicate. + + The default group predicate. + + + + Gets or sets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Refreshes this instance. + + + + + Resets this instance. + + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + if set to true [notify updates]. + + + + Adds the new. + + + + + + Adds the created item to ListSource. + + + + + + Moves the specified item. + + The old index. + The new index. + + + + Raises a CollectionChanged notification with action ItemChanging. Must be paired with the NotifyItemChanged method. + + + + + + Raises a CollectionChanged notification with action ItemChanged. Must be paired with the NotifyItemChanging method. + + + + + + Raises a CollectionChanged notification with action ItemChanging. Must be paired with the NotifyItemChanged method. + + + + + + + Raises a CollectionChanged notification with action ItemChanged. Must be paired with the NotifyItemChanging method. + + + + + + + Returns the that represents the properties on each item used to bind data. + + An array of objects to find in the collection as bindable. This can be null. + + The that represents the properties on each item used to bind data. + + + + + Returns the name of the list. + + An array of objects, for which the list name is returned. This can be null. + The name of the list. + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + + + The is read-only. + + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + + The is read-only. + + + + + Adds an item to the . + + The object to add to the . + + The is read-only. + + + + + Used internally by the design time property editor. + + + + + Removes all items from the . + + + The is read-only. + + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies the elements of the to an , starting at a particular index. + + The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. + The zero-based index in at which copying begins. + + is null. + + + is less than 0. + + + is multidimensional. + -or- + is equal to or greater than the length of . + -or- + The number of elements in the source is greater than the available space from to the end of the destination . + -or- + Type T cannot be cast automatically to the type of the destination . + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + + The is read-only. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Gets or sets the position. + + The position. + + + + Gets the current. + + The current. + + + + Gets or sets a value indicating whether each value setting should be encapsulaed in its own BeginEdit EndEditTransaction. + + + + + Gets the collection view. + + The collection view. + + + + Gets or sets the name of the list or table in the data source for which the is bound. + + + + + Gets or sets the data source of the . + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Occurs when a property value changes. + + + + + Gets or sets the item at the specified index. + + + + + + Gets a value indicating whether the is read-only. + + + true if the is read-only; otherwise, false. + + + + + Determines whether this instance is in a Begin/End update block. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Raises the event. + + Name of the property. + The old value. + The new value. + Returns [TRUE] If the events is not canceled, otherwise [FALSE]. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the direction. + + The direction. + + + + Gets or sets the owner. + + The owner. + + + + Adds the specified property name. + + Name of the property. + The direction. + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Indexes the of. + + Name of the property. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Removes the specified property name. + + Name of the property. + + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the expression. + + The expression. + + + + Represents a new item's data. + + + + + Initializes a new instance of the NewItemData class. + + + + + Gets an implementation + which is owned by this component. This method is used + by the ThemeNameEditor to prefilter + the available themes for the current component. + + An implementation which + is owned by this . + + + + Gets or sets the theme name of the component. + + + + + + + + + + + + + + Represents a item's edit text attribute. + + + + + Represents a new item attribute. + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + + + Gets a string representing the new item text. + + + + + Gets a value indicating whether the item should be editable. + + + + + Gets a value indicating whether a glyph should be added. + + + + + Gets a value indicating whether a verb should be added. + + + + + + + + RadPropertyDefaultValueAttribute constructor + + The name of the property which provides the default value. + Type of the object that ownes the RadProperty which provides the default value. + + + + Attribute that can be applied to hide a class when searching for possible new-item-types when a RadControl + is in design mode + + + + + A dummy ISite implementation, which provides support for custom services. + + + + + Represents a dependency between two properties. + Used by a RadObject to bind a RadProperty to an external one and always use its value. + The binding may be also two-way, in which special case the bound property updates its source. + + + + + Initializes a new instance of the RadPropertyBinding class. + + + + + + + + + + + + + + + Updates the binding source property. + + + + + + Gets the binding source. + + + + + Represents an object which property is bound to some other object's property. + Stores the object itself and its bound property. Used internally by the DPS to notify + bound objects for a change in a binding source property. + + + + + Stores all the information needed for composing a RadProperty's value for a given object. + + + + + Internal constructor used to store existing property state. + + + + + + Resets all references - such as binding references and property modifiers. + + + + + Restores the state of this property using the provided source. + + + + + + Registers an object which is bound to this property value. + + + + + + Gets the current value and optionally forces re-evaluation. + + + + + + + Removes previously registered bound object. + + + + + + Notifies all bound objects for a change in this property. + + + + + Forces value composition, using default precedence order. + + + + + Resets the state of the inherited value. + + True if the property needs re-evaluation, false otherwise. + + + + Applies the specified value as local and forces current value re-evaluation. + + + + + + Applies the specified value as local and forces current value re-evaluation. + + + + + + Applies the specified animation and forces current value re-evaluation. + + + + + + Applies the specified style setting and forces current value re-evaluation. + + + + + + Applies the specified binding and forces current value re-evaluation. + + + + + + Determines whether the specified object is already bound. + + + + + + + Begins an update operation. + + Value composition will be locked. + Specifies that we are currently applying new value. + + + + Registers the provided value as a default for the property. + + + + + + Assigns the specified value and source as current. + Internally checks for possible coersion. + + + + + + + Retrieves the default value for the property. + Custom value may be defined, using the DefaultValueCallback + + + + + + Sets a new style version for this property value. This method is used internally. + + The new version + + + + Determines whether we have objects already bound to this property. + + + + + Determines whether current value composition is currently locked. + + + + + Determines whether we are in a process of updating a modifier. + + + + + Gets the index of the associated RadProperty. + + + + + Gets the current value for the property. + + + + + Gets the local value for this property. + + + + + Gets the value which is set through a two-way property binding. + This value has higher priority that the local one. + + + + + Gets the property binding relation for this property. + + + + + Gets the animation setting (if any) for this property. + + + + + Gets the current style setting for the property. + + + + + Gets the current animated value. + + + + + Gets the source of the current value. + + + + + Gets the Metadata associated with this property for the current owner. + + + + + The current value is forced to some custom value by a Coerce callback. + + + + + Gets the custom default value associated with this property. + + + + + Determines whether the current local value (if any) is set at design-time. + + + + + Gets the current style version + + + + + Allows RadObject inheritors to replace RadProperty instances with another one. + + + + + + + Represents a storage for RadPropertyValue entries, which are accessed by their GlobalIndex property. + + + + + Resets all properties with local values. This method is used internally. + + + + + This method is used internally. + + + + + Used to resolve Telerik types + + + + + Gets or sets value indicating whether the TypeResolver should look up types in the calling assembly only. + This option (if set to true) is very usefull particularly in the case when all the assemblies of the application, including the + Telerik assemblies are merged into a single assembly. + + + + + Gets or sets value indicating the search pattern for assembly in the domain that contains the types referenced in RadControls theme files. + + By default the types referencd in theme files are contained in assemblies with the name "Telerik" + + + + + + Gets or sets value indicating the version of the assembly specified in TypeResolverAssemblyName + + + + + Gets the only instance of the resolver. + + + + + Exposes the ImageList property. All classes that implement this interface + provide an image list. + + + + + Gets the image list. + + + + + Initializes a new instance of the CommandBase class. + + + + + Initializes a new instance of the CommandBase class using command name. + + + + + + Initializes a new instance of the CommandBase class. + + + + + + + Retrieves a text representation of the instance. + + + + + + Executes the command. + + + + + Executes the command with the given settings. + + + + + + + + + + + + + + + + + + Gets or sets the command name/ + + + + + Gets or sets the command type. + + + + + Represents per-thread static instance of special RadControl, which may be used for explicit measure of RadElement instance. + This functionality is required for example in the RadComboBox, when we need to calculate the size of the drop-down before it is displayed. + + + + + Gets the element's desired size, using the specified available. + + + + + + + + Gets the instance of the measurement tree (valid per UI thread) + + + + + Represents a collection which stores RadElement instances + and is sorted by ZIndex property of each element. + + + + + The collection gets notified for a change in the ZIndex of the specified property. + + + + + + The collection gets notified for a change in the Visibility property of the specified element. + + + + + + Puts the specified element at the beginning of the collection + + + + + + Puts the specified element at the end of the collection + + + + + + Finds the insert index for the specified element. + Since the collection is sorted by each element's Z-index, + we perform a binary search to determine at which position the element should be inserted. + + + + + + + Compares two elements by their z-index first + and if they equals, the index in their Parent collection is used. + + + + + + + + Gets the count of all elements, which visibility is not ElementVisibility.Collapsed. + + + + + + + + + + Indicates that an insert operation will commence. + + + + + Indicates that an insert operation is performed. + + + + + Indicates that a remove operation will commence. + + + + + Indicates that a remove operation is performed. + + + + + Indicates that an item is going to be set + + + + + Indicates that an item is set + + + + + Indicates that the items will be cleared + + + + + Indicates that the items are cleared + + + + + Indicates that the items will be sorted + + + + + Indicates that the items are sorted + + + + + Indicates that a number of items were added to the collection via the AddRange method + + + + + Represents the method that will handle the %ItemChanged:ItemChanged% event. + + + + + + + + + A collection that stores objects. + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + Retrieves an array of the items in the collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Defines the order in which border lines are drawn. + + + + + Defines the options used by CheckPrimitive check box + + + + + Indicates XP check primitive style. + + + + + Indicates Vista check primitive style. + + + + + Indicates Mac check primitive style. + + + + + Indicates empty check primitive. + + + + + Indicates Windows8 check primitive style. + + + + + + + + + + + + + + + + + + + + Normalize the value of the function's argument + to ensure the correct overload is matched. + + + + + + + + + + + + -1: value1 < value2 + 0: value1 = value2 + 1: value1 > value2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Escapes the name. + + The name. + + + + + Escapes the LIKE value. + + The value without wildcards. + + + + + Escapes the filtering value. + + The value without wildcards. + + + + + + + + + + + + + + + + + + + + Set or get default expression context class, which will be used for determinating the expression functions. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Use for all op except And, Or, In, Is and IsNot + + if false to stop processing the op and return the retValue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Encapsulates common mothods related with Control Tree. + + + + + Brings the window on top of the z-order. + + + + + + + Sends the + + + + + + + Forces the non-client area of the specified Control instance to be re-evaluated. + + + + + + + Determines whether the specified Child is contained within the specified Parent's Control Tree. + + + + + + + + Gets the Control instance that currently contains the Keyboard focus. + + + + + + Determines whether the specified ControlStyle is applied to the provided control. + + + + + + + + Sends a WM_SETREDRAW message to the control, preventing any paint operation afterwards. + + + + + + Resumes Control's painting, previously suspended by a BeginUpdate call. + + + + + + + Enumerates the Control tree, starting from the provided parent as a root, + and collects all the child controls that match the specified filter. + + + + + + + + + Gets the Control of type T that is descendant of the specified parent and is anchored to the specified current T instance. + + A Control of Type T. + The parent control, which descendants are to be examined. + The current T instance to start the search from. + True to perform depth-first traversal of the Control Tree, false to look-up direct children only. + True to search for a T instance that is next to the current specified one, false to search for a T instance that is previous to the current specified one. + True to start the search from the beginning when end of the search is reached. + + + + + Gets the first Control of Type T, which is descendant of the specified Parent. + + + + + + + + + Gets the last Control of Type T, which is descendant of the specified Parent. + + + + + + + + + Collects all child controls of given type. + + + + + + + + + Enumerates all child controls of the specified parent and optionally traverses the entire tree using Depth-first approach. + + + + + + + + Enumerates all child controls of the specified parent and optionally traverses the entire tree using Depth-first approach. + + + + + + + + + Searches up the parent chain of controls, looking for an ancestor of the specified type. + + + + + + + + Searches down the control tree, using breadth-first approach, for a descendant of the specified type. + + + + + + + + Provides common helper methods related with image manipulation. + TODO: Should be moved to base assembly, making it accessible for all Telerik Assemblies. + + + + + Crops recatnalge from image + + An instance of . + An instance of + Cropped image with the size of cropped rectangle + + + + Encapsulates common functionality related with reflection-based operations such as Cloning, Field Copying, etc. + + + + + Copies all the fields, which are not marked by the [NonSerialized] attribute and are not Delegate instances, + from the source object to the target one. Reference type fields will be copied by reference rather than cloned. + + + + + + + + Creates a new instance of type T and copies its fields from the provided source instance. + Reference type fields will be copied by reference rather than cloned. + + + + + + + + An extended interface that supports some additional notifications sent by the ReflectionHelper. + + + + + The instance gets notified for a field copy process. + + + + + The instance gets notified for a clone complete process. + + + + + Defines helper methods for manipulating assembly resources. + + + + + Creates a new Image instance from the specified embedded resource for the specified type. + + + + + + + + Creates a new Cursor instance from the specified embedded resource for the specified type. + + + + + + + + Get bounding rectangle arround rotated one. + + Rectangle that is to be rotated + + Returns the bounding rectangle around the rectangle + that is rotated according to the given matrix + + + + Searches the control hierarchy tree and returns the first RadControl that parents the control provided. Otherwise returns null. + + + + + + + Gets the color of the pixel at the specified location on the screen. + + The location in screen coordinates to get the color for. + The color of the pixed at the specified location. + + + + Converts a key to string taking into account the currently selected keyboard leyout. + + The key to convert. + The string mapped to the provided key. + + + + Defines possible reasons for a Reset notification from RadCollectionView. + + + + + Entire data has changed. + + + + + Reset has been initiated by a change in collection's filtering logic. + + + + + Reset has been initiated by a change in collection's grouping logic. + + + + + Reset has been initiated by a change in collection's sorting logic. + + + + + Reset has been initiated by a change in collection's paging logic. + + + + + This interface gives the ability to create reusable providers for VisualElements + that are in some relation with logical data objects. + + + + + + + Create element using the pased data + + Logical data that will be used to initialize the element. + The newly created element if everything is OK; null on error. + + + + Cleans up when an element that is created with CreateElement() is no longer necessary. + + + + + + Initialize already created element with logical data (if possible). + + the element to be initilaized + with this data the given element should be initialized + false if the element cannot be initialized with the given data + + + + Check if an element can be initialized with some logical data. + + + + true if the lement can be initialized with the data. + + + + Describes the action that caused a CollectionChanged event. + + + + + One or more items were added to the collection. + + + + + One or more items were removed from the collection. + + + + + One or more items were replaced in the collection. + + + + + One or more items were moved within the collection. + + + + + The content of the collection changed dramatically. + + + + + The collection has been updated in a batch operation. + + + + + An item in the collection is about to change. + + + + + An item in the collection has changed. + + + + + Provides data for the CollectionChanged event. + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + + Initializes a new instance of the class. + + The action. + The new item. + The old item. + The index. + Name of the property. + + + + Gets the name of the changed property when the Action is ItemChanged. + + + + + Provides data for the CollectionChanged event. + + + + + Gets the reason for a Reset notification. + + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Represents the method that handles the CollectionChanged event. + + The object that raised the event. + Information about the event. + + + + Provides data for the CollectionChanging event. + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item Replace change. + + + + + + + + + Provides data for the CollectionChanging event. + + + + + Gets the property arguments when property changing has been fired. + + The property arguments. + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Represents the method that handles the CollectionChanging event. + + The object that raised the event. + Information about the event. + + + + Represents the method that will handle the Telerik.WinControls.Interfaces.INotifyPropertyChanging.PropertyChanging + event of an Telerik.WinControls.Interfaces.INotifyPropertyChanging interface. + + The source of the event. + A System.ComponentModel.PropertyChangingEventArgs that contains the event data. + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Encapsulates the data, associated with the IShortcutProvider.OnShortcut callback. + + + + + Gets the control that is currently focused and which will receive the keyboard event. + + + + + Gets the shortcut that is triggerred. + + + + + Determines whether the event is handled. If true, the keyboard message will not be dispatched to the focused control. + + + + + Gets an array with the currently collected key strokes. + + + + + Describes a combination of keys that may be used as a shortcut to RadItem.PerformClick method or any other arbitrary command. + + + + + Default constructor. Initializes an empty RadShortcut instance. + + + + + Initializes a new RadShortcut instance, using the specified modifiers and key mappings. + + + + + + + Determines whether the specified Keys are part + + + + + + + + Determines whether the specified Keys are part of a shortcut combination. + E.g. if we have a key mapping CTRL+M+O and the provided keys are CTRL+M, the method will return true. + + + + + + + + Determines whether the specified key is present in the RadDockShortcut KeyMappings list. + + + + + + + Gets the human-readable represention of the current key settings. + + + + + + Gets a list with all the Keys that form the shortcut combination. + E.g. we may have M+O and a Modifier CTRL, then the valid shortcut will be CTRL+M+O + + + + + Gets or sets the Keys value that describes the modifiers for the shortcut. + + + + + Determines whether the Control modifier key is applied. + + + + + Determines whether the Alt modifier key is applied. + + + + + Determines whether the Shift modifier key is applied. + + + + + Gets a human readable string representation of the collection. + + + + + + Gets the IShortcutProvider instance that owns this collection. + + + + + Gets the count of all shortcut providers currently registered with this instance. + + + + + Represents layout container which implements column and row span and different column and row sizing modes - proportional, fixed, and auto. + + + + + Represents a base class for all layout panels. Layout panels are RadElements. + They are the elements in the control tree responsible for the layout of primitives. + Layout panels determine the position and size of the primitives inside them. + Because panels are RadElements, panels can be nested thus providing an + arbitrary complex layout. + + + + + This constant is used internally. + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Creates new instance of GridLayout. + + + + + Creates new instance of GridLayout. + + Number of columns. + Number of rows. + + + + Gets or sets the columns of the layout container. + + + + + Gets or sets the rows of the layout container. + + + + + GridLayout sizing type options. + + + + + Represents GridLayout column. + + + + + Represents base class for GridLayout element. + + + + + Represents GridLayout row. + + + + + scrol to line + + line index to scrool - zero besed + + + + Scroll to element + + + + + + how many lines we have + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + which is the current line + + + + + This class is used as a base class for all Localization Provider classes + used in RadControls. + + + + + Creates a default localization provider. + + A new instance of the default localization provider. + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + Fires when the current localization provider has changed. + + + + + Gets or sets the current localization provider. + + + + + Gets a CultureInfo object corresponding to the current localization provider. + + + + + Represents a light-weight 3*3 Matrix to be used for GDI+ transformations. + + + + + Initializes a new RadMatrix, using the specified parameters. + + + + + + + + + + + Copy constructor. + + + + + + Initializes a new RadMatrix, using the elements of the specified GDI+ Matrix instance. + + + + + + Initializes a new RadMatrix, applying the specified X and Y values as DX and DY members of the matrix. + + + + + + Initializes a new RadMatrix, scaling it by the provided parameters, at the origin (0, 0). + + + + + + + Initializes a new RadMatrix, scaling it by the provided parameters, at the specified origin. + + + + + + + + Initializes a new RadMatrix, rotated by the specified angle (in degrees) at origin (0, 0). + + + + + + Initializes a new RadMatrix, rotated by the specified angle (in degrees) at the provided origin. + + + + + + + Determines whether the current matrix is empty. + + + + + Determines whether this matrix equals to the Identity one. + + + + + Gets the determinant - [(M11 * M22) - (M12 * M21)] - of this Matrix. + + + + + Determines whether this matrix may be inverted. That is to have non-zero determinant. + + + + + Gets the scale by the X axis, provided by this matrix. + + + + + Gets the scale by the Y axis, provided by this matrix. + + + + + Gets the rotation (in degrees) applied to this matrix. + + + + + Gets all the six fields of the matrix as an array. + + + + Represents shadow settings. + + + + Initializes a new instance of the ShadowSettings class using point and + shadow color. + + + + Initializes a new instance of the ShadowSettings class. + + + Gets or sets the shadow depth. + + + Gets or sets the shadow color. + + + + Specifies arrow directions for the arrow primitive: Up, Right, Down, and + Left. + + + + + Indicates left pointed arrow. + + + + + Indicates up pointed arrow. + + + + + Indicates right pointed arrow. + + + + + Indicates down pointed arrow. + + + + + Represents the BoxLayout class + + + + + Registers the Proportion dependancy property of BoxLayout + + + + + Registers the Orientation dependancy proeprty of BoxLayout + + + + + Registers the StripPosition dependancy property of BoxLayout + + + + + Gets the proportion based on a given element + + The element which proportion will be get. + The proportion value. + + + + Sets the proportion (attached property) of a given element. + + The element which proportion will be set. + The proportion value. + + + + Handles the properties values changes of BoxLayout + + + + + + measures the size to layout the children + + + + + + + arranges the children by a given criteria + + + + + + + Gets or sets strip orientation - it could be horizontal or vertical. + + + + + represents StripPosition enumeration + + + + Adds a delegate to the list. + The object that owns the event. + The delegate to add to the list. + + + Removes a delegate from the list. + The object that owns the event. + The delegate to remove from the list. + + + Raises the specified event. + The object that owns the event. + An that contains the event data. + + + + Gets or sets whether the rollover items functionality of the RadItemsControl will be allowed. + + + + + Gets or sets whether the RadItemsControl processes the keyboard. + + + + + Represents the method that will handle the + RadPropertyChange event. + + + + + Represents a click command. + + + + + Exposes the Items property for accessing a collection of the items in a + combobox. + + + + + Gets a collection representing the collection of the items contained + in this ComboBox. + + + + Defines the border rendering style. + + + + All four borders share same customization, using gradient, regarding parent element's shape. + + + + + Each of the four borders and their "shadow" colors can have disparate customization. Note that shape and gradient would NOT be applied. + + + + + Draw inner and outer gradient borders, regarding parent element's shape. Inner and outer borders would share the specified border width. + + + + + Defines the options used by RadElement.GetChildren(options) method. + + + + + Indicates that all children are returned. + + + + + Indicates that children are returned sorted according to their z-index. + + + + + Indicates that children are returned in reverse order. + + + + + Indicates that collapsed children are included. + + + + + Indicates that only children, which visibility is ElementVisibility.Visible, are included. + + + + + Defines the sorting style of items in a control. + + + + + Indicates ascending sorting. + + + + + Indicates descending sorting. + + + + + Indicates no sorting. + + + + + Defines the click modes. + + + + + Indicates that the mouse is released. + + + + + Indicates that the mouse is pressed. + + + + + Indicates that the mouse hovers. + + + + + Defines the drop down style used by RadComboBox. + + + + + Indicates that the text area is editable. + + + + + Indicates that the text area cannot be edited. + + + + + Defines element's visibility. + + + + + Indicates that the element is visible. + + + + + Indicates that the element is hidden. + + + + + Indicates that the element is collapsed. + + + + + Indicates how the image is scaled. ImageScaling members are None and + SizeToFit. The latter fits the image to the parent size. + + + + + + + + + Defines the progress bar orientation. + + + + Indicates top orientation. + + + + + Indicates bottom orientation. + + + + + Indicates left orientation. + + + + + Indicates right orientation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Defines the life cycle of a RadElement instance. + + + + + The element is in its initial state. + + + + + The element is in a process of being constructed. + + + + + The element is already constructed but not loaded yet. + + + + + The element is loading. That is it is initializing on the owning control. + + + + + The element is prepared for visualizing. + + + + + Special state, indicating that the element has been loaded once and removed from the element tree. + + + + + The element is in a process of being disposed of. + + + + + The element is already disposed of. + + + + + Defines separators orientation. + + + + + Indicates Verical separators orientation. + + + + + Indicates Horizontal separators orientation. + + + + + Indicates Custom separators orientation. + + + + + Defines the toggle states. Toggle states are used in RadToggleButton. + + + + + Indicates off state. + + + + + Indicates on state. + + + + + Indicates a third state for the toggle button - indeterminate. + + + + + Initializes a new instance of the Formatter class. + + + + + Exposes methods and properties for e hierarchical items such as + RadMenuItem. + + + + + Gets or sets the item's owner. + + + + + Gets a value indicating whether the item has children. + + + + + Gets a value indicating whether the item is the root element if the + hierarchy. + + + + + Gets or sets the item's parent. + + + + + Gets the root item of this item's hierarchy. + + + + + Gets the next item. + + + + + Gets the previous item. + + + + + Initializes a new instance of the ChordMessageFilter class. + + Instance of the ChordMessageFilter class + + + + Filters out a message before it is dispatched. + + + Use PreFilterMessage to filter out a message before it is dispatched to a control or form. + For example, to stop the Click event of a Button control from being dispatched to the control, + you implement the PreFilterMessage method and return a true value when the Click message occurs. + You can also use this method to perform code work that you might need to do before the message is + dispatched. + + The message to be dispatched. You cannot modify this message. + true to filter the message and stop it from being dispatched; false to allow the message to continue to the next filter or control. + + + + Calculates the character code of alphanumeric key of the Keys enum instance + + An instance of the Keys enumaration + The character code of the alphanumeric key + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Represents the state of the modifier keys (SHIFT, CTRL, and ALT) in a + Chord. + + + + + Initializes a new instance of the ChordModifier using data + provided by Keys input. + + + + + Initializes a new instance of the ChordModifier using explicit + setting for every property. + + + + + Initializes a new instance of the ChordModifier using data + provided by another instance. + + + + + Initializes a new instance of the ChordModifier class with + default settings. + + + + + Updates a ChordModifier instance based on a Keys input value + + ChordModifier instance to update + Keys input value + ChordModifier instance with updated states + + + + Creates new ChordModifier instance based on a Keys input value + + Keys input value + ChordModifier instance + + + + Removes all data from the ChordModifier. + + + + + Compares this instance to a specified object or ChordModifier and returns an indication of their relative values. + + + A signed number indicating the relative values of this instance and + value. +
+ + + + Return Value + + + Description + + + + + Less than zero + + + This instance is less than + value. + + + + + Zero + + + This instance is equal to + value. + + + + + Greater than zero + + + This instance is greater than + value. + -or- + value is a null reference + (Nothing in Visual Basic). + + + +
+

Collapse imageExceptions

+
+ + An object to compare, or a null reference (Nothing in Visual + Basic). + +
+ + + Raises the PropertyChanged event + + The name of the property + + + + Gets a value indicating if any of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state. + + + + + Gets a value indicating if the SHIFT modifier key is in a pressed state. + + + + + Gets a value indicating if the CTRL modifier key is in a pressed state. + + + + + Gets a value indicating if the ALT modifier key is in a pressed state. + + + + + Notifies clients that a property value has changed. + + + + + Represents a base class for all container controls - + controls that contain other controls. + + + + + Initializes a new instance of the ContainerControlBase class. + + + + Adds a delegate to the list. + The object that owns the event. + The delegate to add to the list. + + + Removes a delegate from the list. + The object that owns the event. + The delegate to remove from the list. + + + Raises the specified event. + The object that owns the event. + An that contains the event data. + + + + Raises the BorderStyleChanged event. + + An EventArgs that contains the event data. + + + + Overrides Control.CreateControlsInstance. + + A new instance of ContainerControlBase.ContainerTypedControlCollection assigned to the control. + + + Raises the event. + A containing the event data. + + + Sets the value of the specified property. + The property whose value to set. + An object representing the value to assign to the property. + + + Retrieves the value of the specified property. + The property whose value to retrieve. + + + Removes the specified property from the properties collection. + The property to remove. + + + Retrieves a boolean value indicating if the specified property has been explicitly set. + The property to evaluate. + + + + Occurs when the value of the BorderStyle property has changed. + + + + + Encapsulates the information needed when creating a control. + + + + + Specifies the border style for a control. + + + + + Gets the space, in pixels, that is specified by default between controls. + + + + + Gets the internal spacing, in pixels, of the contents of a control. + + + + + this is the statistical weight of the container which is taken into account + when the contaner participates in a layout chain. + + + + + + + + Represents the method that will handle the + Activate event. + + + + + Represent a chord. + + + + + Initializes a new instance of the Chord class. + + + + + Initializes a new isntance of the Chord class using a list of keys. + + + + + + Initializes a new instance of the Chord class using a list of keys + and %chord modifier:Telerik.WinControls.Keyboard.ChordModifier%. + + + + + + + Initializes a new instance of the Chord class using a string of keys. + + + + + Clears the chord. + + + Retrieves the string representation of the instance. + + + Processes the modifiers. + + + + + + + + + Compares two instance for equality. + returns 0 if equal, a positive number if the first is greater than the + second, and a negative number otherwise. + + + + + + Gets or sets a list of keys in this instance. + + + Gets or sets the keys in this chord. + + + Gets the modifier strings. + + + Gets the chord keys. + + + Gets or sets the chord modifier. + + + + Represents keyboard shortcuts. + + + + Initializes a new instance of the Shortcuts class. + + + Initializes a new instance of the Shortcuts class. + + + + Adds the command bindings. + + + + + + Adds command bindings. + + + + + + Adds commands bindings. + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when a shortcut is activated. + + + + + Gets the input bindings. + + + + + Represents a mouse timer. + + + + + Represents a property. Supports telerik dependency properties system by + encapsulating a property of a certain RadElement instance. + + + + + Gets the hashcode of the Name string. Pre-computed for faster dictionary operations. + + + + + One-way binding + + + + + Two-way binding. Both source and target objects can modify the current value. + + + + + No notifications are raised for the bound object. + + + + + Binding value is preserved as local upon unbind. + + + + + Supports methods for bound properties of two instances. + + + + + Supports methods for general binding of properties of two + instances. + + + + + Initializes a new instance of the RadPropertyBinding class. + + + + + + + + + + + + + + + + + + + + + + Reset the bound properties + + + + + Updates the binding source property. + + + + + + + Gets the binding source. + + + + + Supports metadata for each class inherited from + + + + + Represents a property key. + + + + + Singleton. + + + + + Represents metadata for a RadProperty. RadPropertyMetadata describes the property. + For example, through DefaultValue property you can get or set the default value + for the property. + + + + Initializes a new instance of the RadPropertyMetadata class. + + + Initializes a new instance of the RadPropertyMetadata class using the default value of the property. + + + + Initializes a new instance of the RadPropertyMetadata class using a property + changed callback. + + + + + Initializes a new instance of the RadPropertyMetadata class using an object + and a property changed callback. + + + + Gets a value indicating whether the property is read-only. + + + Gets or sets the default value of the property. + + + Gets or sets a value indicating whether the property is inherited. + + + + Gets or sets the PropertyChangedCallback + + + + + Represents element's layout data. + + + + + Initializes a new instance of the ElementLayoutData class from + the element and its PerformLayoutType. + + + + + + + Gets or sets the element. + + + + + + + + + + + + + + + Represents an item that contains external control. There is no limitation for the control type - could + be any descendant of the class Control. + + + + + This constant is used internally. + + + + + Updates the visibility, which is bound to the item's current IsVisible state, of the hosted control. + + + + + Gets the instance of the hosted control. + + + + + Gets or sets whether the mouse and keyboard messages from the hosted control + can be routed to the owner control. + + + + You can use ElementTree.Control to get + the owner control. + + + To get the hosted control use HostedControl + property. + + + + + + Gets or sets the CausesValidation property of the hosted + control. + + + Using this property is equivalent to using + HostedControl.CausesValidation + + + + + Gets or sets a value that determines whether the control should be clipped when it requires more space than available. + + + + + Corresponds to the hosted control's Validated event + + + + + Corresponds to the hosted control's Validating event + + + + + Occurs when the element recieves focus. + + + + + Occurs when the element loses focus. + + + + + Defines the display style of an item. + + + + + Specifies that neither image nor text is rendered. + + + + Specifies that only text is rendered. + + + + Specifies that only an image is rendered. + + + + + Specifies that both an image and text are to be rendered. + + + + + Defines the gradient effects: Solid, Linear, + Radial, Glass, OfficeGlass, Gel, and Vista. + + + + + Indicates that no gradient effect is used. + + + + + Indicates that linear gradient effect is used. + + + + + Indicates that radial gradient effect is used. + + + + + Indicates that glass gradient effect is used. + + + + + Indicates that OfficeGlass gradient effect is used. + + + + + Indicates that OfficeGlassRect gradient effect is used. + + + + + Indicates that gel gradient effect is used. + + + + + Indicates that vista gradient effect is used. + + + + + Defines properties for the box-model; Elements are nodes of a tree, and a + rectangular box is generated for each element. + + + + Gets or sets a value indicating the box width. + + + Gets or sets a value indicating the left width. + + + Gets or sets a value indicating the top width. + + + Gets or sets a value indicating the right width. + + + Gets or sets a value indicating the botton width. + + + Gets a value indicating the offset. + + + Gets a value indicating the border size. + + + Gets a value indicating the horizontal width. + + + Gets a value indicating the vertical width. + + + + Defines methods and properties for a calapsible element. For example, + RadRibonBarChunk is a collapsible element. + + + + + Expands the element. + + + + + Collapses the element. + + + + + Gets or sets a value indicating the expanded size of the element. + + + + + Gets the max number of steps needed for collapsing the collapsible element. + + + + + Gets the current collapse step for the collapsible element. + + + + Defines properties and methods for the default layout engine. + + + Retrieves parent's padding. + + + Retrieves check size structure. + + + Sets coerced size taken as parameter. + + + Gets the face rectangle. + + + Invalidates layout - needs redrawing. + + + + + + + + + Retrieves a value indicating whether the element is valid wrap element. + + + Performs registered suspended layout. + + + Retrieves transformation point. The point is a Point structure. + + + Retrieves transformation by alignment point using size and inner bounds. + + + Retrieves Border offset. + + + Retrieves border size. + + + Retrieves the border size of its child. + + + Invalidates the cached border. + + + Gets a value indicating the available size. + + + + Represents a panel with two children an image element and a text element + + + + + Gets or sets a value indicating the image alignment. + + + + + Gets or sets a value indicating text alignment. + + + + + Gets or sets a value indicating the TextImageRelation: ImageAboveText, ImageBeforeText, Overlay, TextAboveImage, and TextBeforeImage. + + + + + Gets or sets a value indicating the DisplayStyle: None, Image, Text and ImageAndText. + + + + + Content within a user interface is often larger than the visible area that + the user can see. Large Telerik elements can be put in scroll viewer in order to + scroll their content in small visible area. + + Every element that support scrolling must implement this interface. Currently + only class RadScrollViewer implements this interface and all + Telerik elements that can be scrolled inherit that class. + + + + + + Scrolls down within viewport by one logical unit. + + + + + Scrolls left within viewport by one logical unit. + + + + + Scrolls right within viewport by one logical unit. + + + + + Scrolls up within viewport by one logical unit. + + + + + Scrolls down within viewport by one page. + + + + + Scrolls left within viewport by one page. + + + + + Scrolls right within viewport by one page. + + + + + Scrolls up within viewport by one page. + + + + + Scrolls vertically to the beginning of the content. + + + + + Scrolls vertically to the end of the content. + + + + + Scrolls horizontally to the beginning of the content. + + + + + Scrolls horizontally to the end of the content. + + + + + Scrolls both horizontally and vertically to the beginning of the content. + + + + + Scrolls both horizontally and vertically to the end of the content. + + + + + Gets whether the scroll viewer uses a virtualized viewport + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + This class supports the TPF internal infrastructure and is not intended to be used directly from your code. + + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Represents a base type for all primitives. Defines PaintPrimitive method that is + overridden in all derived classes. + Primitives are these RadElement(s) that are actually drawn on the + screen. + + + + Draws the primitive on the screen. + + + Gets or sets a value indicating whether the primitive should + be painted. + + + Virtual function that draws the primitive on the screen. + + + Gets a value indicating whether the primitive has content. + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + Represents a line that is drawn on the screen. + + + + Represents a filling that is drawn on the screen. + + + + + Draws the primitive on the screen. + + + + + Gets or sets background color. This property is applicable to radial, glass, office glass, gel, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, office glass, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or sets the number of used colors in the gradient effect. + + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + + + Gets or sets gradient angle for linear gradient. + + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + + + + Specifies whether the FillPrimitive should fill the GraphicsPath defined by its Parent.Shape. If false, it will fill its bounding rectangle. + + + + + This property is used internally! + + + + Draws the primitive on the screen. + + + Gets or sets the line width in pixels. + + + + Gets or sets the line orientation. Possible values are defined in the SepOrientation + enumeration. + + + + Gets or sets the line angle in degrees. + + + + Initializes a new instance of the ArrowPrimitive class using the + ArrowDirection enumeration. Possible directions are up, bottom, left, and + right. + + + + + Gets or sets the arrow direction. The possible values are contained in the + ArrowDirection enumeration: up, left, right, and bottom. + + + + Represents the internal part of the progress bar. + + + Draws the primitive on the screen. + + + + indicates that Progress Bar has Image + + + + + Gets or sets progress bar orientation. Possible values are indicates in + ProgressOrientaion enumeration: up, left, bottom, and right. + + + + + Indicates whether the progress bar style is dash. If both dash and hash are + true, hatch style is chosen. + + + + + Indicates whether the progress bar style is hatch. When true, the style is Hatch. + When both dash and hatch are true the style is hatch. + + + + Gets or sets the angle in degrees of the progress bar dash or hatch parts. + + + Gets or sets the step width in pixels between separators. + + + Gets or sets separators width in pixels. + + + + Gets or sets the value of the first progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the value of the second progress line. There could be two progress + lines in the progress bar. + + + + Specifies minimum value for the progress. + + + Gets or sets maximum value for the progress. + + + + indicates Stap value + + + + Gets or sets the first color that is used in gradient effect. + + + Gets or sets the second color that is used in gradient effect. + + + Represents a check box primitive that is drawn on the screen. + + + + Default constructor + + + + + Copy constructor + + + + + + GetBaseLineFromFont Method + + A Font + A float + + + + Get or sets HTML tag of the current text block + + + + + Get or sets FontSize the current text block + Note: recreate the font + + + + + Get or sets Image for the current text block + Current block should be named Image block + + + + + Get or sets the Size the current text block + + + + + current block content alignment + + + + + Get or set the text + + + + + BaseLine Property + + + + + Move text blocks to next line if there is not avaible space for the current line + + + + + + + Calculate Size of the whole FormattedTextBlock + + + + + + + + + + + Calculate text size of the Single Text Line + + + + + + + Draw whole FormattedTextBlock + + + + + + + + + + + + Occurs when the mouse is up the element. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + BaseLine Property + + + + + This method draws text to a Bitmap graphics which is used when an element/control is in Disabled state. GDI does not draw text well on a bitmap graphics surface, + hence the need for this method. + + + + Retrieves the text size. + + + + check is the Text contains html command + + text to be checked + text to check + + + + Main function for parsing process + + text to parse + base Font color + base font + base font size + base textaligment + Formatted text block that contains the whole structure + + + + Main function for parsing process + + text to parse + base Font color + base font + base font size + base textaligment + base font style etc. Regular, Bold + Formatted text block that contains the whole structure + + + + Parse single HTML tag and apply settings + + + + + + + + + + + process single token from Html string + + + + + + + a FormattedText object + + + + Handles <u><i><b> tags + + + + + + + + + Handles <color=value> + + + + + + + + Handles <size=[+|-] valie> + + + + + + + + Handles <font=value> + + + + + + + Gets or sets the color used to display a non-visited hyperlink. + + + + + Gets or sets the color used to display a visited hyperlink. + + + + + A String Tokenizer that accepts Strings as source and delimiter. Only 1 delimiter is supported (either String or char[]). + + + + + Constructor for StringTokenizer Class. + + The Source String. + The Delimiter String. If a 0 length delimiter is given, " " (space) is used by default. + + + + Method to get the number of tokens in this StringTokenizer. + + The number of Tokens in the internal ArrayList. + + + + Method to get the next (string)token of this StringTokenizer. + + A string representing the next token; null if no tokens or no more tokens. + + + + + Represents a track bar that is drawn on the screen. + + Extends + BasePrimitive + + + + + Gets or Sets RadTrackBar's ticks color + + + Gets or Sets the gradient angle of the SliderArea + + + Gets or Sets whether the TrackBar should fit to available size + + + Gets or Sets whether the SlideArea should be visible + + + Gets or Sets Ticks Visibility + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or Sets TrackBar's thumbWidth + + + + + Gets or Sets TrackBar's Orientation + + + + + Indicates the tick style of the progress bar. Possible values are members of + %TickStyles enumeration:Telerik.WinControls.Enumerations.TickStyles%: none, + topleft, BottomRight, and both. + + + + + The number of positions between tick marks + + + + + Gets or Sets the width of TrackBar's SlideArea + + + + Gets or sets a minimum int value for the trackbar position. + + + Gets or sets a maximum int value for the trackbar position. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Interface provides methods for registering and accessing . + + + + + Retrieves currently registered Service by the specified type. + + A type derived from + + + + + Registers the specified service with ourselves. + + An instance of type derived from . + + + + Represents abstact class that provides service capabilities. + + + + + Initializes a new instance of the RadService class. + + + + + Determines whether the service is operational and may perform actions. + + + + + + Starts the Service. + If the service was previously paused, it should be re-started with the Resume method. + + A context passed to the service. + + + + Stops currently working or previously stopped service. + + True to indicate that current operation ended successfully, false otherwise. + + + + Pauses a currently running operation. + + + + + Resumes previously paused operation. + + + + + Determines whether the service may be started. + Validation is as follows: + 1. Check whether Enabled is true. + 2. Check the context through IsContextValid method. An exception is thrown if context is invalid. + 3. Checks the current state - it should be Initial or Stopped. + + + + + + + Notifies that the service has been successfully started. + Allows inheritors to perform some additional logic upon start. + + + + + Notifies that a start request has occured. Cancelable. + + + + + + Notifies that a running operation has stopped. + Allows inheritors to perform some additional logic upon stop. + + + + + Notifies that a stop request has occured. Cancelable. + + + + + + Evaluates the provided context. Some services may not operate without certain context provided. + + + + + + + Performs the core Start logic. + + + + + Stops the service. Performs the core logic. + + + + + Aborts the current operation without applying any changes. + + + + + Ends the current operation and applies all changes. + + + + + Performs the core Resume logic. + + + + + Performs the core Pause logic. + + + + + Sets the provided object as the current context. + + + + + + Notifies for a change in the Enabled state. + + + + + Gets the context associated with the current operation. + This member is valid only while the Service is started or paused. + + + + + Raised when the service is about to be started. + + + + + Raised right after the service is started. + + + + + Raised when the service is about to be stopped. + + + + + Raised when the service is stopped. + + + + + Determines whether the service is available at design-time. False by default. + + + + + Gets the current state of the service. + + + + + Gets the name of the service. + + + + + Determines whether the Service is enabled (may be started). + If the Service is working and its is disabled, it will end its current operation. + + + + + Represents event data when RadService is starting. + + + + + Initializes a new instance of the RadServiceStartingEventArgs class. + + The context that is passed prior to the Start request. + + + + Gets the Context, passed to the service as a start parameter. + + + + + Represents the states of + + + + + The state of , when is created. + + + + + The state of , when is stopped. + + + + + The state of , when is working. + + + + + The state of , when is paused. + + + + + Represents event data when RadService is stopping. + + + + + Initializes a new instance of the RadServiceStoppingEventArgs class. + + + + + + Gets or sets the Commit parameter of the Stop request. + + + + + Gets the currently dragged instance. + + + + + Determines whether a default hint will be generated. Usually this is a snapshot of the dragged item. + + + + + Gets or sets the context associated with a drag operation. + + + + + Determines whether a drag operation may start. + + + + + Gets or sets the drop target for the operation. + + + + + Represents a service that manages drag and drop actions. + + + + + Initializes a new instance of the DragDropService class. + + + + + Begins a drag pass. Allows for service automation. + + The position of the mouse cursor in screen coordinates. + An instance of IDraggable that is dragged. + + + + Ends a drag pass. Allows for service automation. + + The end position of the mouse cursor in screen coordinates. + An instance of . + + + + Ends a drag pass. Allows for service automation. + + + + + Mocks a mouse move to a specific point. Allows for service automation. + + + + + Determines whether a drop operation will be committed (a valid drop target is found). + + + + + Gets or sets the cursor to be used when a valid drop target is hit-tested. + + + + + Gets or sets the cursor to be used when a valid drop target is hit-tested. + + + + + Determines whether a default preview is generated for a ISupportDrag instance if its GetPreview method returns null. + + + + + Gets current drop target, where the mouse cursor points. + + + + + Gets the current drop location in the context of the current target. + + + + + Gets the Hint window. + + The hint window. + + + + Gets or sets the image to be used as a preview while dragging. + + + + + Gets or sets the cursor to be used while dragging. + + + + + Defines the element's property options. + + + + + Indicates that there are no property options. + + + + + Indicates that the property can inherit a value. + + + + + Indicates that the property invalidates the layout. + + + + + Indicates that the property affects the layout. + + + + + Invalidates measure + + + + + Invalidates arrange + + + + + Invalidates parent's measure + + + + + Invalidates parent's arrange + + + + + Indicates that the property affects the display. + + + + + Indicates that the property affects the theme. + + + + + The property supports cancellation. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollection class. + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Gets or sets the owner of the collection. + + + + + Represents the method that will handle the TextChanging event. + + + + + + + Represents a Z-order comparer. The Z-Order determines the overlapping of the + RadElements. + + + + + Initializes a new instance of the RadElementZOrderComparer class. + + + + + + Compares the Z-order of the two RadElement arguments. Retrieves 0 if the + two elements are equal, positive number if the first element has a greater + Z-Order than the second argument, and a negative number otherwise. + + + + + + + + + + + + + + + + + + + + + + + Layout panel which docks its children to the sides of the area it contains + + + + + Gets the dock property of an element + + + + + + + Sets the docking position of an element + + + + + + + Gets or sets a property indicating whether the last child will fill the remaining area + + + + ElementWithCaptionLayoutPanel is a container for elements with a caption. + + + + Gets or sets a boolean value indicating whether there is a caption on the + top. + + + + + Layout panel is a container for other elements. It orders the contained + elements as a stack vertically or horizontally. When the elements pass through the + left end of the stacklayout, the last one is put on a new line. If horizontal is + chosen the width of all elements is the width of the largest element in the + column. + + + + + This constant is used internally. + + + + + ArrangeOverride + + + + + + + Gets or sets the elements orientation inside the stacklayout. + Possible values are horizontal and vertical. + + + + + Gets or sets a value indicating whether the elements have equal size. + + + + + Gets or sets a value indicating whether the elements have equal width. + + + + + Gets or sets a value indicating whether the elements have equal height. + + + + + ChildrenForcedSize + + + + + Gets or sets a value indicating whether maximum size dimensions are + flipped. + + + + Gets or sets a value indicating whether elements are collapsed on resize. + + + + Gets or sets a value indicating whether the panel will use its direct parent size to arrange the child elements or + whether it will use the first ancestor which is a layout panel or an element with AutoSizeMode = FitToAvailableSize. + + + + + Gets or sets a value indicating whether the panel is in Strip mode or not. When in Strip mode the panel doesn't + move the child elements to a new row when there's not enough space but rather arranges all elements on a single row. + + + + + Notifies all children when same child changes. Effectively redraws all + children in the panel. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the method that will handle HandleExecute, and Execucted events. + + + + + Represents the method that will handle HandleExecute, and Executed events. + + Initializes the event sender. + Initializes the event argument data. + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + Represents an arrow that is drawn on the screen. + + Extends %BasePrimitive:Telerik.WinControls.Primitives.BasePrimitive%. + + + + + Initializes a new instance of the ArrowPrimitive class. + + + + Initializes a new instance of the ArrowPrimitive class using the + ArrowDirection enumeration. Possible directions are up, bottom, left, and + right. + + + + + Draws the primitive on the screen. + + + + + Gets or sets the arrow direction. The possible values are contained in the + ArrowDirection enumeration: up, left, right, and bottom. + + + + + Defines the usage of a given attached property. + + + + + + + + + + + + + + + + + + + + + + + + + Represents the method that will be an alternative expression storage callback. + + + + + + + + + Represents the method that will be a coerce value callback. + + + + + + + + Represents the method that will be a property changed callback. + + + + + + Initializes the property change arguments. + + + + + Defines the source of current property value. See also + %RadObject.GetValueSource:
+ Telerik.WinControls.RadObject.GetValueSource%. +
+
+ + + Indicates that the reason is unknown. + + + + + Indicates that the default value is set. + + + + + Indicates that the property changed is inherited. + + + + + An overriden default value, has higher priority than Default and Inherited source. + + + + + Indicates that the reason for the property change is an applied theme. + + + + + Value is set locally through a CLR property setter. + + + + + Indicates that the reason for the property change is data binding. + + + + + A value is applied through two-way binding. + + + + + Indicates that the reason for the property change is an animation effect. + + + + + Defines a mask enumeration which is used when updating rad properties' values. + + + + + Defines the possible results for a property value update operation. + + + + + A composite value update is still running. + + + + + There was no need of updating the property. + + + + + The property has been successfully updated and its value has changed. + + + + + The property has been successfully updated but its value has not changed. + + + + + Update operation was canceled. + + + + + Defines basic methods for Telerik layout architecture. Since all layout panels + update their layout automatically through events, this functions are rarely used + directly. + + + + + Performs layout changes based on the element given as a paramater. + Sizes and places are determined by the concrete layout panel that is used. + For example if StackLayoutPanel is used, the element will be placed next to + the previously placed element. Since all layout panels update their layout + automatically through events, this function is rarely used directly. + + + + + + Retrieves the preferred size of the layout panel. If the proposed size is + smaller than the minimal one, the minimal one is retrieved. Since all layout + panels update their layout automatically through events, this function is + rarely used directly. + + + + + + + + + + Classes that implement IGraphics interface are capable of drawing on the + computer screen. Classes that implement this interface can use different APIs to + perform the actual drawing: GDI+, DirectX, etc. + + + + Changes the opacity level of the current device context. + + + Restores the opacity of the current device context to the previous value. + + + + Saves the current smothingMode, and changes the smoothingmode for the current device + context. + + + + Restores the smoothing mode to the previous value. + + + Draws a rectangle specified by a rectangle structure and a color. + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment and pen + width. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment and pen + width. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment, pen width and DashStyle. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment, pen width and DashStyle. + + + + + Updates the clipping region of the current Graphics object to exclude + the area specified by a Rectangle structure. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth and angle. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth, angle and DashStyle. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth, angle and DashStyle. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment and penWidth. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment and penWidth. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment, penWidth and DashStyle. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment, penWidth and DashStyle. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment and penwidth. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment and penwidth. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment, penwidth and DashStyle. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment, penwidth and DashStyle. + + + + Draws an ellipse defined by a bounding rectangle and color. + + + + Draws the specified text string with specified Rectangle, Font, Color, + ContentAlignment, StringFormat and Orientation. + + + + + Obsolete. Use the overload without ContentAlignment parameter. ContentAlignment should be provided through the StringFormat parameter. + + + + + Obsolete. Use the overload without ContentAlignment parameter. ContentAlignment should be provided through the StringFormat parameter. + + + + + Draws the specified Image object with the specified Rectangle, Image, + ContentAlignment and disable flag. + + + + + Draws the specified Image object with the specified Point, Image and disable + flag. + + + + + Draws a bitmap image specified by image object and position from the left-upper + corner of the current device context. + + + + + Draws a bitmap image specified by image object and position from the left-upper + corner of the current device context and specified opacity. + + + + + Draws a bitmap image specified by image object, position from the left-upper + corner of the current device context and specified size. + + + + + Draws a bitmap image specified by image object, position from the left-upper + corner of the current device context, opacity and specified size. + + + + Draws a path specified by GraphicsPath, color, pen alignment and pen width. + + + Draws a path specified by GraphicsPath, color, pen alignment, pen width and DashStyle. + + + Draws a path specified by GraphicsPath, color, pen alignment, pen width and DashStyle. + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth and angle. + + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth, angle and DashStyle. + + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth, angle and DashStyle. + + + + + Draws a line specified by color, initial x point, initial y point, final x and + final y point. + + + + + Draws a line specified by color, initial x point, initial y point, final x and + final y point. + + + + + Draws a line specified by color, initial x point, initial y point, final x, final y point and width + + + + + Draws a line specified by color, DashStyle, initial x point, initial y point, final x + and final y point. + + + + + Draws a redial gradient path specified by Graphicspath, bounding rectangle, color, + color gradient array, penalignment and penwidth. + + + + + Draws a redial gradient path specified by Graphics path, bounding rectangle, color, + color gradient array, pen alignment and pen width. + + + + + Draws a redial gradient path specified by Graphics path, bounding rectangle, color, + color gradient array, pen alignment and pen width. + + + + + Draws a custom gradient path specified by GraphicsPath, GraphicsPath for the + gradient, color, gradient color array, penalignment and penwidth. + + + + Creates a mask specified by color and bitmap. + + + + Fills the interior of a rectangle specified by the + borderRectangle and using for color the second argument. + + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + Defines the way the image is populated in the rectangle + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + Defines the way the image is populated in the rectangle + + + + Fills gradient rectangle specified by rectangle structure, color, color, color, + color, GradientStyles, and angle. + + + + + Fills the gradient rectangle specified by rectangle structure, color gradient array, + float offset array, GradientStyles, angle, gradientPercentage, and + gradientPercentage2. + + + + + Fills the gradient rectangle specified by rectangle structure, color gradient array, + float offset array, GradientStyles, angle, gradientPercentage, and + gradientPercentage2. + + + + + Fills the glass gradient rectangle specified by rectangle structure, color, color, + color, color, and gradient percentage. + + + + + Fills the office glass gradient rectangle specified by rectangle structure, color, + color, color, color, and gradientPercentage and gradientPercentage2. + + + + + Fills the vista gradient rectangle specified by rectangle structure, color, color, + color, color, gradient percentage, and gradientPercentage2. + + + + + Fills the gel gradient rectangle specified by rectangle structure, color, color, and + gradientPercentage. + + + + + Fills the interior of a polygon defined by an array of points specified by + Point structures and + color. + + + + + Fills the interior of a polygon defined by color and an array of points specified + by Point structures. + + + + + Fills the interior of a polygon defined by brush and an array of points specified + by Point structures. + + + + + Draws a round rectangle specified by Rectangle structure, color, float borderWidth, + and radius in pixels. + + + + + Translates the local geometric transformation of this TextureBrush object by + the specified dimensions. This method prepends the translation to the + transformation. + + + + + Translates the local geometric transformation of this TextureBrush object by the + specified dimensions. This method prepends the translation to the + transformation. + + + + + Rotates the local geometric transformation by the specified angle. This method + prepends the rotation to the transformation. + + + + + Resets the + world transformation matrix of this Graphics to the identity matrix. + + + + + Scales the world transformation matrix by the specified amount. + + + + Gets the clipping rectangle; the rectangle which needs redrawing. + + + Gets the current context device - graphics object. + + + Gets or sets the opacity level of the device context. + + + + Implements functionality for drawing GDI+ graphics. + + + + + Initializes a new instance of RadGdiGraphics class using GDI graphics context. + + + + + + Draws a border specified by rectangle structure, IBorderElement. + + + + + Disposes the object. + + + + + Disposes the GDI+ graphics context. + + + + + Gets or sets current GDI+ graphics context. + + + + Represents a border that is drawn on the screen. + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Gets the border thickness. + + An instance of representing the border thickness. + + + + + Gets or sets the + Border style. The two possible values are SingleBorder and FourBorder. In the + single border case, all four sides share the same appearance although the entire + border may have gradient. In four border case, each of the four sides may differ in + appearance. For example, the left border may have different color, shadowcolor, and + width from the rest. When SingleBorder is chosen, you should use the general + properties such as width and color, and respectively, when the FourBorder style is + chosen you should use properties prefixed with the corresponding side, for example, + LeftColor, LeftWidth for the left side. + + + + + + + + + + Gets or sets float value indicating the width of the border + measured in pixels. It is only used when SingleBorder style is chosen for the + BoxStyle property which effectively means that all four borders share the same + width. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the top border . This property + has effect only if FourBorders style is used in BoxStyle property, + and affects only the top border. + + + + + Gets or sets a float value width of the right border. This + property has effect only if FourBorders style is used in BoxStyle + property, and affects only the right border. + + + + + Gets or sets a float value width. This property has effect only if + FourBorders style is used in BoxStyle property, and affects only the + bottom border. + + + + + Gets and sets the left border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the left border. + + + + + Gets and sets the top border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the top border. + + + + + Gets and sets the right border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the right border. + + + + + Gets and sets the bottom border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the bottom border. + + + + + Gets and sets the left shadow color. This option applies only if + fourBorders is chosen, and affects only the left border. + + + + + Gets and sets the top shadow color. This option applies only if + fourBorders is chosen, and affects only the top border. + + + + + Gets and sets the right shadow color. This option applies only if + fourBorders is chosen, and affects only the right border. + + + + + Gets and sets the bottom shadow color. This option applies only if + fourBorders is chosen, and affects only the bottom border. + + + + + Specifies whether the BorderPrimitive should draw the GraphicsPath defined by its Parent.Shape. If false, it will draw its bounding rectangle. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Specifies the pattern of dashed lines drawn when the BorderDashStyle is custom. + + + + + Gets the border offset of the primitive. It effectively retrieves the upper-left + corner inside the primitive border. It takes into consideration the BoxStyle property + and possible different widths of the left and the upper side. + + + + Retrieves size of the combined bottom, right, upper, and left border. + + + Gets the horizontal width of the combined left and right border. + + + Gets the vertical width of the combined bottom and upper border. + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + Represents a check box primitive that is drawn on the screen. + + + + Gets or sets a value indicating the style of the check box primitive. + + + + + Gets or sets a value indicating whether to draw the background. + + + + + Gets or sets a value that determines whether the checkmark size is fixed to 8;8 pixels. + + + + + Gets or sets a value that determines the checkmark thickness. Use this property only when UseFixedCheckSize property is set to false. + + + + + Gets or sets a value that determines how the checkmark position in Indeterminate state will be adjusted vertical (in pixels). + + + + + Gets or sets a value that determines how the checkmark position in Indeterminate will be adjusted horizontal (in pixels). + + + + + Gets or sets a value that determines how the checkmark width in Indeterminate state will be adjusted (in pixels). + + + + + Gets or sets a value that determines how the checkmark height in Indeterminate state will be adjusted (in pixels). + + + + Represents an image that is drawn on the screen. + + + Draws the primitive on the screen. + + + + Gets or sets the flag controlling whether the image primitive fills up the available area horizontally + + + + + Gets or sets the flag controlling whether the image primitive fills up the available area vertically + + + + + Gets or sets the way ImagePrimitive will layout its image on the screen. + + + + + Gets or sets the desired size to be used when displaying the image. Works when ImageScalingMode is set to FitToSize. + + + + Gets or sets the image that is displayed. + + + + Gets the Image that will be painted on the screen, with settings such as Opacity and Flip applied. + + + + Gets or sets the image list index value of the displayed image. + + + Gets or sets the key accessor for the image in the ImageList. + + + Specifies whether the image should be taken from the SmallImageList or from the ImageList when the ImageIndex/ImageKey property is set. + + + + Gets or sets image scaling. Possible values are members of ImageScaling + enumeration: None and SizeToFit. + + + + Gets actual index. + + + Gets a value indicating whether the primitive has content. + + + + Gets or sets the transparent color for the image + + + + + Gets or sets the type of rotate/flip to be applied. + + + + + Represents text that is drawn on the screen. + Extends %BasePrimitive:Telerik.WinControls.Primitives.BasePrimitive%. + + + + + Draws the primitive on the screen. + + + + + Returns the text as a string. + + + + + Gets or sets the text rendering hint. + + + + + Gets or sets the text rendering hint used when this instance is disabled. + + + + + This property is used internally. + + + + + Gets or sets the displayed text. + + + + + Allow StretchHorizontally + + + + + Allow StretchVertically + + + + + Gets or sets a value indicating whether the additional label text is to be indicated by an ellipsis. + + + true if the additional label text is to be indicated by an ellipsis otherwise, false. Default value is true. + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + Gets or sets a value indicating whether the text should wrapped to the available layout rectangle. + + + true if the text should wrapped to the available layout rectangle otherwise, false. + + + + + Gets or sets a value indicating whether the control interprets an ampersand character (&) + in the control's Text property to be an access key prefix character. + + + true if the label doesn't display the ampersand character and underlines the character + after the ampersand in its displayed text and treats the underlined character as an access key; + otherwise, false if the ampersand character is displayed in the text of the control. + The default is true. + + + + + Gets or sets a value indicating whether if the keyboard accelerators are visible. + + + true if if the keyboard accelerators are visible otherwise, false. + + + + + Gets or sets the text orientation. Possible values are horizontal + and vertical. + + + + + Gets or sets whether the text will be flipped. + + + + + Gets or sets the text alignment. Possible values are included in + the ContentAlignment enumeration. + + + + + Gets a value indicating whether the primitive has content. + + + + + Gets or sets the shadow settings. + + + + + Gets an instance of the structure which contains information on how to render the text in this element + + + + + ComplexCondition evaluates two conditions related with a binary operator. + Inherits Condition + + + + + Defines a base abstract class that describes a condition which checks when to apply + a style rule. SimpleCondition evaluates when a property of an Element equals a + certain value. RoutedEventCondition evaluates if a routed event is currently + tunneling/bubbling through an Element. ComplexCondition evaluates two conditions + related with a binary operator. + + + + + Retrieves a value indicating whether to apply a style rule. + + + + + + + Retrieves a list of the affected properties of the current condition. + + + + + Retrieves a list of the affected events of the current condition. + + + + + Initializes a new instance of the ComplexCondition class. + + + + + Initializes a new instance of the ComplexCondition class from the first condition, + binary operator, and second condition. + + + + + + + + Evaluates the complex condition. + + + + + + + Retrives a string representation of the ComplexCondition class. + + + + + + Gets or sets the first condition. + + + + + Gets or sets the binary operator to be used for evaluating the condition. + + + + + Gets or sets the second condition. + + + + + A binary opeartor used by the CompolexCondition class. + + + + + Indicates conjunction. + + + + + Indicates disjunction. + + + + + Indicates exclusive or. + + + + + See BinaryOperator, + Condition + + + + + + + + + + + + + + + SimpleCondition evaluates when a property of an Element equals a certain value. + + + + + Initializes a new instance of the SimpleCondition class. + + + + + + Initializes a new instance of the SimpleCondition class from the setting to check, and the + unary operator to use. + + + + + + + Initializes a new instance of the SimpleCondition class from the property, value and unary operator + + + + + Initializes a new instance of the SimpleCondition class from the property and value + + + + + Evaluates the target RadElement using the unary operator. + + + + + + + Retrieves the string representation of the current instance. + + + + + + Gets or sets the unary operator of the simple condition. + + + + + Gets or sets the setting of the current property. + + + + + Represents a class selector. Class selectors are used to apply the same + customization to all elements that belong to the same class. This + behavior is very similar to that of the CSS class selectors. + + + + + Represents a base class for other selectors. telerik presentation framework + selectors are similar to CSS selectors. + + + + Represents a base class for the HierarchicalSelector class. + Selectors in telerik presentation framework are very similar to CSS + selectors. + + + Exposes methods and properties required for a general selector. + Selectors in telerik presentation framework are like CSS selectors. + + + + Gets value indicating whether the selector applies to the specified element + + + + + + + Gets value indicating whether the selector applies to the specified element, without checking conditions that apply to properties of the element. + + + + + + Retrieves an array of selected elements of the element given as an + argument. + + + + Method supports obsolete theming infrastructure + + + + + + Applies the property settings to the given element. Method supports obsolete theming infrastructure. + + + + Gets value indicating whether the selector Equals to the specified selector + + + + + + + Method supports obsolete theming infrastructure. + If HasApplyCondition returns true, this method should add the RadProperties that the selector depends, so style manager + can refresh afected element by the selector selector, when property changes + + + + + Gets a value indicating whether a condition has been applied. + + + + Gets or sets the child selector. + + + + + Selector Key + + + + Retrieves a value indicating whether the customization should be + un-applied to the given element.. + + + Retrieves a value indicating whether value is set for the element. + + + Gets or sets the Condition upon which to apply the customization. + + + Gets or sets the condition upon which to un-apply the customization. + + + Gets or sets a value indicating whether auto-un-apply is on or off. + + + Gets or sets a value indicating whether the current selector is the active one in style builder + + + Gets a value indicating whether the an apply condition is set. + + + Retrieves the selected elements of the given element. + + + Initializes a new instance of the class selector class. + + + + Initializes a new instance of the class selector class using string for the class + name. + + + + Gets or sets a value indicating the class name. + + + + Represents a name selector. Name selectors are used to apply customization to the + element having the specified name. This behavior is very similar to that of CSS id + selectors. + + + + Initializes a new instance of the NameSelector class. + + + + Initializes a new instance of the NameSelector class using the name of the + element. + + + + + Gets or sets the element's name. Customization is applied only to the element + having this name. + + + + + Initializes a new instance of the SelectorCollection class. + + + + + Initializes a new instance of the SelectorCollection class. + + + + + Represents a type selector. Type selectors are used to apply the same + customization to all elements of the same type. Behavior is very similar to that + of the CSS type selectors. + + + + Initializes a new instance of the TypeSelector class. + + + + Initializes a new instance of the TypeSelector class using the type that will be + affected. + + + + Gets or sets the element type that will be affected by the Type selector. + + + + Gets or sets value corresponding to the VisualState of the item that the selector targets + + + + + Gets the Color defined for the current element. + + + + + + + Sets the specified element as the "Current" for painting. + + + True if the element may be painted (there is a theme part defined for it), false otherwise. + + + + Paints the current element (previously specified by the SetCurrentElement method) + on the provided graphics surface, within the desired bounds. + + + + + + + Invalidates all opened forms upon a user-triggered change in this class. + + + + + closes all currently opened HTheme handles + + + + + Looks-up a HTheme handle. + + + + + + + Used internally by the framework to determine whether we just want to skip TPF's drawing. + + + + + Used to instruct the system skin painting mechanism that a custom painting will be performed + in the PaintElementSkin method. + + + + + Gets the currently attached element. + + + + + Returns true on Windows Vista or newer operating systems; otherwise, false. + + + + + Determines whether system skins will be applied on RadControls + + + + + Gets the only instance of this manager. + + + + + Mode is inherited by the parent chain. + + + + + Only direct element can use skins, value cannot be used for inheritance + + + + + The element and all its descendants may use skins. + + + + + Only direct element is forbidden to use skins, its children can compose this value up from the parent chain. + + + + + Element and all its descendants are forbidden to use system skins. + + + + + Contains definitions for the MS Windows Vista Aero theme. + + + + + Vista comboboxes + + + + + Vista DateTimePickers + + + + + Vista TextBoxes + + + + + Vista Headers + + + + + Vista Listboxes + + + + + Vista ListViews + + + + + Vista Flyout + + + + + Vista Flyout + + + + + Defines the possible formats used when serializing an archive package. + + + + + Binary format. + + + + + XML format. + + + + + Decompresses the stream using Binary format. + + + + + + + Decompresses the stream in the provided file using Binary format. + + + + + + + Gets the default format for this package. + + + + + Gets or sets the format used to persist the package. + + + + + Gets the list which contains the streams of this package. + + + + + Encapsulates information for a single stream within a zipped stream. + + + + + Gets or sets the context associated with the archive. + + + + + Gets the raw bytes of the underlying stream. + + + + + Gets or sets the already zipped raw bytes of the underlying stream. + + + + + Gets the count of the raw bytes that form the stream. + + + + + Gets or sets the name of this archive. + + + + + Gets the information about the format of the underlying stream. + + + + + Represents an archive package where each stream is a compressed XmlTheme. + + + + + Gets all the themes that reside within this package. + + + + + + An archived stream, which persists a XmlTheme instance. + + + + + Defines the types of registrations of a StyleSheet in the ThemeResolutionService. + + + + + Implements whether an instances of a class need validation after theme + deserialization. + + + + + Initializes a new instance of the RadStylesheetRelation class. + + + + + Determines whether the specified relation is equal to this one. + + + + + + + Gets or sets a value indicating the builder registration type. + + + + + Gets or sets a string value indicating the control type. + + + + + Gets or sets a string value indicating the element type. + + + + + Gets or sets a value indicating the control name. + + + + + Gets or sets a string value indicating the element name. + + + + + Marker attribute - informs StyleXmlSerializer that property should be serialized as an attribute, when serializing + RadControl style + + + + + Serializes components to XML, using the same rules that apply in Code Dom serialization, in VS designer. + + + + + Constructs new instance of the class, providing extended properties serialization information + + Extends the properties serialization information. + + + + Constructs new instance of the class, providing extended serialization information. + + Dictionary to use that maps type names to XML element names. Keys of the dictionary entries should be type full names. Values should correspond to the type instances. + Extends the properties serialization information. + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + object that owns the property (collection) currently deserialized + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + object that owns the property (collection) currently deserialized + + + + + + Reads the collection items if reader is positioned on an element that is a collection. + + + + + + property used to match objects in collection + + + + Reads the collection items if reader is positioned on an element that is a collection. + + + + + + property used to match objects in collection + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + property used to match objects in collection + + + + + States whether the list specified by toRead should not be cleared before reading + + + + Matches the instance of the element by an attribute value and then deserializes its properties. + If the instance is not found in existingInstancesToMatch, + new instance of type instanceType will be created and added to existingInstancesToMatch list. + + + + + + + the list with existing instances + index of the element if found in existingInstanceToMatch + + + + Reads properties of an object and subobject the reader is currently + positioned on. + + Xml reader instance, positioned on the element to read. + object instance to be processed + + + + Reads properties of an object and subobject the reader is currently + positioned on. + + Xml reader instance, positioned on the element to read. + parent object instance, null if there is no parent object information + object instance to be processed + + + + Override to provide alternative deserialization of objects. + + + + value indicating whether the object should be processed any further by serializer + + + + Deserializes a specified property of an object + + Xml reader, positioned on the element corresponding to the property to deserialize + Property descriptor of the property to deserialize + Object that owns the property to deserialize + + + + Override to provide custom processing of collection being deserialized + + + + + + True if the list does not require further processing by the deserializer, False to use the default deserialization + + + + Serializes the given object using the specified XmlWriter. + + + + + + + Provides logic to determine whether property value should be serialized. + + + ShouldSerialize value resolution is as follows: + + 1. ComponentSerializationInfo.SerializeDefaultValues + 2. overwriteMetadata contains attribute DesignerSerializationVisibilityAttribute.Content + 3. property.ShouldSerialize + + + + property to serialize + collection of extra serialization attributes for the property, corresponding to ComponentSerializationInfo + value indicating whether property value should be serialized + + + + Gets or sets value indicating whether the serializer will search all domain assemblies for a specified type + (by FullName) or will search only assemblies related to telerik + + + + + Utility class for Design - Time VisualStudio.NET project management. + + + + + Represents a property setting. Each property of Telerik controls can be + serialized and deserialized through an instance of this class. The + XMLPropertySetting instance describes the affected control, its property, and + the current value. XmlPropertySetting is very similar to CSS style properties. + + + + + Deserializes the property given as a string. For example, + Telerik.WinControls.VisualElement.ForeColor. + + + + + + + Deserializes the property given as a string. For example, + Telerik.WinControls.VisualElement.ForeColor. + + + + + + + Serializes the given dependency property with the given value. + + + + + + + + Deserializes the given dependency property with the given value. + + + + + + + + Retrieves a string representation of the class. + + + + + + Retrieves the name of the property. + + + + + + Retrieves the deserialized property. + + + + + + Gets or sets a string value indicating the property. + For example, Telerik.WinControls.VisualElement.ForeColor. + + + + + Gets or sets an object value indicating the value of the property. For example, + the value of Telerik.WinControls.VisualElement.ForeColor property + could be "navy" or "128, 0, 255, 63". + + + Here is how XmlPropertySetting determines whether to serialize Value or ValueString property when used in + ThemeComponent with CodeDom serialization. + + If the property belongs to an object from System, Telerik.WinControl or Telerik.WinCotnrols.UI assembly + then Value will be serialized (the actual object). For values that are defined in other assemblies ValueString + will be serialized. Tthis is Value, serialized as string using the TypeConverter specified by the corresponing RadProperty. + This is important for late-binding for types declared in different assemblies: egg. Docking + Otherwise a problem will occur when adding a ThemeComponent on the Form in a project which does not + reference Docking or Grid, etc, or custom controls assembly. + + For xml serializtion, property serialize always as string using the TypeConverter specified by the corresponing RadProperty. + + + + + Gets or sets the value serialized to string using the corresponding property TypeConverter. Generally used in rear cases by CodeDom + Serializer, if theme is serializaed to CodeDom + + + + + Represents + + + + + Represents a class selector that can be serialized and deserialized. + Telerik class selectors are very similar to CSS class selectors. + + + + + Initializes a new instance of the XmlClassSelector class. + + + + + Initializes a new instance of the XmlClassSelector class using an element + given as a string. + + + + + + Retrieves the string representation of the class. + + + + + + Retrieves a boolean value indicating whether this and the argument are equal. + + + + + + + Serves as a hash function for the XmlClassSelector type. + + + + + + Gets or sets a string value indicating the class. + + + + + Represents a serializable correspodence to the ComplexCondtion class. + + + + + Represents a serializable condition. + + + + + Build the expression string. + + + + + + Deserializes the condition. + + + + + + Deserializes the properties for a given condition. + + + + + + Creates a new instance of the Condition class. + + + + + + Compares two XmlComplexCondtion(s) for equality. + + + + + + + Retrieves a hash code for the current instance. + + + + + + Gets or sets a value indicating the first condition. + + + + + Gets or sets a value indicating the binary operator for the condition. + + + + + Gets or sets a value indicating the second condition. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents a group of property settings. + + + + + Retrieves the string representation of the instance. + + + + + + Determines whether the BasedOn property should be serialized. + + + + + + Gets or sets the collection of properties. + + + + + Gets or sets the collection of selectors. + + + + + Retrieve the name of the group. + + + + + Gets or sets value indicating the key of a repository item which this group is based on. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + + + + + + Represents a base class for the XML serialization converters. + + + + + + + + + + + + + + Gets or sets value indicating the key of the group uised to identfy the group when referenced + by other groups when basedOn is specified. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents a serializable correspondence to the SimpleCondtion class. + + + + + Compares two instances for equality. + + + + + + + Gets or sets a value indicating the UnaryOperator used in the condition. + + + + + Gets or sets the XML property setting for the instance. + + + + + Gets value indicating the location of the theme file that the XmlStyleSheet has been loaded from. + + + + + Represents a registration for the Style Builder. The class is responsible + for the serialization and deserialization of a group of telerik controls. + + + + + Initializes a new instance of the XmlStyleBuilderRegistration class. + + + + + Initializes a new instance of the XmlStyleBuilderRegistration class + from xml style sheet, control type, and element type. + + + + + + + + Retrieves the style builder registration. + + + + + + Gets or sets a string value indicating the builder type. + + + + + Gets or sets a value indicating the xml builder data. + + + + + Represents a theme for a telerik control. Themes can be serialized and + deserialized, thus saving and loading the theme for a given control. + XmlTheme implements IXmlSerializable which provides custom formatting for + XML serialization and deserialization. + + Removed the Serializable attribute since many of the classes used in this class are also not serializable. + This causes the deserialization of the theme to fail when requested in the Visual Studio designer from the + theme components context menu. + [Serializable] + + + + Initializes a new instance of the XmlTheme class. + + + + + Initializes a new instance of the XmlTheme class from XmlStyleSheet, + control type, and element type. + + + + + + + + Loads a theme from a System.IO.Stream instance. + + + + + + + Load a XML theme from a TextReader. + + + + + + + Loads a theme from a XML reader. + + + + + + + Saves the theme to a XMLWriter. + + + + + + Retrieves the serialization string of the given type. + + + + + + + Deserializes the provided deserialization string. + + + + + + + Get the StyleRepository associated with this theme. + + StyleReposity contains named lists of PropertySettings, reffered by Key property, that can be inherited by the PropertySettingGroups of this theme. + This is done by associating BsedOn property of the property setting group with PropertySettings list key. + Since each theme can have only one repository, when different XmlTheme are registered with repositories for the same theme + the repositories are merged. If a PropertySettings list with the same Key is defined in several XmlTheme repository instances, the last laoded one overrides + any existing list. + + + + + + Gets value indicating whether this XmlTheme defines StyleRepository + + + + + Gets or sets a string value indicating the theme name. + + + + + Gets or sets the Builder Registration for the theme. Each builder registration + corresponds to a theme for single telerik control. + + + + + Gets or sets value corresponding to the VisualState of the item that the selector targets + + + + + Class used by RadThemeManager to recognize classes that load themes from resources in a class library + + + + + This method is used internally. + + + + + Gets the ThemeName of the theme component + + + + + this class is used internally. + + + + + Combines ThemeRoleName with state names using "." as delimiter and sets the result to AttachedElement.Class + + + + + + + Combines state names, using stateDelimiter Character. + + + Egg. combining "Selected" and "MouseOver" gives "Selected.MouseOver"; + combining "" and "MouseOver" gives "MouseOver" + + + + + + + + Represents event data for the + + + + + Represents the method that will handle a ThemeChanged event. + + + Initializes the event sender. + + + Initializes the %event argument:ThemeChangedEventArgs%. + + + + + A Class that represents storage for themes in an application that contains + RadControls. + + + + A theme consists of one or more + StyleSheet objects, and one or more + StyleSheetRelation objects. + + + The style sheet object defines the appearance + and/or certain aspects of behavior of one RadControl or + RadItem. + + StyleSheetRelation objects contain data that maps a control + and a certain StyleSheet. + Theme.ThemeName is used by RadControl to + automatically query ThemeResolutionService, upon + Initialize and retrieve its StyleSheet. Use the + API of this class to register, un-register, query themes storage for specific + themes by attributes like Name, certain relations, etc. + + + + + Returns a previously loaded font by given font name. + + The name of font. + The FontFamily or null if font with given name is not loaded. + + + + Call to subscribe for theme change event, for the specified control theme class name. Note the event may be fired from another thread + + + + + + Call to unsubscribe for theme change event. + + + + + + Gets a list of all registered themes. + + + + + + Gets any themes registered for a specific control by control type name or control name. + + + + + + + Get previously registered theme by theme name. + + + + + + + Applies the specified ThemeName to all RadControls that are children of the specified Control and its child Controls + + + + + + + Loads a theme package, stored in the provided file. + + + + + + + Loads a theme package stored in the provided file. + + + True to throw an exception if it occurs, false otherwise. + + + + + Loads a theme package, stored in the provided embedded resource. + The calling assembly is used to read the manifest resource stream. + + + + + + + Loads a theme package from an embedded resource in the specified assembly. + + + + + Loads a theme package stored in the provided embedded resource. + + + True to throw an exception if it occurs, false otherwise. + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + Suspends the ThemeChange event. This method is used internally. + + + + + Resumes the ThemeChange event. This method is used internally. + + + + + Resumes the ThemeChange event. This method is used internally. + + Determines whether to fire the ThemeChanged event. + + + + Creates and registers an empty Theme if one is not already registered. + + + + + + + Clears all stylesheets registered previously with the themeName specified. + + + + + + Gets all StyleSheets registered under a theme name. + + + + + + + Registers a StyleSheet found in styleBuilderRegistration using also the registration details specified under the theme name specified. + + + + + + + Registers a StyleBuilder for specific type of controls and specific type of elements under the name given. + + + + + + + + + Removes an instance of the class + from the dictionaries with registered style builders. + + The instance to remove. + + + + Gets or sets value indicating the theme name that will be used by all controls in the application. + + + If the value of this property is null or empty each control will be assigned a theme, corresponding on the + property of the control. Otherwise the ThemeName property will be disregarded. + If a specific control in the application has no theme registered with the name specified by ApplicationThemeName, it will be + assigned its ControlDefault theme name. + + + + + Determines whether animations are allowed across entire application. + + + + + "ControlDefault" theme name + + + + + Represents a property settings collection. Property settings are very + similar to CSS style properties. + + + + + Gets or sets the StyleBuilder instance. + + + + + Gets the name of the theme for which StyleBuilder is required. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of the . + + + + + + + Initializes a new instance of the based on another . + + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + Copies the elements of an IList of RadElements to the end of the . + + + An List of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Moves the element at position a given position to a new position + + The zero-based index of the element to move + The zero-based index of the position where the element is to be placed + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Provides XmlSerialization parsing for ColorBlend extention and + calculates color-blending values for color values of PropertySetting and AnimatedPropertySettings. + + + + + + + IValueProvider GetValue implementation + + + + + + Gets the original Color value + + + + + Gets value corresponding to the name of the ThemeParameter used for color blending calculations + + + + + Instances of this type are used by to provide information used to control + XML of properties and sub-objets. + + + + + Gets a collection of attributes for properties that would override the original designer serialization + metadata for these properties + + + + + Gets or sets value indicating whether the serializer will use the serialization visibility attributes + of the properties of the serialized objects or only those found in + + + + + Gets or sets value indincating whether the serializer will force serialization of properties, disregarding + the values of the DefaultValue attribute or ShouldSerialize method + + + + + Attribute for telerik theme serialization. + + + + + Base class for all block transformations. + + + + + Defines the basic operations of the cryptographic or compression transformations. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets transformation header (if required). + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Releases the resources used by the current instance of the ZipArchive class. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Validates parameters of the input buffer. + + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Indicates whether buffer block size should be validated. Should be true for the TransformBlock and false for the TransformFinalBlock. + Indicates whether count can be zero. + + + + Validates parameters of the transform operation. + + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + Indicates whether input count can be zero. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets transformation header (if required). + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Gets or sets value which indicates whether the transformation uses + input buffer of the fixed size. + + + + + Implements Adler-32 checksum algorithm. + + + + + Interface which must be implemented by all implementations of the checksum algorithm. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Base for modulo arithmetic (largest prime smaller than 65536). + + + + + Number of iterations we can safely do before applying the modulo. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Implements CRC-32 checksum algorithm. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Specifies values that indicate compression method. + + + + + The file is stored (no compression). + + + + + The file is Deflated. + + + + + The file is compressed using LZMA algorithm. + + + + + Represents stream which allows read/write compressed information from/to given input stream. + + + + + Operational stream. Base class for cryptographic and compression streams. + + + + + Initializes a new instance of the OperationStream class. + + The base input/output stream. + Stream operational mode. + Specified mode is not allowed for the given stream. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Clears all buffers for this stream and causes any buffered data to be written to the underlying device. + + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the + values between offset and (offset + count - 1) replaced by the bytes read from the current source. + The zero-based byte offset in buffer at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many + bytes are not currently available, or zero (0) if the end of the stream has been reached. + The associated with + current object does not match the underlying stream. + For example, this exception is thrown when using with an underlying stream that is write only. + The parameter is less than zero.-or- The parameter is less than zero. + The sum of the and parameters is larger than the length of the buffer. + + + + Sets the position within the current stream. + + A byte offset relative to the origin parameter. + A value of type SeekOrigin indicating the reference point used to obtain the new position. + The new position within the current stream. + + + + Sets the length of the current stream. + + The desired length of the current stream in bytes. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies count bytes from buffer to the current stream. + The zero-based byte offset in buffer at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + + + + Validate read/write operation parameters. + + Operation buffer. + Offset. + Count. + Indicates whether count can be zero. + + + Updates the underlying data source or repository with the current state of the buffer, then clears the buffer. + The current stream is not writable.-or- The final block has already been transformed. + + + + Ensure that current stream is not disposed. + + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Initialize internal buffers. + + + + + Initialize transformation. + + + + + Read transformation header. + + + + + Write transformation header. + + + + + Gets a value indicating whether the current stream supports reading. + + + + + Gets a value indicating whether the current stream supports seeking. + + + + + Gets a value indicating whether the current stream supports writing. + + + + Gets a value which indicates whether the final buffer block has been written/read to/from the underlying stream. + true if the final block has been flushed or end of underlying stream is reached; otherwise, false. + + + + Gets the length in bytes of the stream. + + + + + Gets or sets the position within the current stream. + + + + + Gets value which specify total plain bytes count (not-compressed and not-encrypted). + + + + + Gets value which specify total transformed bytes count (compressed or encrypted). + + + + + Gets input stream. + + + + + Gets stream mode. + + + + + Gets or sets value which indicates whether this stream is disposed already. + + + + + Gets or sets block transformation is used for read/write operations. + + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression settings. + Specified mode is not allowed for the given stream. + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression settings. + Indicates whether the CRC32 (true) or Adler32 (false) checksum algorithm will be used. + Encryption settings. + Specified mode is not allowed for the given stream. + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression algorithm. + Checksum algorithm. + Specified mode is not allowed for the given stream. + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the + values between offset and (offset + count - 1) replaced by the bytes read from the current source. + The zero-based byte offset in buffer at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many + bytes are not currently available, or zero (0) if the end of the stream has been reached. + The associated with + current object does not match the underlying stream. + For example, this exception is thrown when using with an underlying stream that is write only. + The parameter is less than zero.-or- The parameter is less than zero. + The sum of the and parameters is larger than the length of the buffer. + + + + Sets the length of the current stream. + + The desired length of the current stream in bytes. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies count bytes from buffer to the current stream. + The zero-based byte offset in buffer at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Initialize compressed stream. + + The base input/output stream. + Compression algorithm. + Checksum algorithm. + + + + Event occurs when calculation of the checksum for this stream is completed. + + + + + Gets checksum calculated for this stream starting from + the first read/write operation and up to the Flush call. + + + + + Gets the compressed size of the stream. + + + + + Gets or sets the checksum algorithm will be used during compression-decompression. + + + + + Base class for the compression settings. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + Called when property value is changed. + + Property name. + + + + Occurs when a property value changes. + + + + + Gets or sets compression method. + + + + + Represents base class for all compression and decompression functionality. + + + + + Initializes a new instance of the CompressionTransformBase class. + + + + + Transforms the specified region of the input byte array and copies + the resulting transform to the specified region of the output byte array. + + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Transforms current input buffer. + + The final block flag. + True when output still available. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Specifies values for header type of the compressed stream. + + + + + Compressed stream does not contain a header. + + + + + Compressed stream is formatted in accordance with RFC 1950 + (ZLIB Compressed Data Format Specification version 3.3). + + + + + The compression level to be used for compression of data. + + + + + The data will be simply stored, + no compression should be performed. + + + + + Same as NoCompression. + + + + + The fastest but least effective compression. + + + + + A synonym for Fastest. + + + + + A little slower, but better, than level 1. + + + + + A little slower, but better, than level 2. + + + + + A little slower, but better, than level 3. + + + + + A little slower than level 4, but with better compression. + + + + + The default compression level with + a good balance of speed and compression efficiency. + + + + + A synonym for Optimal. + + + + + Pretty good compression. + + + + + Better compression than Level7. + + + + + The best compression, where best means + greatest reduction in size of the input data. + This is also the slowest compression. + + + + + A synonym for Best compression level. + + + + + Class which implements Deflate compression algorithm. + + + + + Interface which must be implemented by all implementations of the compression algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Represents a state of current block. + + + + + Block is not completed, need more input or more output. + + + + + Block flush performed. + + + + + Finish started, need only more output at next deflate. + + + + + Finish done, accept no more input or output. + + + + + Compressor which implements Deflate compression. + + + + + Represents base class for Deflate compression and decompression functionality. + + + + + Initializes a new instance of the DeflateTransformBase class. + + Deflate settings. + + + + The default number of window bits for the Deflate algorithm. + 15 is the maximum number of window bits for the Deflate algorithm (32K window). + + + + + Initializes a new instance of the DeflateCompressor class. + + Deflate settings. + + + + Creates RFC 1950 (ZLIB Compressed Data Format Specification version 3.3) header + to be written into the output stream. + + + + + Restore the heap property by moving down the tree starting at specified node, + exchanging a node with the smallest of its two sons if necessary, stopping + when the heap property is re-established (each father smaller than its two sons). + + The tree. + Index of node. + + + + Transforms current input buffer. + + The final block flag. + True when still output available. + + + + Scan a literal or distance tree to determine the frequencies of the codes + in the bit length tree. + + The tree. + Max code. + + + + Construct the Huffman tree for the bit lengths. + + The index of the last bit length code to send. + + + + Send the header for a block using dynamic Huffman trees: the counts, + the lengths of the bit length codes, the literal tree and the distance tree. + + Length of literal codes. + Length of distance codes. + Length of bit length codes. + + + + Send a literal or distance tree in compressed form, + using the codes in bit length tree. + + The tree. + Max code. + + + + Output a block of bytes on the stream. + + Buffer. + Start index. + Length. + + + + Save the match info and tally the frequency counts. + + Distance. + Length or unmatched char. + Return true if the current block must be flushed. + + + + Send the block data compressed using the given Huffman trees. + + Literal tree. + Distance tree. + + + + Flush the bit buffer and align the output on a byte boundary. + + + + + Copy a stored block, storing first the length + and its one's complement if requested. + + Buffer. + Length. + Should send the header. + + + + Send a stored block. + + Offset in window. + Length. + The flag of last block. + + + + Determine the best encoding for the current block: dynamic trees, static + trees or store, and output the encoded block. + + Offset in window. + Length. + The flag of last block. + + + + Fill the window if necessary. + + + + + Compress as much as possible from the input stream, return the current + block state. + This function does not perform lazy evaluation of matches and inserts + new strings in the dictionary only for unmatched strings or for short + matches. It is used only for the fast compression options. + + Flush flag. + Returns the current block state. + + + + Copy without compression as much as possible from the input buffer. + + Flush flag. + Returns the current block state. + + + + Same as above, but achieves better compression. We use a lazy + evaluation for matches: a match is finally adopted only if there is + no better match at the next window position. + + Flush flag. + Returns the current block state. + + + + Initialize the tree data structures. + + + + + Sets configuration parameters by the compression level. + + Compression level. + + + + Flush as much pending output as possible. + All deflate output goes through this function. + + + + + Read a new buffer from the current input stream, update + total number of bytes read. All deflate input goes through + this function. + + Buffer. + Start position in buffer. + Size. + + + + + Represents configuration of deflate algorithm. + + + + + Returns instance of Config class by the compression level. + + Compression level. + Instance of Config class. + + + + Use a faster search when the previous match is longer + than this reduce lazy search above this match length. + + + + + Attempt to find a better match only when the current match is + strictly smaller than this value. This mechanism is used only for + compression levels >= 4. For levels 1,2,3: MaxLazy is actually + MaxInsertLength (See DeflateFast). + Do not perform lazy search above this match length. + + + + + Quit search above this match length. + + + + + To speed up deflation, hash chains are never searched beyond this length. + A higher limit improves compression ratio but degrades the speed. + + + + + Represents constants for deflate compression. + + + + + Z-lib header: the deflate compression method. + + + + + Bit length codes must not exceed MaxBitLengthBits bits. + + + + + Repeat previous bit length 3-6 times (2 bits of repeat count). + + + + + Repeat a zero length 3-10 times (3 bits of repeat count). + + + + + Repeat a zero length 11-138 times (7 bits of repeat count). + + + + + Decompressor which implements Deflate compression. + + + + + Initializes a new instance of the DeflateDecompressor class. + + Deflate settings. + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + + Transforms current input buffer. + + The final block flag. + True when still output available. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Represents a state of decompressor process. + + + + + Represents a type of block in deflated data. + + + + + Compression settings of the Deflate method. + + + + + Initializes a new instance of the DeflateSettings class. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + The compression level of deflate algorithm to be used for deflating by a CompressedStream. + + + + + Gets or sets compression stream header type. + + + + + Inflates data using a lookup table combined with a HuffmanTree. + + + + + Initializes static members of the InflateTree class. + + + + + Initializes a new instance of the InflateTree class. + + + + + Tries to get enough bits from input and try to decode them. + + Input buffer. + Next symbol or -1 when there is no enough bits in input. + + + + Calculate the huffman codes according to RFC 1951. + + Huffman codes. + + + + Represents input buffer for inflating data using Huffman coding. + + + + + Initializes a new instance of the InputBitsBuffer class. + + + + + Checks available bits in the bit buffer. + + Count of bits. + True if available. + + + + Gets available bits from buffer. + + Count of required bits. + Bits data. + + + + Read bytes to output buffer. + + Output buffer. + Offset. + Length. + Count of bytes which are read. + + + + Set current working buffer. + + Bytes buffer. + Offset. + Length. + + + + Skips bits in bit buffer. + + Count of bits to skip. + + + + Skips to the next byte boundary. + + + + + Gets 16 or more bits into bit buffer. + + Bit buffer. + + + + Available bits in bit buffer. + + + + + Available bytes. + + + + + Is input required. + + + + + Represents output window for inflating data using Huffman coding. + + + + + Initializes a new instance of the OutputWindow class. + + + + + Adds a byte to output window. + + Byte. + + + + Copies bytes within output window. + Moves backwards distance bytes and copy length bytes. + + Length. + Distance. + + + + Read bytes to output buffer. + + Output buffer. + Offset. + Length. + Count of bytes which are read. + + + + Reads bytes from input. + + InputBitsBuffer. + Length. + Count of read bytes. + + + + Gets available bytes count. + + + + + Gets free bytes count. + + + + + Represents Huffman static tree. + + + + + Initializes static members of the StaticTree class. + + + + + Initializes a new instance of the StaticTree class. + + + + + Static tree. + + + + + Extra bits for each code. + + + + + Base index for extra bits. + + + + + Max number of elements in the tree. + + + + + Max bit length for the codes. + + + + + Deflates data using Huffman coding. + + + + + Reverse the first specified bits of a code, + using straightforward code (a faster method would use a table). + + Value. + The length of bits to reverse. + Result of reverse. + + + + Map from a distance to a distance code. + + + No side effects. DistanceCode[256] and DistanceCode[257] are never used. + + + + + Construct one Huffman tree and assigns the code bit strings and lengths. + Update the total bit length for the current block. + + Deflate compressor. + + + + Generate the codes for a given tree and bit counts (which need not be optimal). + + The tree. + Max code. + Bit length count. + + + + Compute the optimal bit lengths for a tree and update the total bit length for the current block. + + Deflate compressor. + + + + The Optimization Data for LZMA match finder. + + + + + Represents the LZMA range encoder. + + + + + Class which implements Deflate compression algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Compressor which implements LZMA compression. + + + + + Represents base class for LZMA compression and decompression functionality. + + + + + Initializes a new instance of the class. + + Settings. + + + + Initializes a new instance of the class. + + Settings. + + + + Creates transformation header to be written into the output stream. + + + + + Transforms current input buffer. + + The final block flag. + True when output still available. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources + (true) on only unmanaged resources (false) should be released. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Decompressor which implements LZMA decompression algorithm. + + + + + Initializes a new instance of the class. + + Settings. + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Represents a state of decompressor process. + + + + + Specifies values for a type of the match finder for LZMA compression. + + + + + The match finder uses two bytes for the hash. + + + + + The match finder uses four bytes for the hash. + + + + + Compression settings of the Deflate method. + + + + + Initializes a new instance of the class. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + Gets or sets dictionary size [0 - 27]. + Default value is 23 (8MB). + + + + + Gets or sets number of position state bits for LZMA [0 - 4]. + Default value is 2. + + + + + Gets or sets number of literal context bits for LZMA [0 - 8]. + Default value is 3. + + + + + Gets or sets number of literal position bits for LZMA [0 - 4]. + Default value is 3. + + + + + Gets or sets number of fast bytes [5 - 273]. + Default value is 32. + + + + + Gets or sets a type of the match finder. + + + + + Gets or sets length of the stream for compressing. + Used for single compressed streams only (not for ZIP archives). + Allows to avoid using the end of stream marker for compressed stream. + If it is set to -1, then the marker will be used. + + + + + Gets or sets length of the stream for decompressing. + + + + + Gets or sets a value which indicates whether + the compression stream should use zip header type. + + + + + Represents LZMA state for compressing and for decompressing. + + + + + Class which implements Store (no compression) algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Compressor which implements Store compression. + + + + + Base class for the Store (no compression) transformation. + + + + + Initializes a new instance of the StoreTransformBase class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Decompressor which implements Store compression. + + + + + Compression settings of the Store method. + + + + + Initializes a new instance of the StoreSettings class. + + + + + Platform independent manager. + + + + + Interface which provides platform-specific operations. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + + + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + Encoding. + true if encoding is allowed in the ZIP file. + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Cryptographic stream. Allows encrypt or decrypt information from the given input stream. + + + + + Initializes a new instance of the CryptoStream class. + + Input stream. + Stream operational mode. + Crypto provider. + Specified mode is not allowed for the given stream. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Crypto provider which implements traditional PKWARE encryption. + + + + + Interface which provides method to encrypt/decrypt data in the ZIP archive. + + + + + Creates an decryptor object. + + A decryptor object. + + + + Creates an encryptor object. + + An encryptor object. + + + + Initialize crypto provider using given encryption settings. + + Encryption settings. + + + + Creates an decryptor object. + + A decryptor object. + + + + Creates an encryptor object. + + + + + + Initialize crypto provider using given encryption settings. + + Encryption settings. + + + + Base class for the transformations which implements traditional PKWARE encryption/decryption. + + + + + Initializes a new instance of the DefaultCryptoTransformBase class. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Update encryption keys. + + Byte. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Gets encoding byte. + + + + + Crypto transformation which implements traditional PKWARE decryption. + + + + + Initializes a new instance of the DefaultDecryptor class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Encryption settings for the default cryptographic provider (traditional PKWARE encryption. + + + + + Base class for the encryption settings. + + + + + Called when property value is changed. + + Property name. + + + + Occurs when a property value changes. + + + + + Gets name of the algorithm will be used for encryption/decryption. + + + + + Initializes a new instance of the DefaultEncryptionSettings class. + + + + + Gets or sets password will be used for encryption/decryption. + + + + + Gets or sets last modification file date and time. + + + + + Crypto transformation which implements traditional PKWARE encryption. + + + + + Initializes a new instance of the DefaultEncryptor class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + The exception that is thrown when a data stream is in an invalid format. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with a specified error message. + The error message that explains the reason for the exception. + + + Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. + The error message that explains the reason for the exception. + The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. + + + + Common interface for the data structures defined in the ZIP File Format Specification. + + + + + Read data from the binary reader. + + Binary reader to read data from. + true if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents the compression types. + + + + + This is the default compression type which uses the deflate algorithm. + + + + + This compression type uses the LZMA algorithm. + + + + + Represents the compression methods. + + + + + This is the default compression method. + + + + + This is the no-compression method. + + + + + This is the fastest compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is the the best compression method. + + + + + This is the the best compression method. + + + + + Represents a stream that can read from a compressed stream. + + + + + Initializes a new instance of the ZipInputStream class. + + + The stream that will be decompressed. + + + + + Reads a byte from the stream and advances the position within the stream + by one byte, or returns -1 if at the end of the stream. + The unsigned byte cast to an 32-bit integer, or -1 if at the end of the stream. + + + + + The stream that is decompressed. + + + + + Gets the uncompressed size of the stream. + + + + + Represents a stream that can write into a compressed stream. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + /// + The compression method. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + /// + The compression level. + + + + + Writes a byte to the current position in the stream and advances the + position within the stream by one byte. + + The byte to write to the stream. + + + + Create DeflateSettings for specified compression level. + + Compression level. + DeflateSettings. + + + + The stream that is decompressed. + + + + + Gets the uncompressed size of the stream. + + + + + Represents the ZipPackage class. + + + + + Represents a package of compressed files in the zip archive format. + + + + + Value that describes the type of action the zip archive can perform on entries. + + + + + Binary reader is used to read from working stream. + + + + + Binary writer is used to write to working stream. + + + + + Track whether Dispose has been called. + + + + + Encoding of the entry name. + + + + + Original archive stream. If this stream doesn't support seeking then + temporary working stream will be created. + + + + + Working archive stream. If original stream doesn't support seeking then + temporary working stream will be created. + + + + + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + + + + + Indicates whether the central directory have been read. + + + + + ZIP Archive End of Central Directory. + + + + + ZIP64 End of Central Directory Locator. + + + + + ZIP64 End of Central Directory Record. + + + + + ZIP entries. + + + + + Initializes a new instance of the ZipArchive class from the specified stream. + + The stream that contains the archive to be read. + + + + Initializes a new instance of the ZipArchive class. + + The stream that contains the archive to be read. + One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries. + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter + only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Initializes a new instance of the ZipArchive class. + + The stream that contains the archive to be read. + One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries. + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter + only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + Compression settings. + Encryption settings. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Creates an empty entry that has the specified path and entry name in the zip archive. + + A path, relative to the root of the archive, that specifies the name of the entry to be created. + An empty entry in the zip archive. + The entry name is empty. + The entry name is null. + The zip archive does not support writing. + The zip archive has been disposed. + + + + Creates an empty entry that has the specified path and entry name in the zip archive. + + A path, relative to the root of the archive, that specifies the name of the entry to be created. + Compression settings. + An empty entry in the zip archive. + The entry name is empty. + The entry name is null. + The zip archive does not support writing. + The zip archive has been disposed. + + + + Releases the resources used by the current instance of the ZipArchive class. + + + + + Retrieves a wrapper for the specified entry in the zip archive. + + A path, relative to the root of the archive, that identifies the entry to retrieve. + A wrapper for the specified entry in the archive; null if the entry does not exist in the archive. + The entry name is empty. + The entry name is null. + The zip archive does not support reading. + The zip archive has been disposed. + The zip archive is corrupt, and its entries cannot be retrieved. + + + + Release the unmanaged resources used by the current instance of the ZipArchive class. + + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + + + + Called by the Dispose() and Finalize() methods to release the unmanaged + resources used by the current instance of the ZipArchive class, and optionally + finishes writing the archive and releases the managed resources. + + True to finish writing the archive and release unmanaged and managed resources; + false to release only unmanaged resources. + + + + Dispose streams. + + + + + Writes archive to the original stream. + + + + + Occurs when a property value changes. + + + + + Gets the collection of entries that are currently in the zip archive. + + The zip archive does not support reading. + The zip archive has been disposed. + The zip archive is corrupt, and its entries cannot be retrieved. + + + + Gets entry name encoding. + + + + + Gets a value that describes the type of action the zip archive can perform on entries. + + + + + Gets compression settings. + + + + + Gets encryption settings. + + + + + Gets number of the disk. + + + + + Gets reader for the working stream. + + + + + Gets writer for the working stream. + + + + + Gets start of the central directory. + + + + + Initializes a new instance of the ZipPackage class from the specified stream. + + The stream that contains the archive to be read. + Mode. + + + + This method is used to create a ZipPackage from a stream. + + Stream. + ZipPackage instance. + + + + This method is used to create a ZipPackage with the passed file name. + + File name. + ZipPackage instance. + + + + Checks whether the stream that represents a zip file is actually a zip file. + + Stream. + True if the stream represents a zip file. + + + + Checks whether the file with the passed file name is actually a zip file. + + File name. + True if the file represents a zip file. + + + + Opens zip archive from the Stream. + + Stream. + ZipPackage instance. + + + + This method is used to open a ZipPackage with the passed file name. + + File name. + File access. + ZipPackage instance. + + + + Adds a file with the passed file name in the ZipPackage. + + File name. + + + + Adds a file with the passed file name in the ZipPackage. + + + + + Adds the files from the passed IEnumerable of file names in the ZipPackage. + + + + + Adds the files from the passed IEnumerable of file names in the ZipPackage. + + + + + Adds a file with the passed file name in the ZipPackage and associates it with the passed file name in zip. + + + + + Adds a file with the passed file name in the ZipPackage and associates it with the passed file name in zip. + + + + + Adds a file with the passed file name in the ZipPackage, associates it with the passed file name in zip and sets a date time for the entry. + + + + + Adds a file with the passed file name in the ZipPackage, associates it with the passed file name in zip and sets a date time for the entry. + + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + Compression type. + + + + Adds a stream in the ZipPackage, compresses it with the passed compress method, + associates it with the passed file name in zip and sets a date time for the entry. + + Stream. + File name in zip archive. + Compression level. + Date and time of file. + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + Compression level. + Date and time of file. + Compression type. + + + + Closes the ZipPackage. + + If the parameter is set to true then closes the file. + + + + Gets the index of the entry in the list of entries of the ZipPackage. + + File name in zip archive. + Index of entry or -1 when the entry is not found. + + + + Removes the passed entry from the ZipPackage. + + + + + Gets the file name for the ZipPackage. + + + + + Gets the collection of entries that are currently in the zip archive. + + The zip archive does not support reading. + The zip archive has been disposed. + + + + Represents the ZipPackageEntry class. + + + + + Initializes a new instance of the ZipPackageEntry class. + + ZipArchiveEntry. + + + + Opens the entry from the zip archive. + + The stream that represents the contents of the entry. + + + + Deletes the entry. + + + + + Gets the file attributes for the entry. + + + + + Gets the compressed size for the entry. + + + + + Gets the file name in the ZipPackage for the entry. + + + + + Gets the uncompressed size for the entry. + + + + + Static class which provides access to the platform-specific settings for all + parts of the ZIP library. + + + + + Gets or sets platform manager. + + + + + Operational mode of the cryptographic and compression streams. + + + + + Read operation is allowed. + + + + + Write operation is allowed. + + + + + Represents header of the transformation. + The extra data precedes the transformed data which provides + some additional information about transformation (compression or encryption). + + + + + Initializes a new instance of the TransformationHeader class. + + + + + Gets or sets buffer to store header information. + + + + + Gets or sets number of byte to read. + + + + + Gets initialization data of the header. + + + + + Gets length of the transformation header. + + + + + Gets or sets the flag which indicates + that the compressed size should include the header size. + + + + + Platform manager which can be used with full version of the .NET Framework. + + + + + Initializes a new instance of the DotNetPlatformManager class. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + Encoding. + true if encoding is allowed in the ZIP file. + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets or sets type of the temporary stream. The default value is TemporaryStreamType.Memory. + + + + + Type of the temporary stream. + + + + + The temporary stream represents temporary file in the file system. + + It allows manipulations with large archives and minimize memory consumption. + + + + The temporary stream represents data in the memory. + + It is the fastest way of the data manipulation. + + + + Provides static methods for creating, extracting, and opening zip archives. + + + + + Archives a file by compressing it and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + New entry in archive. + + + + Archives a file by compressing it using the specified compression level and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + New entry in archive. + + + + Archives a file by compressing it using the specified compression settings and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + Compression settings. + New entry in archive. + + + + Creates a zip archive that contains the files and directories from the specified directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression level, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression level, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression settings, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + Compression settings. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Extracts all the files in the specified zip archive to a directory on the file system. + + The path to the archive that is to be extracted. + The path to the directory in which to place the extracted files, + specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + + + + Extracts all the files in the specified zip archive to a directory on the file system and uses the specified character encoding for entry names. + + The path to the archive that is to be extracted. + The path to the directory in which to place the extracted files, + specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The encoding to use when reading or writing entry names in this archive. + Specify a value for this parameter only when an encoding is required for interoperability with zip archive + tools and libraries that do not support UTF-8 encoding for entry names. + + + + Extracts all the files in the zip archive to a directory on the file system. + + The zip archive to extract files from. + The path to the directory to place the extracted files in. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + + + + Extracts an entry in the zip archive to a file. + + The zip archive entry to extract a file from. + The path of the file to create from the contents + of the entry. You can specify either a relative or an absolute path. A relative path + is interpreted as relative to the current working directory. + + + + Extracts an entry in the zip archive to a file, and optionally overwrites an existing file that has the same name. + + The zip archive entry to extract a file from. + The path of the file to create from the contents + of the entry. You can specify either a relative or an absolute path. A relative path + is interpreted as relative to the current working directory. + True to overwrite an existing file that has the same name as the destination file; otherwise, false. + + + + Opens a zip archive at the specified path and in the specified mode. + + The path to the archive to open, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that specifies the actions which are allowed on the entries in the opened archive. + The opened zip archive. + + + + Opens a zip archive at the specified path and in the specified mode. + + The path to the archive to open, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that specifies the actions which are allowed on the entries in the opened archive. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + The opened zip archive. + + + + Opens a zip archive for reading at the specified path. + + The path to the archive to open, specified as a relative or absolute path. + A relative path is interpreted as relative to the current working directory. + The opened zip archive. + + + + Indicates whether specified directory is empty or not. + + Directory info. + True if directory is empty; otherwise - false. + + + + This method is used to copy the source stream to the destination stream. + + + + + + + Represents data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Represents base fields of data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets crc-32. + + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Data descriptor header signature. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents Zip64 end of central directory locator described in the + ZIP File Format Specification v6.3.3, #4.3.15. + + + + + Zip64 end of central directory locator signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets number of the disk with the + start of the zip64 end of + central directory. + + + + + Gets or sets relative offset of the zip64 + end of central directory record. + + + + + Gets or sets number of disks. + + + + + Represents Zip64 end of central directory record described in the + ZIP File Format Specification v6.3.3, #4.3.14. + + + + + Zip64 end of central directory record signature. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets size of zip64 end of central + directory record. + + + + + Gets or sets byte which indicates the ZIP specification version + supported by the software used to encode the file. + + + + + Gets or sets byte which indicates the compatibility + of the file attribute information. + + + + + Gets or sets version needed to extract. + + + + + Gets or sets number of this disk. + + + + + Gets or sets number of the disk with the start of the central directory. + + + + + Gets or sets total number of entries in the central directory on this disk. + + + + + Gets or sets total number of entries in the central directory. + + + + + Gets or sets size of the central directory. + + + + + Gets or sets offset of start of central directory with respect to the starting disk number. + + + + + Represents a compressed file within a zip archive. + + + + + Track whether Dispose has been called. + + + + + Initializes a new instance of the ZipArchiveEntry class. + + Zip archive. + Central directory header correspondent to this entry. + + + + Initializes a new instance of the ZipArchiveEntry class. + + Zip archive. + Entry name. + + + + Deletes the entry from the zip archive. + + The entry is already open for reading or writing. + The zip archive for this entry was opened in a mode other than Update. + The zip archive for this entry has been disposed. + + + + Releases the resources used by the current instance of the ZipArchiveEntry class. + + + + + Opens the entry from the zip archive. + + The stream that represents the contents of the entry. + The resulting stream depends on the zip archive mode. + If zip archive mode is then read-only stream without seeking support is returned (). + If zip archive mode is then write-only stream without seeking support is returned (). + If zip archive mode is then read/write stream which supports seeking is returned. + + The entry is already currently open for writing. + -or- + The entry has been deleted from the archive. + -or- + The archive for this entry was opened with the Create mode, and this entry has already been written to. + The entry is either missing from the archive or is corrupt and cannot be read. + -or- + The entry has been compressed by using a compression method that is not supported. + The zip archive for this entry has been disposed. + + + + Checks entry integrity. + + Message will be thrown if entry don't pass integrity check. + True - if entry is OK; false - otherwise. + + + + Writes central directory header. + + + + + Called by the Dispose() and Finalize() methods to release the unmanaged + resources used by the current instance of the ZipArchive class, and optionally + finishes writing the archive and releases the managed resources. + + True to finish writing the archive and release unmanaged and managed resources; + false to release only unmanaged resources. + + + + Occurs when a property value changes. + + + + + The zip archive that the entry belongs to, or null if the entry has been deleted. + + + + + Gets compressed size of the entry in the zip archive. + + + + + Gets or sets external file attributes. + + + + + Gets the relative path of the entry in the zip archive. + + + + + Gets or sets the last time the entry in the zip archive was changed. + + + + + Gets the uncompressed size of the entry in the zip archive. + + + + + Gets the file name of the entry in the zip archive. + + + + + Gets or sets compression method. + + + + + Gets or sets offset of the compressed data. + + + + + Gets disk start number. + + + + + Gets or sets offset of the local header. + + + + + Gets temporary stream which contains uncompressed data for update. + + + + + Specifies values for interacting with zip archive entries. + + + + + Only creating new archive entries is permitted. + + + + + Only reading archive entries is permitted. + + + + + Both read and write operations are permitted for archive entries. + + + + + Provides common internal static methods. + + + + + Copy specified number of bytes from one stream to another. + + Input stream. + Output stream. + Number of bytes to copy. + + + + Converts .NET DateTime structure to the MS-DOS date-time. + + DateTime structure to convert. + Packed date-time. + + + + Gets compression algorithm which corresponds to the given compression settings. + + Compression settings to get algorithm for. + Compression algorithm. + Compression method is not supported. + + + + Gets compression settings for the specified compression method. + + Compression method to get settings for. + Base settings to copy parameters from. + Compression settings. + Compression method is not supported. + + + + Detect whether the given path string ends with directory separator char (i.e. given path represents directory). + + Path string. + True if path string ends with directory separator char; otherwise - false. + + + + Gets value which indicates whether specified compression method is supported. + + Compression method to check. + True - if compression method is supported; false - otherwise. + + + + Converts MS-DOS date-time to the .NET DateTime structure. + + Packed date-time to convert. + DataTime structure. + + + + Read specified number of bytes from the given stream to the buffer. + + Stream to read data from. + Buffer to write data to. + Number of bytes to read. + + + + Seek given stream backward to the data signature. + + Stream to seek. + Signature to find. + true if signature is found, otherwise false. + + + + Represents central directory header record described in the + ZIP File Format Specification v6.3.3, #4.3.12. + + + + + Represents file header base class for + the local file header and central directory header + which are described in the ZIP File Format Specification v6.3.3, #4.3.7 and #4.3.12. + + + + + Represents base fields of data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets crc-32. + + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Copy properties from the given file header to this object. + + File header to copy properties from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets version needed to extract. + + + + + Gets or sets general purpose bit flag. + + + + + Gets or sets compression method. + + + + + Gets or sets last modification file date and time. + + + + + Gets or sets file name. + + + + + Gets or sets extra fields data. + + The extra fields data. + + + + Gets or sets list of extra fields. + + + + + Central directory header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets byte which indicates the ZIP specification version + supported by the software used to encode the file. + + + + + Gets or sets byte which indicates the compatibility + of the file attribute information. + + + + + Gets or sets disk number start. + + + + + Gets or sets internal file attributes. + + + + + Gets or sets external file attributes. + + + + + Gets or sets relative offset of local header. + + + + + Gets or sets file comment. + + + + + Represents data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Data descriptor header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Copy properties from the given file header to this object. + + File header to copy properties from. + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Represents general purpose bit flag for Methods 8 and 9 - Deflating + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 2 Bit 1 + 0 0 Normal (-en) compression option was used. + + + + + Bit 2 Bit 1 + 0 1 Maximum (-exx/-ex) compression option was used. + + + + + Bit 2 Bit 1 + 1 0 Fast (-ef) compression option was used. + + + + + Bit 2 Bit 1 + 1 1 Super Fast (-es) compression option was used. + + + + + Represents end of central directory record described in the + ZIP File Format Specification v6.3.3, #4.3.16. + + + + + End of central directory signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + true if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets number of this disk. + + + + + Gets or sets number of the disk with the start of the central directory. + + + + + Gets or sets total number of entries in the central directory on this disk. + + + + + Gets or sets total number of entries in the central directory. + + + + + Gets or sets size of the central directory. + + + + + Gets or sets offset of start of central directory with respect to the starting disk number. + + + + + Gets or sets .ZIP file comment. + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Gets extra field collection. + + The header info. + IEnumerable of ExtraFieldBase instances. + + + + Gets extra field data. + + Extra field collection. + Extra field data. + + + + Should implement parsing of extra field data. + + Extra field data. + + + + Gets extra field data. + + Byte array of extra field data. + + + + Gets known extra field type. + + + + + Gets extra field type (Header ID). + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets vendor version for this record. + + + + + Gets or sets signature (AE). + + + + + Gets or sets bit length of encryption key. + 1 - 128-bit , 2 - 192-bit , 3 - 256-bit. + + + + + Gets or sets method. + + + + + Gets extra field type (Header ID). + + + + + Represents identifier of the encryption algorithm described in the + ZIP File Format Specification v6.3.3, #7.2.3.2. + + + + + Unknown algorithm. + + + + + DES algorithm. + + + + + RC2 algorithm. + The version needed to extract up to 5.2. + + + + + 3DES 168 bit algorithm. + + + + + 3DES 112 bit algorithm. + + + + + AES 128 bit algorithm. + + + + + AES 192 bit algorithm. + + + + + AES 256 bit algorithm. + + + + + RC2 algorithm. + The version needed to extract 5.2 and higher. + + + + + Blowfish algorithm. + + + + + Twofish algorithm. + + + + + RC4 algorithm. + + + + + Represents extra field type (Header ID) described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Unknown extra field type. + + + + + Zip64 extra field type. + + + + + Ntfs extra field type. + + + + + StrongEncryption extra field type. + + + + + UnixTime extra field type. + + + + + AesEncryption extra field type. + + + + + Represents strong encryption extra field described in the + ZIP File Format Specification v6.3.3, #4.5.12. + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets format definition for this record. + + + + + Gets or sets encryption algorithm identifier. + + + + + Gets or sets bit length of encryption key. + + + + + Gets or sets processing flags. + + + + + Gets extra field type (Header ID). + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Initializes a new instance of the UnknownExtraField class. + + Header Id. + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets extra field type (Header ID). + + + + + Gets or sets extra field data. + + + + + Represents Zip64 Extended Information Extra Field described in the + ZIP File Format Specification v6.3.3, #4.5.3. + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets original uncompressed file size. + + + + + Gets or sets size of compressed data. + + + + + Gets or sets offset of local header record. + + + + + Gets or sets number of the disk on which this file starts. + + + + + Gets extra field type (Header ID). + + + + + Represents general purpose bit flag in the + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 0: If set, indicates that the file is encrypted. + + + + + Bit 3: If this bit is set, the fields crc-32, compressed + size and uncompressed size are set to zero in the + local header. The correct values are put in the + data descriptor immediately following the compressed + data. + + + Note: PKZIP version 2.04g for DOS only + recognizes this bit for method 8 compression, newer + versions of PKZIP recognize this bit for any + compression method. + + + + + Bit 4: Reserved for use with method 8, for enhanced + deflating. + + + + + Bit 5: If this bit is set, this indicates that the file is + compressed patched data. + + + Note: Requires PKZIP version 2.70 or greater. + + + + + Bit 6: Strong encryption. If this bit is set, you MUST + set the version needed to extract value to at least + 50 and you MUST also set bit 0. If AES encryption + is used, the version needed to extract value MUST + be at least 51. See the section describing the Strong + Encryption Specification for details. Refer to the + section in this document entitled "Incorporating PKWARE + Proprietary Technology into Your Product" for more + information. + + + + + Bit 11: Language encoding flag (EFS). If this bit is set, + the filename and comment fields for this file + MUST be encoded using UTF-8 (see APPENDIX D). + + + + + Bit 13: Set when encrypting the Central Directory to indicate + selected data values in the Local Header are masked to + hide their actual values. See the section describing + the Strong Encryption Specification for details. Refer + to the section in this document entitled "Incorporating + PKWARE Proprietary Technology into Your Product" for + more information. + + + + + Represents general purpose bit flag for the Method 6 - Imploding + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + For Method 6 - Imploding. + Bit 1: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + an 8K sliding dictionary was used. If clear, + then a 4K sliding dictionary was used. + + + + + For Method 6 - Imploding. + Bit 2: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + 3 Shannon-Fano trees were used to encode the + sliding dictionary output. If clear, then 2 + Shannon-Fano trees were used. + + + + + Represents local file header record described in the + ZIP File Format Specification v6.3.3, #4.3.7. + + + + + Local file header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Initializes a new instance of the LocalFileHeader class. + + + + + Initializes a new instance of the LocalFileHeader class. + + File header to copy properties from. + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents general purpose bit flag for the Method 14 - LZMA + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 1: If the compression method used was type 14, + LZMA, then this bit, if set, indicates + an end-of-stream (EOS) marker is used to + mark the end of the compressed data stream. + If clear, then an EOS marker is not present + and the compressed data size must be known + to extract. + + + + + Version needed to extract. + + +
+
diff --git a/HexcalMC/bin/x64/Debug/TelerikCommon.dll b/HexcalMC/bin/x64/Debug/TelerikCommon.dll new file mode 100644 index 0000000..74cd5c4 Binary files /dev/null and b/HexcalMC/bin/x64/Debug/TelerikCommon.dll differ diff --git a/HexcalMC/bin/x64/Debug/TelerikData.dll b/HexcalMC/bin/x64/Debug/TelerikData.dll new file mode 100644 index 0000000..d13c65f Binary files /dev/null and b/HexcalMC/bin/x64/Debug/TelerikData.dll differ diff --git a/HexcalMC/bin/x64/Debug/TelerikData.xml b/HexcalMC/bin/x64/Debug/TelerikData.xml new file mode 100644 index 0000000..fe2af42 --- /dev/null +++ b/HexcalMC/bin/x64/Debug/TelerikData.xml @@ -0,0 +1,8473 @@ + + + + TelerikData + + + + + Provides event arguments for the CSVCellFormatting event + + + + + Get source grid's column index + + + + + Get source grid's row index + + + + + Get source grid's row type + + + + + Get a reference to the source grid's cell. + + + + + Get csv cell element object for further formatting + + + + + Get the inner cell value which reference the original grid's value + + + + + Provides event arguments for the ExcelTableCreated event + + + + + Get excel table element + + + + + Create instance of exporter class with specified RadGridView to export + + RadGridView to export + + + + Creates file in csv format. + + Export file name + + + + Write element to file and specify how many simbols to cut from the end + + File stream to use + element to write + count how many symbols to cut at the end + + + + Converts string to byte array + + string to convert + byte array + + + + Add custom row in the provided csv table element + + CSV table element where the new row will be added + Values for the every csv cell object in the custom row + + + + Gets or sets the value that will be used for a row delimiter. + + + + + Gets or sets the value that will be used for a column delimiter. + + + + + Set if child rows should be exported. + + + + + Set if hidden column would be exported. + + + + + Set if hidden rows would be exported + + + + + Set how to export summary rows. + + + + + Sets a value indicating how the export behavies when paging is enabled. + + + The paging export option. + + + + + Gets or sets the child view export mode. + + + The child view export mode. + + + + + Set file extension. Default value is csv. + + + + + Set RadGridView that would be exported. + + + + + Gets or sets a value indicating whether values are enclosed in quotes in the exported file. + + + + + Gets or sets the encoding used for the exported file. Default encoding is UTF8. + + + + + Occurs when a child view will be exported. + + + + + Fires when an csv cell was created and needs to be formatted. + + + + + Fires when the csv table element was created. + + + + + This element cannot have inner elements. + Use Cells property + + + + + This element cannot have inner elements. + Use Rows property + + + + + Provides event arguments for the ExcelCellFormatting event + + + + + Get source grid's column index + + + + + Get source grid's row index + + + + + Get source grid's row type + + + + + Get a reference to the source grid's cell. + + + + + Get excel cell element for further formatting + + + + + Get excel style element for further formatting + + + + + Provides event arguments for the ExcelRowFormatting event + + + + + Get a reference to the source grid's row. + + + + + Get excel row element for further formatting + + + + + Provides event arguments for the ExcelTableCreated event + + + + + Get excel table element + + + + + Get sheet's index, which contains excel table element + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Write bytes to the file + + File name to write into + bytes to write + position where to begin to write + + + + XML file transponse. Used to prepare file for inserting text into it. + + File name to transponce + + + + + + + + Wrapper for FileStream.SetLength(). + + + When lengthening a file, this method appends null characters to it which + does NOT leave it in an XML-parseable state. After all your transpositions, + ALWAYS come back and truncate the file unless you've overwritten the + appended space with valid characters. + + Name of file to resize + New size of file + + + + Insert string to the text file + + File name to insert into + Text to insert + + + + Finish the excelML file + + File name to finish + Workbook element + + + + Add style element to the workbook's styles collection + + Workbook where to add + Style to add + + + + + Set data type for cell formatting to already created excel cell element + + Excel cell element + Data type + + + + Set data type for cell formatting to already created excel cell element according to DisplayFormatType + + Excel cell element + + + + + Convert and apply content text alignment to style element + + Style element + Content alignment to apply + + + + Create excel StyleElement + + Grid's visual element + Excel style element + + + + Create excel cell element. + + grid's cell info + excel cell element + + + + Create excel row element with a style element and add this style to excel workbook + + Excel workbook object + Grid's row info + Excel row element + + + + Set excel row element height + + RowInfo to set + Desired height in pixels, if 0 than remains default height. + + + + Create and add excel worksheet to the workbook + + Excel workbook + + + Excel table element + + + + add column eelemnts to the excel table element + + source RadGridView + Excel table element + + + + Create excel column element + + RadGridView's column + Excel ColumnElement + + + + Write element to file. + + File stream to use + element to write + + + + Write element to file and specify how many simbols to cut from the end + + File stream to use + element to write + count how many symbols to cut at the end + + + + Converts string to byte array + + string to convert + byte array + + + + Creates ExcelML file + + Export file name + + + + Add custom row in the provided excel table element + + Excel table element where the new row will be added + Custom row height in pixels. If 0 than the height has default value + Values for the every excel cell in the custom row + New row's style element for further formatting + + + + Set if child rows should be exported. + + + + + Sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Sets the name of the sheet. + + + The name of the sheet. + + + + + Sets the sheet max rows. + + + The sheet max rows. + + + + + Sets a value indicating how summary rows are exported. + + + The summaries export option. + + + + + Sets a value indicating how hidden columns are exported. + + + The hidden column option. + + + + + Sets a value indicating how hidden rows are exported. + + + The hidden row option. + + + + + Sets a value indicating how the export behavies when paging is enabled. + + + The paging export option. + + + + + Gets or sets the child view export mode. + + + The child view export mode. + + + + + Sets the RadGridView to export. + + + The RadGridView to export. + + + + + Sets the file extension of the exported file. + + + The file extension. + + + + + Gets or sets the encoding used for the exported file. Default encoding is UTF8. + + + + + Occurs when a child view will be exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs for every row that is being exported. + + + + + Occurs when the excel table is created. + + + + + Max value 3 + + + + + This is required + + + + + Get data element (use to change and format value). + + + + + Set or Get style ID for this cell element. + + + + + Set or Get column name. + + + + + Get or Set data type. + + + + + Get or Set data item (use to specify the cell value). + + + + + Gets or sets a value indicating whether strings will be escaped. + + + + + Gets the inner elements. + + + + + Gets the start tag for this element. + + + + + Gets the end tag for this element. + + + + + Get or set font underline. + + + + + Get or Set font size. + + + + + Get or Set font italic + + + + + Get or Set font name + + + + + Get or Set font color + + + + + Get or Set font bold + + + + + Get or Set color pattern + + + + + Get or Set back color + + + + + This element cannot have inner elements. + Use Cells property + + + + + Creates new style element with specified ID. + + Unique style identificator. + + + + Creates new style element. + + + + + Compare with other style element. + + SingleStyleElement to compare with. + True if they are equal + + + + Get text alignment element (use to set text alignments). + + + + + Get border elements collection (use to add borders). + + + + + Get number formatting element (use to set format). + + + + + Get interior style element (use to change back color and color pattern). + + + + + Get font style settings (use to change font settings). + + + + + Get or Set unique style identificator. + + + + + This element cannot have attributes + + + + + Defines how white space is handeled in the exported cells. + + + + + Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary. + + + + + Sequences of whitespace will collapse into a single whitespace. Text will never wrap to the + next line. + + + + + Whitespace is preserved. Text will only wrap on line breaks. + + + + + Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks. + + + + + Whitespace is preserved. Text will wrap when necessary, and on line breaks. + + + + + Add pdf keyword + + keyword to add + + + + Set or get pdf page width in milimeters + + + + + Set or get pdf page height in milimeters + + + + + Provides event arguments for the HTMLCellFormatting event + + + + + Get source grid's column index + + + + + Get source grid's row index + + + + + Get source grid's row type + + + + + Get a reference to the source grid's cell. + + + + + Get html cell element for further formatting + + + + + Get or Set escaping for conditional formatting for this cell. + + + + + Get the inner cell value which reference the original grid's value + + + + + Provides event erguments for HTMLTableCaptionFormatting event + + + + + Get html table CaptionElement for further formatting + + + + + Get or set caption text + + + + + Create instance of exporter class with specified RadGridView to export + + RadGridView to export + + + + Fires when html table was created and provides access to its caption element + + + + + Creates file in html format. + + Export file name + + + + Fills list with all required columns. Includes columns from child templates, which exceed the main template column count. + + + + + Create html row element with a styles + + + + + Set html row element height + + RowElement to set + Desired height in pixels, if 0 than remains default height. + + + + Create html cell element + + grid's cell info + html cell element + + + + Apply conditional formatting to row element + + true if formatting has been applyed to the entire row + + + + Apply base cell formating on single html cell element + + + + + + + + Add summary row + + + + + Search for a neighbour RadElement im a RadElement list + + List of RadElements + Index for element which neighbour going to search + First founded neighbour element + + + + Write element to file and specify how many simbols to cut from the end + + + + + Converts string to byte array + + string to convert + byte array + + + + Gets or sets a value indicating whether the columns width should be calculated + based on the content of the cells or should be fixed. + + + + + Set if child rows should be exported. + + + + + Set the width in milimeters to fit the table in. + + + + + Set how to export summary rows. + + + + + Gets or sets the child view export mode. + + + The child view export mode. + + + + + Set if to export hidden column. + + + + + Set if to export hidden rows. + + + + + Sets a value indicating how the export behavies when paging is enabled. + + + The paging export option. + + + + + Set RadGridView that would be exported. + + + + + Set the file extension. Default value is htm. + + + + + Set html table caption. + + + + + Set to export visual settings e.g. background colors, font, alignment, + conditional formatting etc. Default value: false. + + + + + Set html table border thickness. Default value is 0 + + + + + Set the table size scaling. Default value is 1. For example, scale of 1.2 means 20% size increase. + + + + + Set the html table general Font. + + + + + Gets or sets the encoding used for the exported file. Default encoding is UTF8. + + + + + Gets or sets a value indicating whether to export images. + + + + + Gets or sets a value indicating whether to scale exported images. + + + + + Occurs when a child view will be exported. + + + + + Fires when an html cell object was created and needs to be formatted. + + + + + Occurs when html table was created and provides access to its caption element + + + + + Add align attributes even if they are equal to default ones (Middle|Left) + + + + + Gets or sets a value indicating how the white spaces in the cell will be handled. + + + + + Gets or sets a value indicating if special HTML characters should be escaped. + + + + + This element cannot have styles collection + + + + + This element cannot have styles collection + + + + + ApocDriver provides the client with a single interface to invoking Apoc XSL-FO. + + + The examples belows demonstrate several ways of invoking Apoc XSL-FO. The + methodology is the same regardless of how Apoc is embedded in your + system (ASP.NET, WinForm, Web Service, etc). + + + + // This example demonstrates rendering an XSL-FO file to a PDF file. + ApocDriver driver = ApocDriver.Make(); + driver.Render( + new FileStream("readme.fo", FileMode.Open), + new FileStream("readme.pdf", FileMode.Create)); + + + // This example demonstrates rendering an XSL-FO file to a PDF file. + Dim driver As ApocDriver = ApocDriver.Make + driver.Render( _ + New FileStream("readme.fo", FileMode.Open), _ + New FileStream("readme.pdf", FileMode.Create)) + + + // This example demonstrates rendering the result of an XSLT transformation + // into a PDF file. + ApocDriver driver = ApocDriver.Make(); + driver.Render( + XslTransformer.Transform("readme.xml", "readme.xsl"), + new FileStream("readme.pdf", FileMode.Create)); + + + // This example demonstrates rendering the result of an XSLT transformation + // into a PDF file. + Dim driver As ApocDriver = ApocDriver.Make + driver.Render( _ + XslTransformer.Transform("readme.xml", "readme.xsl"), _ + New FileStream("readme.pdf", FileMode.Create)) + + + // This example demonstrates using an XmlDocument as the source of the + // XSL-FO tree. The XmlDocument could easily be dynamically generated. + XmlDocument doc = new XmlDocument() + doc.Load("reader.fo"); + + ApocDriver driver = ApocDriver.Make(); + driver.Render(doc, new FileStream("readme.pdf", FileMode.Create)); + + + // This example demonstrates using an XmlDocument as the source of the + // XSL-FO tree. The XmlDocument could easily be dynamically generated. + Dim doc As XmlDocument = New XmlDocument() + doc.Load("reader.fo") + + Dim driver As ApocDriver = ApocDriver.Make + driver.Render(doc, New FileStream("readme.pdf", FileMode.Create)) + + + + + + This interface is implemented by the ApocDriver class to permit usage + from COM applications. This is the recommended method of supporting + invocation from COM application as it permits interface versioning. + + + + + Controls the output format of the renderer. + + + Defaults to PDF. + + + + + Determines if the output stream passed to the render + should be closed upon completion or if a fatal exception occurs. + + + + + Options to supply to the renderer. + + + + + Maps a set of credentials to an internet resource + + + + + The ResourceManager embedded in the core dll. + + + + + The active driver. + + + + + Permits the product key to be specified using code, rather than + the flakey licenses.licx method. + + + + + Constructs a new ApocDriver and registers the newly created + driver as the active driver. + + An instance of ApocDriver + + + + Sets the the 'baseDir' property in the Configuration class using + the value returned by Directory.GetCurrentDirectory(). + + + + + An optional image handler that can be registered to load image + data for external graphic formatting objects. + + + + + Executes the conversion reading the source tree from the supplied + XmlDocument, converting it to a format dictated by the renderer + and writing it to the supplied output stream. + + + An in-memory representation of an XML document (DOM). + + + Any subclass of the Stream class. + + + Any exceptions that occur during the render process are arranged + into three categories: information, warning and error. You may + intercept any or all of theses exceptional states by registering + an event listener. See for an + example of registering an event listener. If there are no + registered listeners, the exceptions are dumped to standard out - + except for the error event which is wrapped in a + . + + + + + Executes the conversion reading the source tree from the input + reader, converting it to a format dictated by the renderer and + writing it to the supplied output stream. + + A character orientated stream + Any subclass of the Stream class + + + + Executes the conversion reading the source tree from the file + inputFile, converting it to a format dictated by the + renderer and writing it to the file identified by outputFile. + + + If the file outputFile does not exist, it will created + otherwise it will be overwritten. Creating a file may + generate a variety of exceptions. See + for a complete list.
+
+ Path to an XSL-FO file + Path to a file +
+ + + Executes the conversion reading the source tree from the file + inputFile, converting it to a format dictated by the + renderer and writing it to the supplied output stream. + + Path to an XSL-FO file + + Any subclass of the Stream class, e.g. FileStream + + + + + Executes the conversion reading the source tree from the input + stream, converting it to a format dictated by the render and + writing it to the supplied output stream. + + Any subclass of the Stream class, e.g. FileStream + Any subclass of the Stream class, e.g. FileStream + + + + Executes the conversion reading the source tree from the input + reader, converting it to a format dictated by the render and + writing it to the supplied output stream. + + + The evaluation copy of this class will output an evaluation + banner to standard out + + + Reader that provides fast, non-cached, forward-only access + to XML data + + + Any subclass of the Stream class, e.g. FileStream + + + + + Retrieves the string resource with the specific key using the + default culture + + A resource key + + The resource string identified by key from the + current culture's setting + + + The key parameter is a null reference + + The value of the specified resource is not a string + + No usable set of resources has been found, and there are no + neutral culture resources + + + + + Sends an 'error' event to all registered listeners. + + + If there are no listeners, a is + thrown immediately halting execution + + Any error message, which may be null + + If no listener is registered for this event, a SystemException + will be thrown + + + + + Sends a 'warning' event to all registered listeners + + + If there are no listeners, message is written out + to the console instead + + Any warning message, which may be null + + + + Sends an 'info' event to all registered lisetners + + + If there are no listeners, message is written out + to the console instead + + An info message, which may be null + + + + Utility method that creates an + for the supplied file + + + The returned interprets all whitespace + + + + + Utility method that creates an + for the supplied file + + + The returned interprets all whitespace + + + + + Utility method that creates an + for the supplied file + + + The returned interprets all whitespace + + + + + A multicast delegate. The error event Apoc publishes. + + + The method signature for this event handler should match + the following: +

+                void ApocError(object driver, ApocEventArgs e);
+                
+ The first parameter driver will be a reference to the + active ApocDriver instance. +
+ Subscribing to the 'error' event +
[C#]
+ { + ApocDriver driver = ApocDriver.Make(); + driver.OnError += new ApocDriver.ApocEventHandler(ApocError); + ... + } +
+
+
+ + + A multicast delegate. The warning event Apoc publishes. + + + The method signature for this event handler should match + the following: +

+                void ApocWarning(object driver, ApocEventArgs e);
+                
+ The first parameter driver will be a reference to the + active ApocDriver instance. +
+
+ + + A multicast delegate. The info event Apoc publishes. + + + The method signature for this event handler should match + the following: +

+                void ApocInfo(object driver, ApocEventArgs e);
+                
+ The first parameter driver will be a reference to the + active ApocDriver instance. +
+
+ + + Determines if the output stream should be automatically closed + upon completion of the render process. + + + + + Gets or sets the active . + + + An instance of created via the factory method + . + + + + + Determines which rendering engine to use. + + + A value from the enumeration. + + + The default value is + . + + + + + Gets or sets the base directory used to locate external + resourcs such as images. + + + Defaults to the current working directory. + + + + + Gets or sets the handler that is responsible for loading the image + data for external graphics. + + + If null is returned from the image handler, then Apoc will perform + normal processing. + + + + + Gets or sets the time in milliseconds until an HTTP image request + times out. + + + The default value is 100000 milliseconds. + + + The timeout value in milliseconds + + + + + Gets a reference to a object + that manages credentials for multiple Internet resources. + + + + The purpose of this property is to associate a set of credentials against + an Internet resource. These credentials are then used by Apoc when + fetching images from one of the listed resources. + + + ApocDriver driver = ApocDriver.Make(); + + NetworkCredential nc1 = new NetworkCredential("foo", "password"); + driver.Credentials.Add(new Uri("http://www.chive.com"), "Basic", nc1); + + NetworkCredential nc2 = new NetworkCredential("john", "password", "UK"); + driver.Credentials.Add(new Uri("http://www.xyz.com"), "Digest", nc2); + + + + + Write only property that can be used to bypass licenses.licx + and set a product key directly. + + + + + Returns the product key. + + + + + Options that are passed to the rendering engine. + + + An object that implements the marker interface. + The default value is null, in which case all default options will be used. + + + An instance of + is typically passed to this property. + + + + + True if the current license is an evaluation license. + + + + + The delegate subscribers must implement to receive Apoc events. + + + The parameter will be a reference to + the active ApocDriver. The parameter will + contain a human-readable error message. + + A reference to the active ApocDriver + Encapsulates a human readable error message + + + + The delegat subscribers must implement to handle the loading + of image data in response to external-graphic formatting objects. + + + + + A class containing event data for the Error, Warning and Info + events defined in . + + + + + Initialises a new instance of the ApocEventArgs class. + + The text of the event message. + + + + Retrieves the event message. + + A string which may be null. + + + + Converts this ApocEventArgs to a string. + + + A string representation of this class which is identical + to . + + + + + This exception is thrown by Apoc when an error occurs. + + + + + Initialises a new instance of the ApocException class. + + + The property will be initialised + to innerException.Message + + + The exception that is the cause of the current exception + + + + + Initialises a new instance of the ApocException class. + + + The error message that explains the reason for this exception + + + + + Initialises a new instance of the ApocException class. + + + The error message that explains the reason for this exception + + + The exception that is the cause of the current exception + + + + + A length quantity in XSL which is specified as "auto". + + + + a colour quantity in XSL + + + the red component + + + the green component + + + the blue component + + + the alpha component + + + set the colour given a particular String specifying either a + colour name or #RGB or #RRGGBB + + + a space quantity in XSL (space-before, space-after) + + + a length quantity in XSL + + + Set the length given a number of relative units and the current + font size in base units. + + + Set the length given a number of units and a unit name. + + + set the length as a number of base units + + + Convert the given length to a dimensionless integer representing + a whole number of base units (milli-points). + + + Constructor for IDNode + + @param idValue The value of the id for this node + + + Sets the page number for this node + + @param number page number of node + + + Returns the page number of this node + + @return page number of this node + + + creates a new GoTo object for an internal link + + @param objectNumber + the number to be assigned to the new object + + + sets the page reference for the internal link's GoTo. The GoTo will jump to this page reference. + + @param pageReference + the page reference to which the internal link GoTo should jump + ex. 23 0 R + + + Returns the reference to the Internal Link's GoTo object + + @return GoTo object reference + + + Returns the id value of this node + + @return this node's id value + + + Returns the PDFGoTo object associated with the internal link + + @return PDFGoTo object + + + Determines whether there is an internal link GoTo for this node + + @return true if internal link GoTo for this node is set, false otherwise + + + Sets the position of this node + + @param x the x position + @param y the y position + + + Constructor for IDReferences + + + Creates and configures the specified id. + + @param id The id to initialize + @param area The area where this id was encountered + @exception ApocException + + + Creates id entry + + @param id The id to create + @param area The area where this id was encountered + @exception ApocException + + + Creates id entry that hasn't been validated + + @param id The id to create + @exception ApocException + + + Adds created id list of unvalidated ids that have already + been created. This should be used if it is unsure whether + the id is valid but it must be anyhow. + + @param id The id to create + + + Removes id from list of unvalidated ids. + This should be used if the id has been determined + to be valid. + + @param id The id to remove + + + Determines whether specified id already exists in + idUnvalidated + + @param id The id to search for + @return true if ID was found, false otherwise + + + Configures this id + + @param id The id to configure + @param area The area where the id was encountered + + + Adds id to validation list to be validated . This should be used if it is unsure whether the id is valid + + @param id id to be added + + + Removes id from validation list. This should be used if the id has been determined to be valid + + @param id the id to remove + + + Removes id from IDReferences + + @param id The id to remove + @exception ApocException + + + Determines whether all id's are valid + + @return true if all id's are valid, false otherwise + + + Returns all invalid id's still remaining in the validation list + + @return invalid ids from validation list + + + Determines whether specified id already exists in IDReferences + + @param id the id to search for + @return true if ID was found, false otherwise + + + Determines whether the GoTo reference for the specified id is defined + + @param id the id to search for + @return true if GoTo reference is defined, false otherwise + + + Returns the reference to the GoTo object used for the internal link + + @param id the id whose reference to use + @return reference to GoTo object + + + + Creates an PdfGoto object that will 'goto' the passed Id. + + The ID of the link's target. + The PDF object id to use for the GoTo object. + + This method is a bit 'wrong'. Passing in an objectId seems a bit + dirty and I don't see why an IDNode should be responsible for + keeping track of the GoTo object that points to it. These decisions + only seem to pollute this class with PDF specific code. + + + + Adds an id to IDReferences + + @param id the id to add + + + Returns the PDFGoTo object for the specified id + + @param id the id for which the PDFGoTo to be retrieved is associated + @return the PdfGoTo object associated with the specified id + + + sets the page reference for the internal link's GoTo. The GoTo will jump to this page reference. + + @param pageReference + the page reference to which the internal link GoTo should jump + ex. 23 0 R + + + Sets the page number for the specified id + + @param id The id whose page number is being set + @param pageNumber The page number of the specified id + + + Returns the page number where the specified id is found + + @param id The id whose page number to return + @return the page number of the id, or null if the id does not exist + + + Sets the x and y position of specified id + + @param id the id whose position is to be set + @param x x position of id + @param y y position of id + + + XSL FO Keep Property datatype (keep-together, etc) + + + What to do here? There isn't really a meaningful single value. + + + Keep Value + Stores the different types of keeps in a single convenient format. + + + FO parent of the FO for which this property is to be calculated. + + + PropertyList for the FO where this property is calculated. + + + One of the defined types of LengthBase + + + Accessor for parentFO object from subclasses which define + custom kinds of LengthBase calculations. + + + Accessor for propertyList object from subclasses which define + custom kinds of LengthBase calculations. + + + This datatype hold a pair of lengths, specifiying the dimensions in + both inline and block-progression-directions. + It is currently only used to specify border-separation in tables. + + + a "progression-dimension" quantity + ex. block-progression-dimension, inline-progression-dimension + corresponds to the triplet min-height, height, max-height (or width) + + + Set minimum value to min. + @param min A Length value specifying the minimum value for this + LengthRange. + @param bIsDefault If true, this is set as a "default" value + and not a user-specified explicit value. + + + Set maximum value to max if it is >= optimum or optimum isn't set. + @param max A Length value specifying the maximum value for this + @param bIsDefault If true, this is set as a "default" value + and not a user-specified explicit value. + + + Set the optimum value. + @param opt A Length value specifying the optimum value for this + @param bIsDefault If true, this is set as a "default" value + and not a user-specified explicit value. + + + Return the computed value in millipoints. + + + A length quantity in XSL which is specified with a mixture + of absolute and relative and/or percent components. + The actual value may not be computable before layout is done. + + + a percent specified length quantity in XSL + + + construct an object based on a factor (the percent, as a + a factor) and an object which has a method to return the + Length which provides the "base" for this calculation. + + + Return the computed value in millipoints. This assumes that the + base length has been resolved to an absolute length value. + + + + A space quantity in XSL (space-before, space-after) + + + + A table-column width specification, possibly including some + number of proportional "column-units". The absolute size of a + column-unit depends on the fixed and proportional sizes of all + columns in the table, and on the overall size of the table. + It can't be calculated until all columns have been specified and until + the actual width of the table is known. Since this can be specified + as a percent of its parent containing width, the calculation is done + during layout. + NOTE: this is only supposed to be allowed if table-layout=fixed. + + + Number of table-column proportional units + + + Construct an object with tcolUnits of proportional measure. + + + Override the method in Length to return the number of specified + proportional table-column units. + + + Calculate the number of millipoints and set it. + + + The original specified value for properties which inherit + specified values. + + + Accessor functions for all possible Property datatypes + + + + Gets or setd the original value specified for the property attribute. + + + + + Construct an instance of a PropertyMaker. + + + The property name is set to "UNKNOWN". + + + + + Construct an instance of a PropertyMaker for the given property. + + The name of the property to be made. + + + + Default implementation of isInherited. + + A boolean indicating whether this property is inherited. + + + + Return a boolean indicating whether this property inherits the + "specified" value rather than the "computed" value. The default is + to inherit the "computed" value. + + If true, property inherits the value specified. + + + + Return an object implementing the PercentBase interface. This is + used to handle properties specified as a percentage of some "base + length", such as the content width of their containing box. + Overridden by subclasses which allow percent specifications. See + the documentation on properties.xsl for details. + + + + + + + + Return a Maker object which is used to set the values on components + of compound property types, such as "space". Overridden by property + maker subclasses which handle compound properties. + + + The name of the component for which a Maker is to returned, for + example "optimum", if the FO attribute is space.optimum='10pt'. + + + + + + Return a property value for the given component of a compound + property. + + + NOTE: this is only to ease porting when calls are made to + PropertyList.get() using a component name of a compound property, + such as get("space.optimum"). + The recommended technique is: get("space").getOptimum(). + Overridden by property maker subclasses which handle compound properties. + + A property value for a compound property type such as SpaceProperty. + The name of the component whose value is to be returned. + + + + + Return a property value for a compound property. If the property + value is already partially initialized, this method will modify it. + + + The Property object representing the compound property, such as + SpaceProperty. + + The name of the component whose value is specified. + The propertyList being built. + + The FO whose properties are being set. + A compound property object. + + + + Set a component in a compound property and return the modified + compound property object. This default implementation returns + the original base property without modifying it. It is overridden + by property maker subclasses which handle compound properties. + + + The Property object representing the compound property, such as SpaceProperty. + + The name of the component whose value is specified. + + A Property object holding the specified value of the component to be set. + + The modified compound property object. + + + + Create a Property object from an attribute specification. + + The PropertyList object being built for this FO. + The attribute value. + The current FO whose properties are being set. + The initialized Property object. + + + + Return a String to be parsed if the passed value corresponds to + a keyword which can be parsed and used to initialize the property. + For example, the border-width family of properties can have the + initializers "thin", "medium", or "thick". The foproperties.xml + file specifies a length value equivalent for these keywords, + such as "0.5pt" for "thin". These values are considered parseable, + since the Length object is no longer responsible for parsing + unit expresssions. + + The string value of property attribute. + + A string containging a parseable equivalent or null if the passed + value isn't a keyword initializer for this Property. + + + + + Return a Property object based on the passed Property object. + This method is called if the Property object built by the parser + isn't the right type for this property. + It is overridden by subclasses when the property specification in + foproperties.xml specifies conversion rules. + + The Property object return by the expression parser + The PropertyList object being built for this FO. + The current FO whose properties are being set. + + A Property of the correct type or null if the parsed value + can't be converted to the correct type. + + + + + Return a Property object representing the initial value. + + The PropertyList object being built for this FO. + + + + + Return a Property object representing the initial value. + + The PropertyList object being built for this FO. + The parent FO for the FO whose property is being made. + + A Property subclass object holding a "compound" property object + initialized to the default values for each component. + + + + + Return a Property object representing the value of this property, + based on other property values for this FO. + A special case is properties which inherit the specified value, + rather than the computed value. + + The PropertyList for the FO. + + Property A computed Property value or null if no rules are + specified (in foproperties.xml) to compute the value. + + + + + Return the name of the property whose value is being set. + + + + base class for extension objects + + + base class for representation of formatting objects and their processing + + + + Value of marker before layout begins + + + + value of marker after break-after + + + where the layout was up to. + for FObjs it is the child number + for FOText it is the character number + + + lets outside sources access the property list + first used by PageNumberCitation to find the "id" property + returns null by default, overide this function when there is a property list + @param name - the name of the desired property to obtain + @returns the property + + + At the start of a new span area layout may be partway through a + nested FO, and balancing requires rollback to this known point. + The snapshot records exactly where layout is at. + @param snapshot a Vector of markers (Integer) + @returns the updated Vector of markers (Integers) + + + When balancing occurs, the flow layout() method restarts at the + point specified by the current marker snapshot, which is retrieved + and restored using this method. + @param snapshot the Vector of saved markers (Integers) + + + adds characters (does nothing here) + @param data text + @param start start position + @param length length of the text + + + generates the area or areas for this formatting object + and adds these to the area. This method should always be + overridden by all sub classes + + @param area + + + returns the name of the formatting object + @return the name of this formatting objects + + + + + + + + + lets outside sources access the property list + first used by PageNumberCitation to find the "id" property + @param name - the name of the desired property to obtain + @return the property + + + Return the "content width" of the areas generated by this FO. + This is used by percent-based properties to get the dimension of + the containing block. + If an FO has a property with a percentage value, that value + is usually calculated on the basis of the corresponding dimension + of the area which contains areas generated by the FO. + NOTE: subclasses of FObj should implement this to return a reasonable + value! + + + removes property id + @param idReferences the id to remove + + + Set writing mode for this FO. + Find nearest ancestor, including self, which generates + reference areas and use the value of its writing-mode property. + If no such ancestor is found, use the value on the root FO. + + + + @param parent the parent formatting object + @param propertyList the explicit properties of this object + + + Called for extensions within a page sequence or flow. These extensions + are allowed to generate visible areas within the layout. + + + @param area + + + Called for root extensions. Root extensions aren't allowed to generate + any visible areas. They are used for extra items that don't show up in + the page layout itself. For example: pdf outlines + + @param areaTree + + + The parent outline object if it exists + + + an opaque renderer context object, e.g. PDFOutline for PDFRenderer + + + The fo:root formatting object. Contains page masters, root extensions, + page-sequences. + + + Called by subclass if no match found. + + + By default, functions have no percent-based arguments. + + + Return the specified or initial value of the property on this object. + + + Return the name as a String (should be specified with quotes!) + + + Construct a Numeric object from a Number. + @param num The number. + + + Construct a Numeric object from a Length. + @param l The Length. + + + Construct a Numeric object from a PercentLength. + @param pclen The PercentLength. + + + v * Construct a Numeric object from a TableColLength. + * @param tclen The TableColLength. + + + Return the current value as a Length if possible. This constructs + a new Length or Length subclass based on the current value type + of the Numeric. + If the stored value has a unit dimension other than 1, null + is returned. + + + Return the current value as a Number if possible. + Calls asDouble(). + + + Return a boolean value indiciating whether the currently stored + value consists of different "types" of values (absolute, percent, + and/or table-unit.) + + + Subtract the operand from the current value and return a new Numeric + representing the result. + @param op The value to subtract. + @return A Numeric representing the result. + @throws PropertyException If the dimension of the operand is different + from the dimension of this Numeric. + + + Add the operand from the current value and return a new Numeric + representing the result. + @param op The value to add. + @return A Numeric representing the result. + @throws PropertyException If the dimension of the operand is different + from the dimension of this Numeric. + + + Multiply the the current value by the operand and return a new Numeric + representing the result. + @param op The multiplier. + @return A Numeric representing the result. + @throws PropertyException If both Numerics have "mixed" type. + + + Divide the the current value by the operand and return a new Numeric + representing the result. + @param op The divisor. + @return A Numeric representing the result. + @throws PropertyException If both Numerics have "mixed" type. + + + Return the absolute value of this Numeric. + @return A new Numeric object representing the absolute value. + + + Return a Numeric which is the maximum of the current value and the + operand. + @throws PropertyException If the dimensions or value types of the + object and the operand are different. + + + Return a Numeric which is the minimum of the current value and the + operand. + @throws PropertyException If the dimensions or value types of the + object and the operand are different. + + + This class holds context information needed during property expression + evaluation. + It holds the Maker object for the property, the PropertyList being + built, and the FObj parent of the FObj for which the property is being set. + + + Return whether this property inherits specified values. + Propagates to the Maker. + @return true if the property inherits specified values, false if it + inherits computed values. + + + Return the PercentBase object used to calculate the absolute value from + a percent specification. + Propagates to the Maker. + @return The PercentBase object or null if percentLengthOK()=false. + + + Return the current font-size value as base units (milli-points). + + + Construct a new PropertyTokenizer object to tokenize the passed + string. + @param s The Property expressio to tokenize. + + + Return the next token in the expression string. + This sets the following package visible variables: + currentToken An enumerated value identifying the recognized token + currentTokenValue A string containing the token contents + currentUnitLength If currentToken = TOK_NUMERIC, the number of + characters in the unit name. + @throws PropertyException If un unrecognized token is encountered. + + + Attempt to recognize a valid NAME token in the input expression. + + + Attempt to recognize a valid sequence of decimal digits in the + input expression. + + + Attempt to recognize a valid sequence of hexadecimal digits in the + input expression. + + + Return a bool value indicating whether the following non-whitespace + character is an opening parenthesis. + + + Return a bool value indicating whether the argument is a + decimal digit (0-9). + @param c The character to check + + + Return a bool value indicating whether the argument is a + hexadecimal digit (0-9, A-F, a-f). + @param c The character to check + + + Return a bool value indicating whether the argument is whitespace + as defined by XSL (space, newline, CR, tab). + @param c The character to check + + + Return a bool value indicating whether the argument is a valid name + start character, ie. can start a NAME as defined by XSL. + @param c The character to check + + + Return a bool value indicating whether the argument is a valid name + character, ie. can occur in a NAME as defined by XSL. + @param c The character to check + + + Public entrypoint to the Property expression parser. + @param expr The specified value (attribute on the xml element). + @param propInfo A PropertyInfo object representing the context in + which the property expression is to be evaluated. + @return A Property object holding the parsed result. + @throws PropertyException If the "expr" cannot be parsed as a Property. + + + Private constructor. Called by the static parse() method. + @param propExpr The specified value (attribute on the xml element). + @param propInfo A PropertyInfo object representing the context in + which the property expression is to be evaluated. + + + Parse the property expression described in the instance variables. + Note: If the property expression String is empty, a StringProperty + object holding an empty String is returned. + @return A Property object holding the parsed result. + @throws PropertyException If the "expr" cannot be parsed as a Property. + + + Try to parse an addition or subtraction expression and return the + resulting Property. + + + Try to parse a multiply, divide or modulo expression and return + the resulting Property. + + + Try to parse a unary minus expression and return the + resulting Property. + + + Checks that the current token is a right parenthesis + and throws an exception if this isn't the case. + + + Try to parse a primary expression and return the + resulting Property. + A primary expression is either a parenthesized expression or an + expression representing a primitive Property datatype, such as a + string literal, an NCname, a number or a unit expression, or a + function call expression. + + + Parse a comma separated list of function arguments. Each argument + may itself be an expression. This method consumes the closing right + parenthesis of the argument list. + @param nbArgs The number of arguments expected by the function. + @return An array of Property objects representing the arguments + found. + @throws PropertyException If the number of arguments found isn't equal + to the number expected. + + + Evaluate an addition operation. If either of the arguments is null, + this means that it wasn't convertible to a Numeric value. + @param op1 A Numeric object (Number or Length-type object) + @param op2 A Numeric object (Number or Length-type object) + @return A new NumericProperty object holding an object which represents + the sum of the two operands. + @throws PropertyException If either operand is null. + + + Evaluate a subtraction operation. If either of the arguments is null, + this means that it wasn't convertible to a Numeric value. + @param op1 A Numeric object (Number or Length-type object) + @param op2 A Numeric object (Number or Length-type object) + @return A new NumericProperty object holding an object which represents + the difference of the two operands. + @throws PropertyException If either operand is null. + + + Evaluate a unary minus operation. If the argument is null, + this means that it wasn't convertible to a Numeric value. + @param op A Numeric object (Number or Length-type object) + @return A new NumericProperty object holding an object which represents + the negative of the operand (multiplication by *1). + @throws PropertyException If the operand is null. + + + Evaluate a multiplication operation. If either of the arguments is null, + this means that it wasn't convertible to a Numeric value. + @param op1 A Numeric object (Number or Length-type object) + @param op2 A Numeric object (Number or Length-type object) + @return A new NumericProperty object holding an object which represents + the product of the two operands. + @throws PropertyException If either operand is null. + + + Evaluate a division operation. If either of the arguments is null, + this means that it wasn't convertible to a Numeric value. + @param op1 A Numeric object (Number or Length-type object) + @param op2 A Numeric object (Number or Length-type object) + @return A new NumericProperty object holding an object which represents + op1 divided by op2. + @throws PropertyException If either operand is null. + + + Evaluate a modulo operation. If either of the arguments is null, + this means that it wasn't convertible to a Number value. + @param op1 A Number object + @param op2 A Number object + @return A new NumberProperty object holding an object which represents + op1 mod op2. + @throws PropertyException If either operand is null. + + + + Parses a double value using a culture insensitive locale. + + The double value as a string. + The double value parsed. + + + Return an object which implements the PercentBase interface. + Percents in arguments to this function are interpreted relative + to 255. + + + Return true if the passed area is on the left edge of its nearest + absolute AreaContainer (generally a page column). + + + base class for representation of mixed content formatting objects + and their processing + + + Return the content width of the boxes generated by this FO. + + + Return the content width of the boxes generated by this block + container FO. + + + this class represents the flow object 'fo:character'. Its use is defined by + the spec: "The fo:character flow object represents a character that is mapped to + a glyph for presentation. It is an atomic unit to the formatter. + When the result tree is interpreted as a tree of formatting objects, + a character in the result tree is treated as if it were an empty + element of type fo:character with a character attribute + equal to the Unicode representation of the character. + The semantics of an "auto" value for character properties, which is + typically their initial value, are based on the Unicode codepoint. + Overrides may be specified in an implementation-specific manner." (6.6.3) + + + + PageSequence container + + + Vector to store snapshot + + + flow-name attribute + + + Content-width of current column area during layout + + + Return the content width of this flow (really of the region + in which it is flowing). + + + returns the maker for this object. + + @return the maker for SVG objects + + + constructs an instream-foreign-object object (called by Maker). + + @param parent the parent formatting object + @param propertyList the explicit properties of this object + + + layout this formatting object. + + @param area the area to layout the object into + + @return the status of the layout + + + inner class for making SVG objects. + + + make an SVG object. + + @param parent the parent formatting object + @param propertyList the explicit properties of this object + + @return the SVG object + + + Implements fo:leader; main property of leader leader-pattern. + The following patterns are treated: rule, space, dots. + The pattern use-content is ignored, i.e. it still must be implemented. + + + adds a leader to current line area of containing block area + the actual leader area is created in the line area + + @return int +1 for success and -1 for none + + + Return the content width of the boxes generated by this FO. + + + + The page the marker was registered is put into the renderer + queue. The marker is transferred to it's own marker list, + release the area for GC. We also know now whether the area is + first/last. + + + + + This has actually nothing to do with resseting this marker, + but the 'marker' from FONode, marking layout status. + Called in case layout is to be rolled back. Unregister this + marker from the page, it isn't laid aout anyway. + + + + + More hackery: reset layout status marker. Called before the + content is laid out from RetrieveMarker. + + + + 6.6.11 fo:page-number-citation + + Common Usage: + The fo:page-number-citation is used to reference the page-number for the page containing the first normal area returned by + the cited formatting object. + + NOTE: + It may be used to provide the page-numbers in the table of contents, cross-references, and index entries. + + Areas: + The fo:page-number-citation formatting object generates and returns a single normal inline-area. + Constraints: + + The cited page-number is the number of the page containing, as a descendant, the first normal area returned by the + formatting object with an id trait matching the ref-id trait of the fo:page-number-citation (the referenced formatting + object). + + The cited page-number string is obtained by converting the cited page-number in accordance with the number to string + conversion properties specified on the ancestor fo:page-sequence of the referenced formatting object. + + The child areas of the generated inline-area are the same as the result of formatting a result-tree fragment consisting of + fo:character flow objects; one for each character in the cited page-number string and with only the "character" property + specified. + + Contents: + + EMPTY + + The following properties apply to this formatting object: + + [7.3 Common Accessibility Properties] + [7.5 Common Aural Properties] + [7.6 Common Border, Padding, and Background Properties] + [7.7 Common Font Properties] + [7.10 Common Margin Properties-Inline] + [7.11.1 "alignment-adjust"] + [7.11.2 "baseline-identifier"] + [7.11.3 "baseline-shift"] + [7.11.5 "dominant-baseline"] + [7.36.2 "id"] + [7.17.4 "keep-with-next"] + [7.17.5 "keep-with-previous"] + [7.14.2 "letter-spacing"] + [7.13.4 "line-height"] + [7.13.5 "line-height-shift-adjustment"] + [7.36.5 "ref-id"] + [7.18.4 "relative-position"] + [7.36.6 "score-spaces"] + [7.14.4 "text-decoration"] + [7.14.5 "text-shadow"] + [7.14.6 "text-transform"] + [7.14.8 "word-spacing"] + + + Return true if any column has an unfinished vertical span. + + + Done with a row. + Any spans with only one row left are done + This means that we can now set the total height for this cell box + Loop over all cells with spans and find number of rows remaining + if rows remaining = 1, set the height on the cell area and + then remove the cell from the list of spanned cells. For other + spans, add the rowHeight to the spanHeight. + + + If the cell in this column is in the last row of its vertical + span, return the height left. If it's not in the last row, or if + the content height <= the content height of the previous rows + of the span, return 0. + + + helper method to prevent infinite loops if + keeps or spans are not fitting on a page + @param true if keeps and spans should be ignored + + + helper method (i.e. hack ;-) to prevent infinite loops if + keeps or spans are not fitting on a page + @return true if keeps or spans should be ignored + + + Return the height remaining in the span. + + + Optimum inline-progression-dimension + + + Minimum inline-progression-dimension + + + Maximum inline-progression-dimension + + + Return the content width of the boxes generated by this table FO. + + + Initialize table inline-progression-properties values + + + Offset of content rectangle in inline-progression-direction, + relative to table. + + + Dimension of allocation rectangle in inline-progression-direction, + determined by the width of the column(s) occupied by the cell + + + Offset of content rectangle, in block-progression-direction, + relative to the row. + + + Offset of content rectangle, in inline-progression-direction, + relative to the column start edge. + + + Adjust to theoretical column width to obtain content width + relative to the column start edge. + + + Minimum ontent height of cell. + + + Set to true if all content completely laid out. + + + Border separation value in the block-progression dimension. + Used in calculating cells height. + + + Return the allocation height of the cell area. + Note: called by TableRow. + We adjust the actual allocation height of the area by the value + of border separation (for separate borders) or border height + adjustment for collapse style (because current scheme makes cell + overestimate the allocation height). + + + Set the final size of cell content rectangles to the actual row height + and to vertically align the actual content within the cell rectangle. + @param h Height of this row in the grid which is based on + the allocation height of all the cells in the row, including any + border separation values. + + + Calculate cell border and padding, including offset of content + rectangle from the theoretical grid position. + + + Set the column width value in base units which overrides the + value from the column-width Property. + + + Called by parent FO to initialize information about + cells started in previous rows which span into this row. + The layout operation modifies rowSpanMgr + + + Before starting layout for the first time, initialize information + about spanning rows, empty cells and spanning columns. + + + Return column which doesn't already contain a span or a cell + If past the end or no free cells after colNum, return -1 + Otherwise return value >= input value. + + + Return type of cell in colNum (1 based) + + + Return cell in colNum (1 based) + + + Store cell starting at cellColNum (1 based) and spanning numCols + If any of the columns is already occupied, return false, else true + + + Implementation for fo:wrapper formatting object. + The wrapper object serves as + a property holder for it's children objects. + + Content: (#PCDATA|%inline;|%block;)* + Properties: id + + + + Builds the formatting object tree. + + + + + Table mapping element names to the makers of objects + representing formatting objects. + + + + + Class that builds a property list for each formatting object. + + + + + Current formatting object being handled. + + + + + The root of the formatting object tree. + + + + + Set of names of formatting objects encountered but unknown. + + + + + The class that handles formatting and rendering to a stream. + + + + + Sets the stream renderer that will be used as output. + + + + + Add a mapping from element name to maker. + + + + + Add a mapping from property name to maker. + + + + This object may be also be a subclass of Length, such + as PercentLength, TableColLength. + + + public Double getDouble() { + return new Double(this.number.doubleValue()); + } + public Integer getInteger() { + return new Integer(this.number.intValue()); + } + + + Returns the "master-reference" attribute of this page master reference + + + Checks whether or not a region name exists in this master set + @returns true when the region name specified has a region in this LayoutMasterSet + + + Base PageMasterReference class. Provides implementation for handling the + master-reference attribute and containment within a PageSequenceMaster + + + Classes that implement this interface can be added to a PageSequenceMaster, + and are capable of looking up an appropriate PageMaster. + + + Called before a new page sequence is rendered so subsequences can reset + any state they keep during the formatting process. + + + Gets the formating object name for this object. Subclasses must provide this. + + @return the element name of this reference. e.g. fo:repeatable-page-master-reference + + + Checks that the parent is the right element. The default implementation + checks for fo:page-sequence-master + + + Returns the "master-reference" attribute of this page master reference + + + This class uses the 'format', 'groupingSeparator', 'groupingSize', + and 'letterValue' properties on fo:page-sequence to return a string + corresponding to the supplied integer page number. + + + This provides pagination of flows onto pages. Much of the logic for paginating + flows is contained in this class. The main entry point is the format method. + + + The parent root object + + + the set of layout masters (provided by the root object) + + + Map of flows to their flow name (flow-name, Flow) + + + the "master-reference" attribute, + which specifies the name of the page-sequence-master or + page-master to be used to create pages in the sequence + + + specifies page numbering type (auto|auto-even|auto-odd|explicit) + + + used to determine whether to calculate auto, auto-even, auto-odd + + + the current subsequence while formatting a given page sequence + + + the current index in the subsequence list + + + the name of the current page master + + + Runs the formatting of this page sequence into the given area tree + + + Creates a new page area for the given parameters + @param areaTree the area tree the page should be contained in + @param firstAvailPageNumber the page number for this page + @param isFirstPage true when this is the first page in the sequence + @param isEmptyPage true if this page will be empty (e.g. forced even or odd break) + @return a Page layout object based on the page master selected from the params + + + Formats the static content of the current page + + + Returns the next SubSequenceSpecifier for the given page sequence master. The result + is bassed on the current state of this page sequence. + + + Returns the next simple page master for the given sequence master, page number and + other state information + + + Returns true when there is more flow elements left to lay out. + + + Returns the flow that maps to the given region class for the current + page master. + + + This is an abstract base class for pagination regions + + + Creates a Region layout object for this pagination Region. + + + Returns the default region name (xsl-region-before, xsl-region-start, + etc.) + + + Returns the element name ("fo:region-body", "fo:region-start", + etc.) + + + Returns the name of this region + + + Checks to see if a given region name is one of the reserved names + + @param name a region name to check + @return true if the name parameter is a reserved region name + + + Max times this page master can be repeated. + INFINITE is used for the unbounded case + + + The fo:root formatting object. Contains page masters, root extensions, + page-sequences. + + + keeps count of page number from over PageSequence instances + + + Some properties, such as 'force-page-count', require a + page-sequence to know about some properties of the next. + @returns succeeding PageSequence; null if none + + + Page regions (regionClass, Region) + + + Set the appropriate components when the "base" property is set. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Set the appropriate components when the "base" property is set. + + + Set the appropriate components when the "base" property is set. + + + Return object used to calculate base Length + for percent specifications. + + + Set the appropriate components when the "base" property is set. + + + Set the appropriate components when the "base" property is set. + + + Set the appropriate components when the "base" property is set. + + + Set the appropriate components when the "base" property is set. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Set the appropriate components when the "base" property is set. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return object used to calculate base Length + for percent specifications. + + + Return the value explicitly specified on this FO. + @param propertyName The name of the property whose value is desired. + It may be a compound name, such as space-before.optimum. + @return The value if the property is explicitly set or set by + a shorthand property, otherwise null. + + + Return the value explicitly specified on this FO. + @param propertyName The name of the property whose value is desired. + It may be a compound name, such as space-before.optimum. + @return The value if the property is explicitly set, otherwise null. + + + Return the value explicitly specified on this FO. + @param propertyName The name of the base property whose value is desired. + @return The value if the property is explicitly set, otherwise null. + + + Return the value of this property inherited by this FO. + Implements the inherited-property-value function. + The property must be inheritable! + @param propertyName The name of the property whose value is desired. + @return The inherited value, otherwise null. + + + Return the property on the current FlowObject if it is specified, or if a + corresponding property is specified. If neither is specified, it returns null. + + + Return the property on the current FlowObject. If it isn't set explicitly, + this will try to compute it based on other properties, or if it is + inheritable, to return the inherited value. If all else fails, it returns + the default value. + + + Return the property on the current FlowObject. Depending on the passed flags, + this will try to compute it based on other properties, or if it is + inheritable, to return the inherited value. If all else fails, it returns + the default value. + + + Return the "nearest" specified value for the given property. + Implements the from-nearest-specified-value function. + @param propertyName The name of the property whose value is desired. + @return The computed value if the property is explicitly set on some + ancestor of the current FO, else the initial value. + + + Return the value of this property on the parent of this FO. + Implements the from-parent function. + @param propertyName The name of the property whose value is desired. + @return The computed value on the parent or the initial value if this + FO is the root or is in a different namespace from its parent. + + + Given an absolute direction (top, bottom, left, right), + return the corresponding writing model relative direction name + for the flow object. Uses the stored writingMode. + + + Given a writing mode relative direction (start, end, before, after) + return the corresponding absolute direction name + for the flow object. Uses the stored writingMode. + + + Set the writing mode traits for the FO with this property list. + + + Name of font-size property attribute to set first. + + + + This seems to be just a helper method that looks up a property maker and + creates the property. + + + + + Convenience function to return the Maker for a given property. + + + + classes representating the status of laying out a formatting object + + + This represents an unknown element. + For example with unsupported namespaces. + This prevents any further problems arising from the unknown + data. + + + returns the maker for this object. + + @return the maker for an unknown xml object + + + constructs an unknown xml object (called by Maker). + + @param parent the parent formatting object + @param propertyList the explicit properties of this object + + + inner class for making unknown xml objects. + + + make an unknown xml object. + + @param parent the parent formatting object + @param propertyList the explicit properties of this object + + @return the unknown xml object + + + + A bitmap image that will be referenced by fo:external-graphic. + + + This class and the associated ColorSpace class are PDF specific ideally + will be moved to the PDF library project at some point in the future. + Internally, Apoc should handle images using the standard framework + Bitmap class. + + + + + Filter that will be applied to image data + + + + + Constructs a new ApocImage using the supplied bitmap. + + + Does not hold a reference to the passed bitmap. Instead the + image data is extracted from bitmap on construction. + + The location of bitmap + The image data + + + + Extracts the raw data from the image into a byte array suitable + for including in the PDF document. The image is always extracted + as a 24-bit RGB image, regardless of it's original colour space + and colour depth. + + The from which the data is extracted + A byte array containing the raw 24-bit RGB data + + + + Return the image URL. + + the image URL (as a string) + + + + Return the image width. + + the image width + + + + Return the image height. + + the image height + + + + Return the number of bits per pixel. + + number of bits per pixel + + + + Return the image data size + + The image data size + + + + Return the image data (uncompressed). + + the image data + + + + Return the image color space. + + the image color space (Apoc.Datatypes.ColorSpace) + + + + Returns the implementation + that should be applied to the bitmap data. + + + + Total height of content of this area. + + + Creates a new Area instance. + + @param fontState a FontState value + @param allocationWidth the inline-progression dimension of the content + rectangle of the Area + @param maxHeight the maximum block-progression dimension available + for this Area (its allocation rectangle) + + + Set the allocation width. + @param w The new allocation width. + This sets content width to the same value. + Currently only called during layout of Table to set the width + to the total width of all the columns. Note that this assumes the + column widths are explicitly specified. + + + + Tell whether this area contains any children which are not + DisplaySpace. This is used in determining whether to honour keeps. + + + + + Returns content height of the area. + + @return Content height in millipoints + + + Returns allocation height of this area. + The allocation height is the sum of the content height plus border + and padding in the vertical direction. + + @return allocation height in millipoints + + + + Return absolute Y position of the current bottom of this area, + not counting any bottom padding or border. + + + This is used to set positions for link hotspots. + In fact, the position is not really absolute, but is relative + to the Ypos of the column-level AreaContainer, even when the + area is in a page header or footer! + + + + + Set "absolute" Y position of the top of this area. + + + In fact, the position is not really absolute, but relative to + the Ypos of the column-level AreaContainer, even when the area + is in a page header or footer! + It is set from the value of getAbsoluteHeight() on the parent + area, just before adding this area. + + + + Return space remaining in the vertical direction (height). + This returns maximum available space - current content height + Note: content height should be based on allocation height of content! + @return space remaining in base units (millipoints) + + + Set the content height to the passed value if that value is + larger than current content height. If the new content height + is greater than the maximum available height, set the content height + to the max. available (!!!) + + @param height allocation height of content in millipoints + + + amount of space added since the original layout - needed by links + + + + Parses the contents of a JPEG image header to infer the colour + space and bits per pixel. + + + + + JPEG image data + + + + + Contains number of bitplanes, color space and optional ICC Profile + + + + + Raw ICC Profile + + + + + Class constructor. + + + + + + + + + + + Reads a 16-bit integer from the underlying stream + + + + + + Reads a 32-bit integer from the underlying stream + + + + + + Reads the specified number of bytes from theunderlying stream + and converts them to a string using the ASCII encoding. + + + + + + + Reads the initial marker which should be SOI. + + + After invoking this method the stream will point to the location + immediately after the fiorst marker. + + + + + + Reads the next JPEG marker and returns its marker code. + + + + + + Skips over the parameters for any marker we don't want to process. + + + + + Parses a <uri-specification> as defined by + section 5.11 of the XSL specification. + + + This class may be better expressed as a datatype residing in + Telerik.Apoc.DataTypes. + + + + Store all hyphenation related properties on an FO. + Public "structure" allows direct member access. + + + Store all hyphenation related properties on an FO. + Public "structure" allows direct member access. + + + object containing information on available fonts, including + metrics + + + List of root extension objects + + + + Auxillary function for retrieving markers. + + + + + + Auxillary function for retrieving markers. + + + + + + Auxillary function for retrieving markers. + + + + + Store all hyphenation related properties on an FO. + Public "structure" allows direct member access. + + + This class represents a Block Area. + A block area is made up of a sequence of Line Areas. + + This class is used to organise the sequence of line areas as + inline areas are added to this block it creates and ands line areas + to hold the inline areas. + This uses the line-height and line-stacking-strategy to work + out how to stack the lines. + + + Add a Line Area to this block area. + Used internally to add a completed line area to this block area + when either a new line area is created or this block area is + completed. + + @param la the LineArea to add + + + Get the current line area in this block area. + This is used to get the current line area for adding + inline objects to. + This will return null if there is not enough room left + in the block area to accomodate the line area. + + @return the line area to be used to add inlie objects + + + Create a new line area to add inline objects. + This should be called after getting the current line area + and discovering that the inline object will not fit inside the current + line. This method will create a new line area to place the inline + object into. + This will return null if the new line cannot fit into the block area. + + @return the new current line area, which will be empty. + + + Notify this block that the area has completed layout. + Indicates the the block has been fully laid out, this will + add (if any) the current line area. + + + Return the maximum space remaining for this area's content in + the block-progression-dimension. + Remove top and bottom padding and spacing since these reduce + available space for content and they are not yet accounted for + in the positioning of the object. + + + Depending on the column-count of the next FO, determine whether + a new span area needs to be constructed or not, and return the + appropriate ColumnArea. + The next cut of this method should also inspect the FO to see + whether the area to be returned ought not to be the footnote + or before-float reference area. + @param fo The next formatting object + @returns the next column area (possibly the current one) + + + Add a new span area with specified number of column areas. + @param numColumns The number of column areas + @returns AreaContainer The next column area + + + This almost does what getNewArea() does, without actually + returning an area. These 2 methods can be reworked. + @param fo The next formatting object + @returns bool True if we need to balance. + + + This is where the balancing algorithm lives, or gets called. + Right now it's primitive: get the total content height in all + columns, divide by the column count, and add a heuristic + safety factor. + Then the previous (unbalanced) span area is removed, and a new + one added with the computed max height. + + + Determine remaining height for new span area. Needs to be + modified for footnote and before-float reference areas when + those are supported. + @returns int The remaining available height in millipoints. + + + Used by resetSpanArea() and addSpanArea() to adjust the main + reference area height before creating a new span. + + + Used in Flow when layout returns incomplete. + @returns bool Is this the last column in this span? + + + This variable is unset by getNextArea(), is set by addSpanArea(), + and may be set by resetSpanArea(). + @returns bool Is the span area new or not? + + + Return a full copy of the BorderAndPadding information. This clones all + padding and border information. + @return The copy. + + + Creates a key from the given strings + + + + Class constructor + + + Defaults the letter spacing to 0 millipoints. + + + + + Gets width of given character identifier plus + in millipoints (1/1000ths of a point). + + + + + + + Map a Unicode character to a code point + + Any Unicode character. + + + + Store all hyphenation related properties on an FO. + Public "structure" allows direct member access. + + + + A font descriptor specifies metrics and other attributes of a + font, as distinct from the metrics of individual glyphs. + + + See page 355 of PDF 1.4 specification for more information. + + + + + Gets a collection of flags providing various font characteristics. + + + + + Gets the smallest rectangle that will encompass the shape that + would result if all glyhs of the font were placed with their + origins coincident. + + + + + Gets the main italic angle of the font expressed in tenths of + a degree counterclockwise from the vertical. + + + + + TODO: The thickness, measured horizontally, of the dominant vertical + stems of the glyphs in the font. + + + + + Gets a value that indicates whether this font has kerning support. + + + + + + Gets a value that indicates whether this font program may be legally + embedded within a document. + + + + + + Gets a value that indicates whether this font program my be subsetted. + + + + + + Gets a byte array representing a font program to be embedded + in a document. + + + If is false it is acceptable + for this method to return null. + + + + + Gets kerning information for this font. + + + If is false it is acceptable + for this method to return null. + + + + + Interface for font metric classes + + + + + Gets the width of a character in 1/1000ths of a point size + located at the supplied codepoint. + + + For a type 1 font a code point is an octal code obtained from a + character encoding scheme (WinAnsiEncoding, MacRomaonEncoding, etc). + For example, the code point for the space character is 040 (octal). + For a type 0 font a code point represents a GID (Glyph index). + + A character code point. + + + + + Specifies the maximum distance characters in this font extend + above the base line. This is the typographic ascent for the font. + + + + + Specifies the maximum distance characters in this font extend + below the base line. This is the typographic descent for the font. + + + + + Gets the vertical coordinate of the top of flat captial letters. + + + + + Gets the value of the first character used in the font + + + + + Gets the value of the last character used in the font + + + + + Gets a reference to a font descriptor. A descriptor is akin to + the PDF FontDescriptor object (see page 355 of PDF 1.4 spec). + + + + + Gets the widths of all characters in 1/1000ths of a point size. + + + + + This is NOT the content width of the instream-foreign-object. + This is the content width for a Box. + + + This is NOT the content height of the instream-foreign-object. + This is the content height for a Box. + + + @param ul true if text should be underlined + + + And eatable InlineSpace is discarded if it occurs + as the first pending element in a LineArea + + + adds text to line area + + @return int character position + + + adds a Leader; actually the method receives the leader properties + and creates a leader area or an inline area which is appended to + the children of the containing line area. + leader pattern use-content is not implemented. + + + adds pending inline areas to the line area + normally done, when the line area is filled and + added as child to the parent block area + + + aligns line area + + + + Balance (vertically) the inline areas within this line. + + + sets hyphenation related traits: language, country, hyphenate, hyphenation-character + and minimum number of character to remain one the previous line and to be on the + next line. + + + creates a leader as String out of the given char and the leader length + and wraps it in an InlineArea which is returned + + + calculates the width of space which has to be inserted before the + start of the leader, so that all leader characters are aligned. + is used if property leader-align is set. At the moment only the value + for leader-align="reference-area" is supported. + + + + calculates the used space in this line area + + + extracts a complete word from the character data + + + Calculates the wordWidth using the actual fontstate + + + adds a single character to the line area tree + + + Same as addWord except that characters in wordBuf is mapped + to the current fontstate's encoding + + + adds a InlineArea containing the String startChar+wordBuf to the line area children. + + + Checks if it's legal to break a word in the middle + based on the current language property. + @return true if legal to break word in the middle + + + Helper method for getting the width of a unicode char + from the current fontstate. + This also performs some guessing on widths on various + versions of space that might not exists in the font. + + + Helper method to determine if the character is a + space with normal behaviour. Normal behaviour means that + it's not non-breaking + + + Method to determine if the character is a nonbreaking + space. + + + @return true if the character represents any kind of space + + + Add a word that might contain non-breaking spaces. + Split the word into WordArea and InlineSpace and add it. + If addToPending is true, add to pending areas. + + + an object that stores a rectangle that is linked, and the LineArea + that it is logically associated with + @author Arved Sandstrom + @author James Tauber + + + the linked Rectangle + + + the associated LineArea + + + the associated InlineArea + + + a set of rectangles on a page that are linked to a common + destination + + + the destination of the links + + + the set of rectangles + + + Store all hyphenation related properties on an FO. + Public "structure" allows direct member access. + + + Store all hyphenation related properties on an FO. + Public "structure" allows direct member access. + + + Ensure that page is set not only on B.A.C. but also on the + three top-level reference areas. + @param area The region-body area container (special) + + + Store all hyphenation related properties on an FO. + Public "structure" allows direct member access. + + + This class holds information about text-decoration + + + + @return true if text should be underlined + + + set text as underlined + + + @return true if text should be overlined + + + + A collection of instances. + + + + + Adds the supplied to the end of the collection. + + + + + + Returns an ArrayList enumerator that references a read-only version + of the BfEntry list. + + + + + + Gets the at index. + + + + + Gets the number of objects contained by this + + + + + + Returns the number of instances that + represent bfrange's + + + + + + + + + + + Returns the number of instances that + represent bfchar's + + + + + + + + + + + A class can represent either a bfrange + or bfchar. + + + + + Class cosntructor. + + + + + + + Increments the end index by one. + + + Incrementing the end index turns this BfEntry into a bfrange. + + + + + Returns true if this BfEntry represents a glyph range, i.e. + the start index is not equal to the end index. + + + + + Returns true if this BfEntry represents a bfchar entry, i.e. + the start index is equal to the end index. + + + + + A File Identifier is described in section 8.3 of the PDF specification. + The first string is a permanent identifier based on the contents of the file + at the time it was originally created, and does not change as the file is + incrementally updated. The second string is a changing identifier based + on the file's contents the last time it was updated. + + + If this class were being use to update a PDF's file identifier, we'd need + to add a method to parse an existing file identifier. + + + + + Initialises the CreatedPart and ModifiedPart to a randomly generated GUID. + + + + + Initialises the CreatedPart and ModifiedPart to the passed string. + + + + + Returns the CreatedPart as a byte array. + + + + + Returns the ModifiedPart as a byte array. + + + + + Thrown during creation of PDF font object if the font's license + is violated, e.g. attempting to subset a font that does not permit + subsetting. + + + + + Represents an entry in the directory table + + + + + Gets an instance of an implementation that is + capable of parsing the table identified by tab. + + + + + + Returns the table tag as a string + + + + + + Gets the table tag encoded as an unsigned 32-bite integer. + + + + + Gets or sets a value that represents a + offset, i.e. the number of bytes from the beginning of the file. + + + + + Gets or sets a value representing the number number of bytes + a object occupies in a stream. + + + + + Gets or sets value that represents a checksum of a . + + + + + Class designed to parse a TrueType font file. + + + + + A Big Endian stream. + + + + + Used to identity a font within a TrueType collection. + + + + + Maps a table name (4-character string) to a + + + + + A dictionary of cached instances. + The index is the table name. + + + + + Maps a glyph index to a subset index. + + + + + Class constructor. + + Font data stream. + + + + Class constructor. + + Font data stream. + Name of a font in a TrueType collection. + + + + Gets a value indicating whether or not this font contains the + supplied table. + + A table name. + + + + + Gets a reference to the table structure identified by tableName + + + Only the following tables are supported: + - Font header, + - Horizontal header, + - Horizontal metrics, + - Maximum profile, + - Index to location, + - Glyf data, + - Control value, + - Control value program, + - Font program + + A 4-character code identifying a table. + + If tableName does not represent a table in this font. + + + + + Gets a object for the supplied table. + + A 4-character code identifying a table. + + A object or null if the table cannot + be located. + + + If tag does not represent a table in this font. + + + + + Reads the Offset and Directory tables. If the FontFileStream represents + a TrueType collection, this method will look for the aforementioned + tables belonging to fontName. + + + This method can handle a TrueType collection. + + + + + Caches the following tables: 'head', 'hhea', 'maxp', 'loca' + + + + + Sets the stream position to the offset in the supplied directory + entry. Also ensures that the FontFileStream has enough bytes + available to read a font table. Throws an exception if this + condition is not met. + + + + If the supplied stream does not contain enough data. + + + + + Gets or sets a dictionary containing glyph index to subset + index mappings. + + + + + Gets the underlying . + + + + + Gets the number tables. + + + + + Class designed to read and write primitive datatypes from/to a + TrueType font file. + + +

All OpenType fonts use Motorola-style byte ordering (Big Endian).

+

The following table lists the primitives and their definition. + Note the difference between the .NET CLR definition of certain + types and the TrueType definition.

+

+ BYTE 8-bit unsigned integer. + CHAR 8-bit signed integer. + USHORT 16-bit unsigned integer. + SHORT 16-bit signed integer. + ULONG 32-bit unsigned integer. + LONG 32-bit signed integer. + Fixed 32-bit signed fixed-point number (16.16) + FWORD 16-bit signed integer (SHORT) that describes a + quantity in FUnits. + UFWORD 16-bit unsigned integer (USHORT) that describes a + quantity in FUnits. + F2DOT14 16-bit signed fixed number with the low 14 bits of + fraction (2.14). + LONGDATETIME Date represented in number of seconds since 12:00 + midnight, January 1, 1904. The value is represented + as a signed 64-bit integer. + Tag Array of four uint8s (length = 32 bits) used to identify + a script, language system, feature, or baseline + GlyphID Glyph index number, same as uint16(length = 16 bits) + Offset Offset to a table, same as uint16 (length = 16 bits), + NULL offset = 0x0000 +

+
+
+ + + Initialises a new instance of the + class using the supplied byte array as the underlying buffer. + + The font data encoded in a byte array. + + data is a null reference. + + + data is a zero-length array. + + + + + Initialises a new instance of the + class using the supplied stream as the underlying buffer. + + Reference to an existing stream. + + stream is a null reference. + + + + + Reads an unsigned byte from the font file. + + + + + + Writes an unsigned byte from the font file. + + + + + + Reads an signed byte from the font file. + + + + + + Writes a signed byte from the font file. + + + + + + Reads a short (16-bit signed integer) from the font file. + + + + + + Writes a short (16-bit signed integer) to the font file. + + + + + + Reads a short (16-bit signed integer) from the font file. + + + + + + Writes a short (16-bit signed integer) to the font file. + + + + + + Reads a int (16-bit unsigned integer) from the font file. + + + + + + Writes a int (16-bit unsigned integer) to the font file. + + + + + + Reads a int (16-bit unsigned integer) from the font file. + + + + + + Writes a int (16-bit unsigned integer) to the font file. + + + + + + Reads an int (32-bit signed integer) from the font file. + + + + + + Writes an int (32-bit signed integer) to the font file. + + + + + + Reads a int (32-bit unsigned integer) from the font file. + + + + + + Writes a int (32-bit unsigned integer) to the font file. + + + + + + Reads an int (32-bit signed integer) from the font file. + + + + + + Writes an int (32-bit unsigned integer) to the font file. + + + + + + Reads a long (64-bit signed integer) from the font file. + + + + + + Writes a long (64-bit signed integer) to the font file. + + + + + + Reads a tag (array of four bytes) from the font stream. + + + + + + Writes a tab (array of four bytes) to the font file. + + + + + + Ensures the stream is padded on a 4-byte boundary. + + + This method will output between 0 and 3 bytes to the stream. + + + A value between 0 and 3 (inclusive). + + + + + Writes a sequence of bytes to the underlying stream. + + + + + + + + Reads a block of bytes from the current stream and writes + the data to buffer. + + A byte buffer big enough to store count bytes. + The byte offset in buffer to begin reading. + Number of bytes to read. + + + + Offsets the stream position by the supplied number of bytes. + + + + + + Saves the current stream position onto a marker stack. + + + Returns the current stream position. + + + + + Sets the stream using the marker at the + head of the marker stack. + + + Returns the stream position before it was reset. + + + If the markers stack is empty. + + + + + Gets or sets the current position of the font stream. + + + + + Gets the length of the font stream in bytes. + + + + + A specialised stream writer for creating OpenType fonts. + + + + + Size of the offset table in bytes. + + + + + The underlying stream. + + + + + List of font tables to write. + + + + + Creates a new instance of the class + using stream as the underlying stream object. + + + + If stream is not writable. + + + If streamm is a null reference. + + + + + Queues the supplied for writing + to the underlying stream. + + + The method will not immediately write the supplied font + table to the underlying stream. Instead it queues the + font table since the offset table must be written out + before any tables. + + + + + + Writes the header and font tables to the underlying stream. + + + + + Updates the checkSumAdjustment field in the head table. + + + + + Writes out each table to the font stream. + + + + + Writes the offset table that appears at the beginning of + every TrueType/OpenType font. + + + + + Does not actually write the table directory - simply "allocates" + space for it in the stream. + + + + + Returns the maximum power of 2 <= max + + + + + + + Calculates the checksum of the entire font. + + + The underlying must be aligned on + a 4-byte boundary. + + + + + + Calculates the checksum of a . + + + The supplied stream must be positioned at the beginning of + the table. + + + + + + + Gets the underlying . + + + + + Generates a subset from a TrueType font. + + + + + Creates a new instance of the FontSubset class. + + TrueType font parser. + + + + Writes the font subset to the supplied output stream. + + + + + Reads a glyph description from the specified offset. + + + + + Populate the compositesIList containing all child glyphs + that this glyph uses. + + + The stream parameter must be positioned 10 bytes from + the beginning of the glyph description, i.e. the flags field. + + + + + + + Gets the length of the glyph description in bytes at + index index. + + + + + + + Bit masks of the flags field in a composite glyph. + + + + + Utility class that stores a list of glyph indices and their + asociated subset indices. + + + + + Maps a glyph index to a subset index. + + + + + Maps a subset index to glyph index. + + + + + Class constructor. + + + + + Determines whether a mapping exists for the supplied glyph index. + + + + + + + Returns the subset index for glyphIndex. If a subset + index does not exist for glyphIndex one is generated. + + + A subset index. + + + + Adds the list of supplied glyph indices to the index mappings using + the next available subset index for each glyph index. + + + + + + Gets the subset index of glyphIndex. + + + + A glyph index or -1 if a glyph to subset mapping does not exist. + + + + + Gets the glyph index of subsetIndex. + + + + A subset index or -1 if a subset to glyph mapping does not exist. + + + + + Gets the number of glyph to subset index mappings. + + + + + Gets a list of glyph indices sorted in ascending order. + + + + + Gets a list of subset indices sorted in ascending order. + + + + + Key - Kerning pair identifier + Value - Kerning amount + + + + + Creates an instance of KerningPairs allocating space for + 100 kerning pairs. + + + + + Creates an instance of KerningPairs allocating space for + numPairs kerning pairs. + + + + + + Returns true if a kerning value exists for the supplied + glyph index pair. + + Glyph index for left-hand glyph. + Glyph index for right-hand glyph. + + + + + Creates a new kerning pair. + + + This method will ignore duplicates. + + The glyph index for the left-hand glyph in the kerning pair. + The glyph index for the right-hand glyph in the kerning pair. + The kerning value for the supplied pair. + + + + Returns a kerning pair identifier. + + + + + + + + Gets the kerning amount for the supplied glyph index pair. + + + + + Gets the number of kernings pairs. + + + + + A helper designed that provides the size of each TrueType primitives. + + + + + List of all TrueType and OpenType tables + + + + + Converts one of the predefined table names to an unsigned integer. + + + + + + + Class that represents the Control Value Program table ('prep'). + + + + + Class derived by all TrueType table classes. + + + + + The dictionary entry for this table. + + + + + Class constructor + + The table name. + Table directory entry. + + + + Reads the contents of a table from the current position in + the supplied stream. + + + + If the supplied stream does not contain enough data. + + + + + Writes the contents of a table to the supplied writer. + + + This method should not be concerned with aligning the + table output on the 4-byte boundary. + + + + + + Gets or sets a directory entry for this table. + + + + + Gets the unique name of this table as a 4-character string. + + + Note that some TrueType tables are only 3 characters long + (e.g. 'cvt'). In this case the returned string will be padded + with a extra space at the end of the string. + + + + + Gets the table name encoded as a 32-bit unsigned integer. + + + + + Set of instructions executed whenever point size or font + or transformation change. + + + + + Creates an instance of the class. + + + + + + Reads the contents of the "prep" table from the current position + in the supplied stream. + + + + + + Writes out the array of instructions to the supplied stream. + + + + + + Class that represents the Control Value table ('cvt'). + + + + + List of N values referenceable by instructions. + + + + + Creates an instance of the class. + + + + + + Reads the contents of the "cvt" table from the current position + in the supplied stream. + + + + + + Writes out the array of values to the supplied stream. + + + + + + Gets the value representing the number of values that can + be referenced by instructions. + + + + + Class that represents the Font Program table ('fpgm'). + + + + + List of N instructions. + + + + + Creates an instance of the class. + + + + + + Reads the contents of the "fpgm" table from the current position + in the supplied stream. + + + + + + Writes out the array of instructions to the supplied stream. + + + + + + Gets the value representing the number of instructions + in the font program. + + + + + Instantiates a font table from a table tag. + + + + + Prevent instantiation since this is a factory class. + + + + + Creates an instance of a class that implements the FontTable interface. + + + + One of the pre-defined TrueType tables from the class. + + + A subclass of that is capable of parsing + a TrueType table. + + + If a class capable of parsing tableName is not available. + + + + + Class that represents the Glyf Data table ('glyf'). + + + http://www.microsoft.com/typography/otspec/glyf.htm + + + + + Maps a glyph index to a object. + + + + + Creates an instance of the class. + + + + + + Reads the contents of the "glyf" table from the current position + in the supplied stream. + + + + + + Writes the contents of the glyf table to the supplied stream. + + + + + + Gets the instance located at glyphIndex + + + + + Gets the number of glyphs. + + + + + Represents either a simple or composite glyph description from + the 'glyf' table. + + + This class is nothing more than a wrapper around + a byte array. + + + + + The index of this glyph as obtained from the 'loca' table. + + + + + Contains glyph description as raw data. + + + + + List of composite glyph indices. + + + + + Class constructor. + + + + + Sets the glyph data (duh!). + + + + + + Add the supplied glyph index to list of children. + + + + + + Writes a glyph description to the supplied stream. + + + + + + Gets or sets the index of this glyph. + + + + + Gets the length of the glyph data buffer. + + + + + Gets a ilst of child glyph indices. + + + + + Gets a value indicating whether or not this glyph represents + a composite glyph. + + + + + Class that represents the Font Header table. + + + http://www.microsoft.com/typography/otspec/head.htm + + + + + Class constructor. + + + + + + Reads the contents of the "head" table from the current position + in the supplied stream. + + + + + + Returns a DateTime instance which is the result of adding seconds + to BaseDate. If an exception occurs, BaseDate is returned. + + + + + + Writes the contents of the head table to the supplied stream. + + + + + + Gets a value that indicates whether glyph offsets in the + loca table are stored as a int or ulong. + + + + + Class that represents the Horizontal Header table. + + + http://www.microsoft.com/typography/otspec/hhea.htm + + + + + Table version number 0x00010000 for version 1.0. + + + + + Typographic ascent. (Distance from baseline of highest ascender). + + + + + Typographic descent. (Distance from baseline of lowest descender). + + + + + Typographic line gap. Negative LineGap values are treated as zero + in Windows 3.1, System 6, and System 7. + + + + + Maximum advance width value in 'hmtx' table. + + + + + Minimum left sidebearing value in 'hmtx' table. + + + + + Minimum right sidebearing value. + + + + + Max(lsb + (xMax - xMin)). + + + + + Used to calculate the slope of the cursor (rise/run); 1 for vertical. + + + + + 0 for vertical. + + + + + The amount by which a slanted highlight on a glyph needs to be + shifted to produce the best appearance. Set to 0 for non-slanted fonts. + + + + + 0 for current format. + + + + + Number of hMetric entries in 'hmtx' table. + + + + + Class constructor. + + + + + + Reads the contents of the "hhea" table from the current position + in the supplied stream. + + + + + + Gets the number of horiztonal metrics. + + + + + Summary description for HorizontalMetric. + + + + + Class that represents the Horizontal Metrics ('hmtx') table. + + + http://www.microsoft.com/typography/otspec/hmtx.htm + + + + + Initialises a new instance of the + class. + + + + + + Initialises a new instance of the HorizontalMetricsTable class. + + + + + + + Reads the contents of the "hmtx" table from the supplied stream + at the current position. + + + + + + Returns the number of horizontal metrics stored in the + hmtx table. + + + + + Gets the located at index. + + + + + Class that represents the Index To Location ('loca') table. + + + http://www.microsoft.com/typography/otspec/loca.htm + + + + + Initialises a new instance of the + class. + + + + + + Initialises a new instance of the IndexToLocationTable class. + + + + + + + Reads the contents of the "loca" table from the supplied stream + at the current position. + + + + + + Removes all offsets. + + + + + Includes the supplied offset. + + + + + + Gets the number of glyph offsets. + + + + + Gets or sets the glyph offset at index index. + + A glyph index. + + + + + Class that represents the Kerning table. + + + http://www.microsoft.com/typography/otspec/kern.htm + + + + + Class constructor. + + + + + + Reads the contents of the "kern" table from the current position + in the supplied stream. + + + + + + No supported. + + + + + + Gets a boolean value that indicates this font contains format 0 + kerning information. + + + + + Returns a collection of kerning pairs. + + + If HasKerningInfo returns false, this method will + always return null. + + + + + Class that represents the Horizontal Metrics ('maxp') table. + + + http://www.microsoft.com/typography/otspec/maxp.htm + + + + + Table version number + + + + + The number of glyphs in the font. + + + + + Maximum points in a non-composite glyph. + + + + + Maximum contours in a non-composite glyph. Only set if + versionNo is 1.0. + + + + + Maximum points in a composite glyph. Only set if + versionNo is 1.0. + + + + + Maximum contours in a composite glyph. Only set if + versionNo is 1.0. + + + + + 1 if instructions do not use the twilight zone (Z0), or + 2 if instructions do use Z0; should be set to 2 in most + cases. Only set if versionNo is 1.0. + + + + + Maximum points used in Z0. Only set if + versionNo is 1.0. + + + + + Number of Storage Area locations. Only set if + versionNo is 1.0. + + + + + Number of FDEFs. Only set if versionNo is 1.0. + + + + + Number of IDEFs. Only set if versionNo is 1.0. + + + + + Maximum stack depth2. Only set if versionNo is 1.0. + + + + + Maximum byte count for glyph instructions. Only set + if versionNo is 1.0. + + + + + Maximum number of components referenced at "top level" + for any composite glyph. Only set if + versionNo is 1.0. + + + + + Maximum levels of recursion; 1 for simple components. + Only set if versionNo is 1.0. + + + + + Initialises a new instance of the + class. + + + + + + Reads the contents of the "maxp" table from the supplied stream + at the current position. + + + + + + Gets the number of glyphs + + + + + Class that represents the Naming ('name') table + + + http://www.microsoft.com/typography/otspec/name.htm + + + + + Offset to start of string storage (from start of table). + + + + + Reads the contents of the "name" table from the supplied stream + at the current position. + + + + + + Reads a string from the storage area beginning at offset + consisting of length bytes. The returned string will be + converted using the Unicode encoding. + + Big-endian font stream. + + The offset in bytes from the beginning of the string storage area. + + The length of the string in bytes. + + + + + Not supported. + + + + + + Get the font family name. + + + + + Gets the font full name composed of the family name and the + subfamily name. + + + + + Class that represents the OS/2 ('OS/2') table + + +

For detailed information on the OS/2 table, visit the following link: + http://www.microsoft.com/typography/otspec/os2.htm

+

For more details on the Panose classification metrics, visit the following URL: + http://www.panose.com/hardware/pan2.asp

+
+
+ + + Reads the contents of the "os/2" table from the supplied stream + at the current position. + + + + + + Gets a boolean value that indicates whether this font contains + italic characters. + + + + + Gets a boolean value that indicates whether characters are + in the standard weight/style. + + + + + Gets a boolean value that indicates whether characters possess + a weight greater than or equal to 700. + + + + + Gets a boolean value that indicates whether this font contains + characters that all have the same width. + + + + + Gets a boolean value that indicates whether this font contains + special characters such as dingbats, icons, etc. + + + + + Gets a boolean value that indicates whether characters + do possess serifs + + + + + Gets a boolean value that indicates whether characters + are designed to simulate hand writing. + + + + + Gets a boolean value that indicates whether characters + do not possess serifs + + + + + Gets a boolean value that indicates whether this font may be + legally embedded. + + + + + Gets a boolean value that indicates whether this font may be + subsetted. + + + + + Class that represents the PostScript ('post') table + + + http://www.microsoft.com/typography/otspec/post.htm + + + + + 0x00010000 for version 1.0 + 0x00020000 for version 2.0 + 0x00025000 for version 2.5 (deprecated) + 0x00030000 for version 3.0 + + + + + Italic angle in counter-clockwise degrees from the vertical. + Zero for upright text, negative for text that leans to the + right (forward). + + + + + This is the suggested distance of the top of the underline from + the baseline (negative values indicate below baseline). + + + + + Suggested values for the underline thickness. + + + + + Set to 0 if the font is proportionally spaced, non-zero if the + font is not proportionally spaced (i.e. monospaced). + + + + + Minimum memory usage when an OpenType font is downloaded. + + + + + Maximum memory usage when an OpenType font is downloaded. + + + + + Minimum memory usage when an OpenType font is downloaded + as a Type 1 font. + + + + + Maximum memory usage when an OpenType font is downloaded + as a Type 1 font. + + + + + Class constructor. + + + + + + Reads the contents of the "post" table from the supplied stream + at the current position. + + + + + + Gets a boolean value that indicates whether this font is + proportionally spaced (fixed pitch) or not. + + + + + Class that represents the Offset and Directory tables. + + + http://www.microsoft.com/typography/otspec/otff.htm + + + + + Gets a value indicating whether or not this font contains the + supplied table. + + A table name. + + + + + Gets a DirectoryEntry object for the supplied table. + + A 4-character code identifying a table. + + A DirectoryEntry object or null if the table cannot be located. + + + If tableName does not represent a table in this font. + + + + + Gets the number tables. + + + + + A very lightweight wrapper around a Win32 device context + + + + + Pointer to device context created by ::CreateDC() + + + + + Creates a new device context that matches the desktop display surface + + + + + + + + + Delete the device context freeing the associated memory. + + + + + Selects a font into a device context (DC). The new object + replaces the previous object of the same type. + + Handle to object. + A handle to the object being replaced. + + + + Gets a handle to an object of the specified type that has been + selected into this device context. + + + + + Returns a handle to the underlying device context + + + + + A thin wrapper around a handle to a font + + + + + Class constructor + + A handle to an existing font. + + + + + + Class destructor + + + + + Creates a font based on the supplied typeface name and size. + + The typeface name of a font. + + The height, in logical units, of the font's character + cell or character. + + + + + + + + Creates a font whose height is equal to the negative value + of the EM Square + + The typeface name of a font. + + + + + + + + Retrieves all pertinent TrueType tables by invoking GetFontData. + + + + + Summary description for GdiFontEnumerator. + + + + + Class constructor. + + A non-null reference to a wrapper around a GDI device context. + + + + Returns a list of font styles associated with familyName. + + + + + + + Returns a list of font family names sorted in ascending order. + + + + + Class that obtains OutlineTextMetrics for a TrueType font + + + + + + + Gets font metric data for a TrueType font or TrueType collection. + + + + + + Retrieves the widths, in PDF units, of consecutive glyphs. + + + An array of integers whose size is equal to the number of glyphs + specified in the 'maxp' table. + The width at location 0 is the width of glyph with index 0, + The width at location 1 is the width of glyph with index 1, + etc... + + + + + Returns the width, in PDF units, of consecutive glyphs for the + WinAnsiEncoding only. + + An array consisting of 256 elements. + + + + Translates the supplied character to a glyph index using the + currently selected font. + + A unicode character. + + + + + Retrieves the typeface name of the font that is selected into the + device context supplied to the GdiFontMetrics constructor. + + + + + Specifies the number of logical units defining the x- or y-dimension + of the em square for this font. The common value for EmSquare is 2048. + + + The number of units in the x- and y-directions are always the same + for an em square.) + + + + + Gets the main italic angle of the font expressed in tenths of + a degree counterclockwise from the vertical. + + + Regular (roman) fonts have a value of zero. Italic fonts typically + have a negative italic angle (that is, they lean to the right). + + + + + Specifies the maximum distance characters in this font extend + above the base line. This is the typographic ascent for the font. + + + + + Specifies the maximum distance characters in this font extend + below the base line. This is the typographic descent for the font. + + + + + Gets the distance between the baseline and the approximate + height of uppercase letters. + + + + + Gets the distance between the baseline and the approximate + height of non-ascending lowercase letters. + + + + + TODO: The thickness, measured horizontally, of the dominant vertical + stems of the glyphs in the font. + + + + + Gets the value of the first character defined in the font + + + + + Gets the value of the last character defined in the font + + + + + Gets the average width of glyphs in a font. + + + + + Gets the maximum width of glyphs in a font. + + + + + Gets a value indicating whether the font can be legally embedded + within a document. + + + + + Gets a value indicating whether the font can be legally subsetted. + + + + + Gets the font's bounding box. + + + This is the smallest rectangle enclosing the shape that would + result if all the glyphs of the font were placed with their + origins cooincident and then filled. + + + + + Gets a collection of flags defining various characteristics of + a font (e.g. serif or sans-serif, symbolic, etc). + + + + + Gets a collection of kerning pairs. + + + + + + Gets a collection of kerning pairs for characters defined in + the WinAnsiEncoding scheme only. + + + + + + Class constructor. + + Kerning pairs read from the TrueType font file. + Class to convert from TTF to PDF units. + + + + Returns true if a kerning value exists for the supplied + character index pair. + + + + + + + + Gets the number of kerning pairs. + + + + + Gets the kerning amount for the supplied index pair or 0 if + a kerning pair does not exist. + + + + + Installs a collection of private fonts on the system and uninstalls + them when disposed. + + + + + Specifies that only the process that called the AddFontResourceEx + function can use this font. + + + + + Specifies that no process, including the process that called the + AddFontResourceEx function, can enumerate this font. + + + + + Collection of absolute filenames. + + + + + Adds filename to this private font collection. + + + Absolute path to a TrueType font or collection. + + + If filename is null. + If filename is the empty string. + + + + Adds fontFile to this private font collection. + + + Absolute path to a TrueType font or collection. + + + If fontFile does not exist. + + + If fontFile has already been added. + + + If fontFile cannot be added to the system font collection. + + + + + Custom collection that maintains a list of Unicode ranges + a font supports and the glyph indices of each character. + The list of ranges is obtained by invoking GetFontUnicodeRanges, + however the associated glyph indices are lazily instantiated as + required to save memory. + + + + + List of unicode ranges in ascending numerical order. The order + is important since a binary search is used to locate and + uicode range from a charcater. + + + + + Class constuctor. + + + + + + Loads all the unicode ranges. + + + + + Locates the for the supplied character. + + + + The object housing c or null + if a range does not exist for c. + + + + + Translates the supplied character to a glyph index. + + Any unicode character. + + A glyph index for c or 0 the supplied character does + not exist in the font selected into the device context. + + + + + Gets the number of unicode ranges. + + + + + Converts from logical TTF units to PDF units. + + + + + Class constructor. + + + Specifies the number of logical units defining the x- or + y-dimension of the em square of a font. + + + + + Convert the supplied integer from TrueType units to PDF units + based on the EmSquare + + + + If the value of emSquare is zero, this method will + always return value. + + + + + The ABC structure contains the width of a character in a TrueType font. + + + + + The OUTLINETEXTMETRIC structure contains metrics describing + a TrueType font. + + + + + The PANOSE structure describes the PANOSE font-classification values + for a TrueType font. These characteristics are then used to associate + the font with other fonts of similar appearance but different names. + + + + + The Point structure defines the x- and y- coordinates of a point. + + + + + The Rect structure defines the coordinates of the upper-left + and lower-right corners of a rectangle + + + + + The TEXTMETRIC structure contains basic information about a physical + font. All sizes are specified in logical units; that is, they depend + on the current mapping mode of the display context. + + + + + Class that represents a unicode character range as returned + by the GetFontUnicodeRanges function. + + + + + Array of glyph indices for each character represented by + this range begining at . + + + + + Class constructor. + + + Value representing start of unicode range. + Value representing end of unicode range. + + + + Returns the glyph index of c. + + + + + + + Populates the indices array with the glyph index of each + character represented by this rnage starting at . + + + + + Gets a value representing the start of the unicode range. + + + + + Gets a value representing the end of the unicode range. + + + + + Summary description for UnicodeRangeComparer. + + + + + Maps a Unicode character to a WinAnsi codepoint value. + + + + + First column is codepoint value. Second column is unicode value. + + + + + The root of a document's object hierarchy is the catalog dictionary. + + + The document catalog is described in section 3.6.1 of the PDF specification. + + + + + A dictionary that contains information about a CIDFont program. + + + A Type 0 CIDFont contains glyph descriptions based on Adobe's Type + 1 font format, whereas those in a Type 2 CIDFont are based on the + TrueType font format. + + + + + A dictionary containing entries that define the character collection + of the CIDFont. + + + + + Class that defines a mapping between character codes (CIDs) + to a character selector (Identity-H encoding) + + + + + TODO: This method is temporary. I'm assuming that all string should + be represented as a PdfString object? + + + + + + Adds the supplied glyph -> unicode pairs. + + + Both the key and value must be a int. + + + + + + Adds the supplied glyph index to unicode value mapping. + + + + + + + Overriden to create CMap content stream. + + + + + + Writes the bfchar entries to the content stream in groups of 100. + + + + + + Writes the bfrange entries to the content stream in groups of 100. + + + + + + Was originally called PdfDocument, but this name is now in + use by the Telerik.Pdf library. Eventually all code in this + class should either be moved to either the Telerik.Pdf library, + or to the PdfRenderer. + + + + Get the root Outlines object. This method does not write + the outline to the Pdf document, it simply creates a + reference for later. + + + Make an outline object and add it to the given outline + @param parent parent PdfOutline object + @param label the title for the new outline object + @param action the PdfAction to reference + + + get the /Resources object for the document + + @return the /Resources object + + + + PDF defines a standard date format. The PDF date format closely + follows the format defined by the international standard ASN.1. + + + The format of the PDF date is defined in section 3.8.2 of the + PDF specification. + + + + + A class that enables a well structured PDF document to be generated. + + + Responsible for allocating object identifiers. + + + + + Class representing a file trailer. + + + File trailers are described in section 3.4.4 of the PDF specification. + + + + + Returns the internal name used for this font. + + + + + Creates all the necessary PDF objects required to represent + a font object in a PDF document. + + + + + Generates object id's. + + + + + + + + + + + Returns a subclass of the PdfFont class that may be one of + PdfType0Font, PdfType1Font or PdfTrueTypeFont. The type of + subclass returned is determined by the type of the font + parameter. + + The PDF font identifier, e.g. F15 + Underlying font object. + + + + + Creates a character indexed font from cidFont + + + The font and cidFont will be different object + references since the font parameter will most likely + be a . + + The Pdf font identifier, e.g. F15 + Required to access the font descriptor. + The underlying CID font. + + + + + Returns the next available Pdf object identifier. + + + + + + Creates an instance of the class + + The Pdf font identifier, e.g. F15 + + + + + + Creates an instance of the class + that defaults the font encoding to WinAnsiEncoding. + + + + + + + + + A ProxyFont must first be resolved before getting the + IFontMetircs implementation of the underlying font. + + + + + + An enumeration listing all the fonts types available in Pdf. + + + + + An enumeration listing all the font subtypes + + + + + An International Color Code stream + + + + + Represents a Identity-H character encoding + + + Maps 2-byte character codes ranging from 0 to 65,535 to + the same 2-byte CID value, interpreted high-order byte first + + + + + Do not call this method directly + + + + + Do not call this method directly + + + + + Class representing a document information dictionary. + + + Document information dictionaries are described in section 9.2.1 of the + PDF specification. + + + + + Well-known PDF name objects. + + + + + This represents a single Outline object in a PDF, including the root Outlines + object. Outlines provide the bookmark bar, usually rendered to the right of + a PDF document in user agents such as Acrobat Reader + + + + + List of sub-entries (outline objects) + + + + + Parent outline object. Root Outlines parent is null + + + + + Title to display for the bookmark entry + + + + + Class constructor. + + The object id number + The title of the outline entry (can only be null for root Outlines obj) + The page which this outline refers to. + + + + Add a sub element to this outline + + + + + + The pages of a document are accessed through a structure known + as the page tree. + + + The page tree is described in section 3.6.2 of the PDF specification. + + + + + Returns this PdfString expressed using the 'literal' convention. + + + A literal string is written as an arbitrary number of characters + enclosed in parentheses. Any characters may appear in a string + except unbalanced parentheses and the backslash, which must be + treated specially. Balanced pairs of parentheses within a string + require no special treatment. + + + + + Used by ToPdfHexadecimal. + + + + + Returns the PdfString expressed using the 'hexadecimal' convention. + + + Strings may also be written in hexadecimal form; this is useful for + including arbitrary binary data in a PDF file. A hexadecimal string + is written as a sequence of hexadecimal digits (0–9 and either A–F + or a–f) enclosed within angle brackets (< and >). + + + + + The convention used when outputing the string to the PDF document. + + + Defaults to format. + + + + + Determines if the string should bypass encryption, even when + available. + + + Some PDF strings need to appear unencrypted in a secure PDF + document. Most noteably those in the encryption dictionary + itself. This property allows those strings to be flagged. + + + + + The PDF specification describes two conventions that can be + used to embed a string in a PDF document. This enumeration, + along with the property + can be used to select how a string will be formatted in the + PDF file. + + + + + A unique object number. + + + The name by which the font is reference in the Font subdictionary + + + The PostScript name of the font. + + + + + Sets a value representing the character encoding. + + + + + Sets the font descriptor. + + + + + Sets the first character code defined in the font's widths array + + + The default value is 0. + + + + + Sets the last character code defined in the font's widths array + + + The default value is 255. + + + + + Sets the array of character widths. + + + + + A Type 0 font is a composite font whose glyphs are obtained from a + font like object called a CIDFont (a descendant font). + + + All versions of the PDF specification up to and including version 1.4 + only support a single descendant font. + + + + + Sets the stream containing a CMap that maps character codes to + unicode values. + + + + + Sets the descendant font. + + + + + Sets a value representing the character encoding. + + + + + Sets a value representing the character encoding. + + + + + Array class used to represent the /W entry in the CIDFont dictionary. + + + + + ARC4 is a fast, simple stream encryption algorithm that is + compatible with RSA Security's RC4 algorithm. + + + + + Initialises internal state from the passed key. + + + Can be called again with a new key to reuse an Arc4 instance. + + The encryption key. + + + + Encrypts or decrypts the passed byte array. + + + The data to be encrypted or decrypted. + + + The location that the encrypted or decrypted data is to be placed. + The passed array should be at least the same size as dataIn. + It is permissible for the same array to be passed for both dataIn + and dataOut. + + + + + Generates a pseudorandom byte used to encrypt or decrypt. + + + + + Implements Adobe's standard security handler. A security handler is + a software module that implements various aspects of the encryption + process. + + + + + Constructs a new standard security manager. + + + The user supplied PDF options that provides access to the passwords and + the access permissions. + + + The PDF document's file identifier (see section 8.3 of PDF specification). + + + + + Computes the master key that is used to encrypt string and stream data + in the PDF document. + + + The user supplied PDF options that provides access to the passwords and + the access permissions. + + + The PDF document's file identifier (see section 8.3 of PDF specification). + + + + + Computes the O(owner) value in the encryption dictionary. + + + Corresponds to algorithm 3.3 on page 69 of the PDF specficiation. + + + The user supplied PDF options that provides access to the passwords. + + + + + Computes the U(user) value in the encryption dictionary. + + + Corresponds to algorithm 3.4 on page 70 of the PDF specficiation. + + + The user supplied PDF options that provides access to the passwords. + + + + + Encrypts the passed byte array using the ARC4 cipher. + + + + + Computes an encryption key that is used to encrypt string and stream data + in the PDF document. + + + Corresponds to algorithm 3.1 in section 3.5 of the PDF specficiation. + + + + + Computes an encryption key that is used to encrypt string and stream data + in the PDF document. + + + Corresponds to algorithm 3.2 in section 3.5 of the PDF specficiation. + + + + + Pads or truncates a password string to exactly 32-bytes. + + + Corresponds to step 1 of algorithm 3.2 on page 69 of the PDF 1.3 specficiation. + + The password to pad or truncate. + + A byte array of length 32 bytes containing the padded or truncated password. + + + + + Determines if the passed password matches the user password + used to initialise this security manager. + + + Used for testing purposes only. Corresponds to algorithm 3.5 in the + PDF 1.3 specification. + + True if the password is correct. + + + + Performs the actual checking of the user password. + + + + + Checks the owner password. + + + + + Compares two byte arrays and returns true if they are equal. + + + + + Access to the raw user entry byte array. + + + Required for testing purposes; + + + + + Access to the raw owner entry byte array. + + + Required for testing purposes; + + + + + Password that disables all security permissions + + + + + The user password + + + + + Collection of flags describing permissions granted to user who opens + a file with the user password. + + + The given initial value zero's out first two bits. + The PDF specification dictates that these entries must be 0. + + + + + Enables or disables printing. + + If true enables printing otherwise false + + + + Enable or disable changing the document other than by adding or + changing text notes and AcroForm fields. + + + + + + Enable or disable copying of text and graphics from the document. + + + + + + Enable or disable adding and changing text notes and AcroForm fields. + + + + + + Returns the owner password as a string. + + + The default value is null + + + + + Returns the user password as a string. + + + The default value is null + + + + + The document access privileges encoded in a 32-bit unsigned integer + + + The default access priviliges are: +
    +
  • Printing disallowed
  • +
  • Modifications disallowed
  • +
  • Copy and Paste disallowed
  • +
  • Addition or modification of annotation/form fields disallowed
  • +
+ To override any of these priviliges see the , + , , + methods +
+
+ + + A single section in a PDF file's cross-reference table. + + + The cross-reference table is described in section 3.4.3 of + the PDF specification. + + + + + Right now we only support a single subsection. + + + + + Adds an entry to the section. + + + + + Writes the cross reference section to the passed PDF writer. + + + + + A sub-section in a PDF file's cross-reference table. + + + The cross-reference table is described in section 3.4.3 of + the PDF specification. + + + + + This entries contained in this subsection. + + + + + Creates a new blank sub-section, that initially contains no entries. + + + + + Adds an entry to the sub-section. + + + + + Writes the cross reference sub-section to the passed PDF writer. + + + + + Structure representing a single cross-reference entry. + + + + + The object number and generation number. + + + + + The number of bytes from the beginning of the file to + the beginning of the object. + + + + + Implementation of IComparable. + + + + + A PDF file's cross-reference table. + + + The cross-reference table is described in section 3.4.3 of + the PDF specification. + + + + + Right now we only support a single section. + + + + + Adds an entry to the table. + + + + + Writes the cross reference table to the passed PDF writer. + + + + + A marker interface to indicate an object can be passed to + the property. + + + + + + + + Sets up the PDF fonts. + + + Assigns the font (with metrics) to internal names like "F1" and + assigns family-style-weight triplets to the fonts. + + + + + First 16 indices are used by base 14 and generic fonts + + + + + Handles mapping font triplets to a IFontMetric implementor + + + + + Adds all the system fonts to the FontInfo object. + + + Adds metrics for basic fonts and useful family-style-weight + triplets for lookup. + + Determines what type of font to instantiate. + + + + Returns true is familyName represents one of the + base 14 fonts; otherwise false. + + + + + + + Gets the next available font name. A font name is defined as an + integer prefixed by the letter 'F'. + + + + + + Add the fonts in the font info to the PDF document. + + Object that creates PdfFont objects. + Resources object to add fonts too. + + + + Base class for the standard 14 fonts as defined in the PDF spec. + + + + + Base class for PDF font classes + + + + + Maps a Unicode character to a character index. + + A Unicode character. + + + + + See + + + + + Get the encoding of the font. + + + A font encoding defines a mapping between a character code + and a code point. + + + + + Gets the base font name. + + + + + + Gets the type of font, e.g. Type 0, Type 1, etc. + + + + + + Gets the font subtype. + + + + + + Gets a reference to a FontDescriptor + + + + + Gets a boolean value indicating whether this font supports + multi-byte characters + + + + + See + + + + + See + + + + + See + + + + + See + + + + + See + + + + + See + + + + + Class constructor. + + + + + Will always return null since the standard 14 fonts do not + have a FontDescriptor. + + + It is possible to override the default metrics, but the + current version of Apoc does not support this feature. + + + + + Base class for a CID (Character Indexed) font. + + + There are two types of CIDFont: Type 0 and Type 2. A Type 0 CIDFont + contains glyph description based on Adobe Type 1 font format; a + Type 2 CIDFont contains glyph descriptions based on the TrueType + font format. + See page 338 of the Adode PDF 1.4 specification for futher details. + + + + + Gets the PostScript name of the font. + + + + + Gets a dictionary mapping character codes to unicode values + + + + + Returns . + + + + + Gets a string identifying the issuer of the character collections. + + + The default implementation returns . + + + + + Gets a string that uniquely names the character collection. + + + The default implementation returns . + + + + + Gets the supplement number of the character collection. + + + The default implementation returns . + + + + + Gets the default width for all glyphs. + + + The default implementation returns + + + + + Represents a collection of font descriptor flags specifying + various characterisitics of a font. + + + The following lists the bit positions and associated flags: + 1 - FixedPitch + 2 - Serif + 3 - Symbolic + 4 - Script + 6 - Nonsymbolic + 7 - Italic + 17 - AllCap + 18 - SmallCap + 19 - ForceBold + + + + + Default class constructor. + + + + + Class constructor. Initialises the flags BitVector with the + supplied integer. + + + + + Gets the font descriptor flags as a 32-bit signed integer. + + + + + Handy enumeration used to reference individual bit positions + in the BitVector32. + + + + + Collection of font properties such as face name and whether the + a font is bold and/or italic. + + + + + Class constructor. + + + Regular : bold=false, italic=false + Bold : bold=true, italic=false + Italic : bold=false, italic=true + BoldItalic : bold=true, italic=true + + Font face name, e.g. Arial. + Bold flag. + Italic flag. + + + + A proxy object that delegates all operations to a concrete + subclass of the Font class. + + + + + Flag that indicates whether the underlying font has been loaded. + + + + + Font details such as face name, bold and italic flags + + + + + The font that does all the work. + + + + + Determines what type of "real" font to instantiate. + + + + + Class constructor. + + + + + + + Loads the underlying font. + + + + + Gets the underlying font. + + + + + Represents a TrueType font program. + + + + + Wrapper around a Win32 HDC. + + + + + Provides font metrics using the Win32 Api. + + + + + List of kerning pairs. + + + + + Maps a glyph index to a PDF width + + + + + + + + + + Class constructor + + + + + + Creates a object from baseFontName + + + + + See + + A WinAnsi codepoint. + + + + + Returns . + + + + + A Type 2 CIDFont is a font whose glyph descriptions are based on the + TrueType font format. + + + TODO: Support font subsetting + + + + + Wrapper around a Win32 HDC. + + + + + Provides font metrics using the Win32 Api. + + + + + List of kerning pairs. + + + + + Maps a glyph index to a PDF width + + + + + Windows font name, e.g. 'Arial Bold' + + + + + + + + + + Maps a glyph index to a character code. + + + + + Maps character code to glyph index. The array is based on the + value of . + + + + + Class constructor. + + + + + + Creates a object from baseFontName + + + + + Class destructor. + + + + + Returns . + + + + + A subclass of Type2CIDFont that generates a subset of a + TrueType font. + + + + + Maps a glyph index to a subset index. + + + + + Quasi-unique six character name prefix. + + + + + Class constructor. + + + + + + Creates the index mappings list and adds the .notedef glyphs + + + + + Enumeration that dictates how Apoc should treat fonts when + producing a PDF document. + + +

Each of the three alernatives has particular advantages and + disadvantages, which will be explained here.

+

The member specifies that all fonts + should be linked. This option will produce the smallest PDF + document because the font program required to render individual + glyphs is not embedded in the PDF document. However, this + option does possess two distinct disadvantages: +

    +
  1. Only characters in the WinAnsi character encoding are + supported (i.e. Latin)
  2. +
  3. The PDF document will not render correctly if the linked + font is not installed.
  4. +
///

+

The option will copy the contents of + the entire font program into the PDF document. This will guarantee + correct rendering of the document on any system, however certain + fonts - especially CJK fonts - are extremely large. The MS Gothic + TrueType collection, for example, is 8MB. Embedding this font file + would produce a ridicuously large PDF.

+

Finally, the option will only copy the required + glyphs required to render a PDF document. This option will ensure that + a PDF document is rendered correctly on any system, but does incur a + slight processing overhead to subset the font.

+
+
+ + + Fonts are linked. + + + + + The entire font program is embedded. + + + + + The font program is subsetted and embedded. + + + + + The current vertical position in millipoints from bottom. + + + + + The current horizontal position in millipoints from left. + + + + + The horizontal position of the current area container. + + + + + The PDF Document being created. + + + + + The /Resources object of the PDF document being created. + + + + + The current stream to add PDF commands to. + + + + + The current annotation list to add annotations to. + + + + + The current page to add annotations to. + + + + + True if a TJ command is left to be written. + + + + + The previous Y coordinate of the last word written. + + + Used to decide if we can draw the next word on the same line. + + + + + The previous X coordinate of the last word written. + + + Used to calculate how much space between two words. + + + + + The width of the previous word. + + + Used to calculate space between. + + + + + Reusable word area string buffer to reduce memory usage. + + + TODO: remove use of this. + + + + + User specified rendering options. + + + + + The current (internal) font name. + + + + + The current font size in millipoints. + + + + + The current color/gradient to fill shapes with. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Previous values used for text-decoration drawing. + + + + + Provides triplet to font resolution. + + + + + Handles adding base 14 and all system fonts. + + + + + The IDReferences for this document. + + + + + Create the PDF renderer. + + + + + + + + + add a line to the current stream + + @param x1 the start x location in millipoints + @param y1 the start y location in millipoints + @param x2 the end x location in millipoints + @param y2 the end y location in millipoints + @param th the thickness in millipoints + @param r the red component + @param g the green component + @param b the blue component + + + add a line to the current stream + + @param x1 the start x location in millipoints + @param y1 the start y location in millipoints + @param x2 the end x location in millipoints + @param y2 the end y location in millipoints + @param th the thickness in millipoints + @param rs the rule style + @param r the red component + @param g the green component + @param b the blue component + + + add a rectangle to the current stream + + @param x the x position of left edge in millipoints + @param y the y position of top edge in millipoints + @param w the width in millipoints + @param h the height in millipoints + @param stroke the stroke color/gradient + + + add a filled rectangle to the current stream + + @param x the x position of left edge in millipoints + @param y the y position of top edge in millipoints + @param w the width in millipoints + @param h the height in millipoints + @param fill the fill color/gradient + @param stroke the stroke color/gradient + + + add a filled rectangle to the current stream + + @param x the x position of left edge in millipoints + @param y the y position of top edge in millipoints + @param w the width in millipoints + @param h the height in millipoints + @param fill the fill color/gradient + + + render image area to PDF + + @param area the image area to render + + + render a foreign object area + + + render inline area to PDF + + @param area inline area to render + + + Convert a char to a multibyte hex representation + + + Checks to see if we have some text rendering commands open + still and writes out the TJ command to the stream if we do + + + render page into PDF + + @param page page to render + + + defines a string containing dashArray and dashPhase for the rule style + + + + Renders an area's background. + + The area whose background is to be rendered. + The x position of the left edge in millipoints. + The y position of top edge in millipoints. + The width in millipoints. + The height in millipoints. + + + + Renders an image, rendered at the image's intrinsic size. + This by default calls drawImageScaled() with the image's + intrinsic width and height, but implementations may + override this method if it can provide a more efficient solution. + + The x position of left edge in millipoints. + The y position of top edge in millipoints. + The image to be rendered. + + + + Renders an image, scaling it to the given width and height. + If the scaled width and height is the same intrinsic size + of the image, the image is not scaled + + The x position of left edge in millipoints. + The y position of top edge in millipoints. + The width in millipoints. + The height in millipoints. + The image to be rendered. + + + + Renders an image, clipping it as specified. + + The x position of left edge in millipoints. + The y position of top edge in millipoints. + The left edge of the clip in millipoints. + The top edge of the clip in millipoints. + The clip width in millipoints. + The clip height in millipoints. + The image to be rendered. + + + render display space + + @param space the display space to render + + + render inline space + + @param space space to render + + + render leader area + + @param area area to render + + + + Assigns renderer options to this PdfRenderer + + + This property will only accept an instance of the PdfRendererOptions class + + + If value is not an instance of PdfRendererOptions + + + + + This class can be used to control various properties of PDF files + created by Apoc XSL-FO. + + + Can be used to control certain values in the generated PDF's information + dictionary. These values are typically displayed in a document summary + dialog of PDF viewer applications. + This class also allows security settings to be specified that will + cause generated PDF files to be encrypted and optionally password protected. + + + + + The given initial value zero's out first two bits. + The PDF specification dictates that these entries must be 0. + + + + + Adds a keyword to the PDF document. + + + Keywords are embedded in the PDF information dictionary. + + The keyword to be added. + + + + Adds fileInfo to the private font collection. + + + Absolute path to a TrueType font or collection. + + + If fileInfo is null. + + + If fileInfo does not exist. + + + If fileInfo has already been added. + + + If fileInfo cannot be added to the system font collection. + + + + + Specifies the Title of the PDF document. + + + The default value is null. + + + This value will be embedded in the PDF information dictionary. + + + + + Specifies the Subject of the PDF document. + + + The default value is null. + + + This value will be embedded in the PDF information dictionary. + + + + + Specifies the Author of the PDF document. + + + The default value is null. + + + This value will be embedded in the PDF information dictionary. + + + + + Returns the Creator of the PDF document. + + + This method will always return "XSL-FO http://www.w3.org/1999/XSL/Format". + + + + + Returns the Producer of the PDF document. + + + This method will return the assembly name and version of Apoc. + + + + + Returns a list of keywords as a comma-separated string + + + If no keywords exist the empty string is returned + + + + + Specifies the owner password that will protect full access to any generated PDF documents. + + + If either the owner or the user password is specified, + then the document will be encrypted. + + + The default value is null. + + + + + Specifies the user password that will protect access to any generated PDF documents. + + + If either the owner or the user password is specified, + then the document will be encrypted. + + + The default value is null. + + + + + Returns true if any permissions have been set. + + + + + Returns the PDF permissions encoded as an 32-bit integer. + + + + + Enables or disables printing. + + + The default value is true. + + + + + Enables or disables modifying document contents (other than text annotations and + interactive form fields). + + + The default value is true. + + + + + Enables or disables copying of text and graphics. + + + The default value is true. + + + + + Enables or disables adding or modifying text annotations and interactive + form fields. + + + The default value is true. + + + + + Specifies how Apoc should treat fonts. + + + The default value is FontType.Link + + + + + Gets or sets a value that indicates whether to enable kerning. + + + The default value is false + + + + + Specifies the output format that Apoc XSL-FO should render to. + + + Currently the only useful format supported is PDF. The + XML format is intended for informational/debugging purposes + only. + + + + + + Instructs Apoc to output an XML representation. + + + This format is useful only for informational/debugging purposes. + + + + + Instructs Apoc to output PDF. + + + + + This class can be used to control various properties of PDF files + created by the XML tree renderer. + + + + + Default XML renderer properties + + + + + Determines if the XMLRenderer should use verbose output + + + + + This class acts as a bridge between the XML:FO parser and the + formatting/rendering classes. It will queue PageSequences up until + all the IDs required by them are satisfied, at which time it will + render the pages. + StreamRenderer is created by Driver and called from FOTreeBuilder + when a PageSequence is created, and AreaTree when a Page is formatted. + + + + + Keep track of the number of pages rendered. + + + + + The renderer being used. + + + + + The formatting results to be handed back to the caller. + + + + + The FontInfo for this renderer. + + + + + The list of pages waiting to be renderered. + + + + + The current set of IDReferences, passed to the areatrees + and pages. This is used by the AreaTree as a single map of + all IDs. + + + + + The list of extensions. + + + + + The list of markers. + + + + + Format the PageSequence. The PageSequence formats Pages and adds + them to the AreaTree, which subsequently calls the StreamRenderer + instance (this) again to render the page. At this time the page + might be printed or it might be queued. A page might not be + renderable immediately if the IDReferences are not all valid. In + this case we defer the rendering until they are all valid. + + + + + + Try to process the queue from the first entry forward. If an + entry can't be processed, then the queue can't move forward, + so return. + + + + + + Auxillary function for retrieving markers. + + + + + + Auxillary function for retrieving markers. + + + + + + Auxillary function for retrieving markers. + + + + + + A RenderQueueEntry consists of the Page to be queued, plus a list + of outstanding ID references that need to be resolved before the + Page can be renderered. + + + + + The Page that has outstanding ID references. + + + + + MG - to replace the outer this Java nonsense */ + + + + + A list of ID references (names). + + + + + See if the outstanding references are resolved in the current + copy of IDReferences. + + + + + + A subclass of FileStream that automatically deletes the file supplied + to the class constructor when Close() is invoked + + + + + Default class constuctor that opens the supplied file filename + using the FileMode.Open parameter.
+ +
+
+ + + Overriden. Attempts to delete the filename supplied to the + class constructor using . If an + exception is thrown, it is caught and ignored + + + + + maxDelimChar stores the value of the delimiter character with + the highest value. It is used to optimize the detection of + delimiter characters. + + + + + Set maxDelimChar to the highest char in the delimiter set. + + + + + Constructs a string tokenizer for the specified string. All + characters in the delim argument are the delimiters + for separating tokens.
+ If the returnDelims flag is true, then + the delimiter characters are also returned as tokens. Each delimiter + is returned as a string of length one. If the flag is + false, the delimiter characters are skipped and only + serve as separators between tokens. +
+ + + +
+ + + Constructs a string tokenizer for the specified string. The + characters in the delim argument are the delimiters + for separating tokens. Delimiter characters themselves will not + be treated as tokens. + + a string to be parsed. + the delimiters. + + + + Constructs a string tokenizer for the specified string. The + tokenizer uses the default delimiter set, which is the space + character, the tab character, the newline character, the + carriage-return character, and the form-feed character. + Delimiter characters themselves will not be treated as tokens. + + a string to be parsed + + + + Skips delimiters starting from the specified position. If + retDelims is false, returns the index of the first non-delimiter + character at or after startPos. If retDelims is true, startPos + is returned. + + + + + + + Skips ahead from startPos and returns the index of the next + delimiter character encountered, or maxPosition if no such + delimiter is found. + + + + + + + Returns the next token from this string tokenizer. + + the next token from this string tokenizer. + + + + Returns the same value as the hasMoreTokens method. + It exists so that this class can implement the + Enumeration interface. + + + true if there are more tokens; false + otherwise. + + + + Tests if there are more tokens available from this tokenizer's + string. If this method returns true, then a subsequent + call to nextToken with no argument will successfully + return a token. + + + true if and only if there is at least one token in + the string after the current position; false otherwise. + + + + + Calculates the number of times that this tokenizer's + nextToken method can be called before it generates an + exception. The current position is not advanced. + + + the number of tokens remaining in the string using the current + delimiter set. + + + + Returns the same value as the nextToken method, except + that its declared return value is Object rather than + String. It exists so that this class can implement the + Enumeration interface. + + + + + Provides a static method that applies an + XSL stylesheet to an XML document + + + + + Private constructor to prevent instantiation + + + + + Applies the style sheet xslFile to the XML document + identified by xmlFile. + + Path to an XML document + Path to an XSL stylesheet + A Stream representing a sequence of XSL:FO elements + + The files xmlFile and xslFile do not exist or are + inaccessible. The XSL file cannot be compiled + + + This method will create a temporary filename in the system's + temporary directory, which is automatically deleted when the + returned stream is closed. + + + + + + Creates PDF file + + Export file name + + + + Set if child rows should be exported. + + + + + Set table to fit to pdf page width + + + + + Get or set pdf export settings class + + + + + Set how to export summary rows. + + + + + Set how to export hidden column. + + + + + Set how to export hidden rows. + + + + + Sets a value indicating how the export behavies when paging is enabled. + + + The paging export option. + + + + + Gets or sets the child view export mode. + + + The child view export mode. + + + + + Set RadGridView that would be exported. + + + + + Set the file extension. Default value is pdf. + + + + + Set pdf page title. + + + + + Set to export visual settings e.g. background colors, font, alignment, + conditional formatting etc. Default value: false. + + + + + Set pdf table border thickness. Default value is 0 + + + + + Set the table size scaling. Default value is 1. For example, scale of 1.2f means 20% size increase. + + + + + Set the table Font. + + + + + Gets or sets the encoding used for the exported file. Default encoding is UTF8. + + + + + Occurs when a child view will be exported. + + + + + Fires when an html cell object was created and needs to be formatted. + Note that pdf export firstly renders as html and this allows to apply custom format to any cell. + + + + + Convert ContentAlignment to HorizontalAlignmentType + + System.Drawing.ContentAlignment + Telerik.WinControls.UI.Export.HorizontalAligmentType + + + + Convert ContentAignment to VerticalAlignmentType + + System.Drawing.ContentAlignment + Telerik.WinControls.UI.Export.VerticalAlignmentType + + + + Search for real visible fill and mix its colors + + + Mixed collor, ready for export + + + + Converts a color to a hexidecimal value for use within HTML + + The color to convert + A hex value, including '#' + + + + Check if visual style settings comes from theme. + + Element to check + True if visual settings come from theme + + + + Search for base grid's data cell element + + + + + Prepare/Reset the RadGridView for exporting + + + + + Initialize new grid data cell element and change its base settings according to transperancy of its fill + + Base grid cell element + Transformed cell element + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + +
+
diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 6a9684e..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,33 +0,0 @@ -# .NET Desktop -# Build and run tests for .NET Desktop or Windows classic desktop solutions. -# Add steps that publish symbols, save build artifacts, and more: -# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net - -trigger: -- master - -pool: - vmImage: 'windows-latest' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: VSBuild@1 - inputs: - solution: '$(solution)' - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)' - -- task: VSTest@2 - inputs: - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)'