Interface
IRadGanttView

Represents the SL/Wpf RadGanttView control wrapper for SL/Wpf interface.

Definition

Namespace:Telerik.WebAii.Controls.Xaml

Assembly:Telerik.WebAii.Controls.Xaml.dll

Syntax:

cs-api-definition
public interface IRadGanttView : IControl, IFrameworkElement, ITargetElement

Derived Classes: RadGanttViewRadGanttView

Inherited Members IControl.IsEnabledIFrameworkElement.CastAs<T>()IFrameworkElement.Parent<T>()IFrameworkElement.SetProxy(bool)IFrameworkElement.SetUid(string)IFrameworkElement.SetFindInfo(VisualFindInfo)IFrameworkElement.SetXamlTag(string)IFrameworkElement.AssignReference(AutomationReference)IFrameworkElement.SetFocus()IFrameworkElement.GetAutomationProperty(string)IFrameworkElement.GetProperty<T>(string)IFrameworkElement.GetPropertyTypeSafe(string)IFrameworkElement.SetProperty(string, object)IFrameworkElement.ScrollToVisible()IFrameworkElement.UserIFrameworkElement.FindIFrameworkElement.WaitIFrameworkElement.NameIFrameworkElement.AbsoluteSiblingTagIndexIFrameworkElement.ActualWidthIFrameworkElement.ActualHeightIFrameworkElement.TextIFrameworkElement.ToolTipTextIFrameworkElement.TextBlockContentIFrameworkElement.TextLiteralContentIFrameworkElement.ComputedVisibilityIFrameworkElement.UidITargetElement.Match(IFindExpression)ITargetElement.SetDepth(int)ITargetElement.AddChildNode(ITargetElement)ITargetElement.SetClosingTag(ITargetElement)ITargetElement.GetChildren()ITargetElement.GetParent()ITargetElement.GetHostParent()ITargetElement.SetParent(ITargetElement)ITargetElement.Refresh()ITargetElement.GetUniqueHashCode()ITargetElement.GetRectangle()ITargetElement.Capture()ITargetElement.CaptureImage()ITargetElement.GetStringPresentation()ITargetElement.TechnologyTypeITargetElement.DepthITargetElement.IsTestRegionITargetElement.ParsedElementITargetElement.Host

Properties

FrozenColumns

Gets the collection of the GantView Frozen Columns.

Declaration

cs-api-definition
IList<FrameworkElement> FrozenColumns { get; }

Property Value

IList<FrameworkElement>

Rows

Get the list of RadGanttView Rows.

Declaration

cs-api-definition
List<GanttRow> Rows { get; }

Property Value

List<GanttRow>

ShouldRefreshRows

Indicates whether the GanttRows should be updated the next time Rows property is called.

Declaration

cs-api-definition
bool ShouldRefreshRows { get; set; }

Property Value

bool

SimpleColumns

Gets the collection of the GantView Simple Columns.

Declaration

cs-api-definition
IList<FrameworkElement> SimpleColumns { get; }

Property Value

IList<FrameworkElement>

Methods

AreOnTheSameRow(FrameworkElement, FrameworkElement)

Check if two elements are in the same row.

Declaration

cs-api-definition
bool AreOnTheSameRow(FrameworkElement firstElement, FrameworkElement secondElement)

Parameters

firstElement

FrameworkElement

secondElement

FrameworkElement

Returns

bool

IsCellSelected(int, int)

Check if a cell with spesific cordinates is selected

Declaration

cs-api-definition
bool IsCellSelected(int row, int col)

Parameters

row

int

The index of the row in which the cell is located.

col

int

The index of the column in which the cell is located.

Returns

bool

IsRowSelected(int)

Check if a row with spesific index is selected ///

Declaration

cs-api-definition
bool IsRowSelected(int index)

Parameters

index

int

The index of the row that should be checked.

Returns

bool

SelectCell(int, int)

Selects a spesific cell of the GanttView by cordinates

Declaration

cs-api-definition
void SelectCell(int row, int col)

Parameters

row

int

The index of the row in which the cell is located.

col

int

The index of the column in which the cell is located.

SelectRow(int)

Selects a spesific row of the GanttView by index

Declaration

cs-api-definition
bool SelectRow(int index)

Parameters

index

int

The index of the row that shoudl be selected.

Returns

bool