New to Telerik UI for WinFormsStart a free 30-day trial

Arguments class used with the ElementRender event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public sealed class RenderElementEventArgs : EventArgs

Inheritance: objectEventArgsRenderElementEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public RenderElementEventArgs(LightVisualElement cell, RadCalendarDay day, CalendarView currentView)
Parameters:cellLightVisualElementdayRadCalendarDaycurrentViewCalendarView

Properties

Gets a refference to the RadCalendarDay logical object that represents the specified day to render.

C#
public RadCalendarDay Day { get; }

Gets a refference to the LightVisualElement object that represents visually the specified day to render.

C#
public LightVisualElement Element { get; }

Gets a refference to the CalendarView object currently displayed by RadCalendar, that contains the specified day to render.

C#
public CalendarView View { get; }