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

Represents the UI layer container manager.

Definition

Namespace:Telerik.WinForms.Controls.Spreadsheet.Layers

Assembly:Telerik.WinControls.RadSpreadsheet.dll

Syntax:

C#
public class UILayerContainerManager

Inheritance: objectUILayerContainerManager

Constructors

Initializes a new instance of the UILayerContainerManager class.

C#
public UILayerContainerManager(string layerName)
Parameters:layerNamestring

Name of the layer.

Properties

Children

IEnumerable<UIElement>

Gets the children.

C#
public IEnumerable<UIElement> Children { get; }
Property Value:

The children.

Gets or sets the height.

C#
public double Height { get; set; }
Property Value:

The height.

Gets the UI layer container.

C#
public Panel UILayerContainer { get; }
Property Value:

The UI layer container.

Gets or sets the width.

C#
public double Width { get; set; }
Property Value:

The width.

Methods

Adds the specified UI element.

C#
public void Add(UIElement uiElement, ViewportPaneType paneType)
Parameters:uiElementUIElement

The UI element.

paneTypeViewportPaneType

Type of the pane.

Adds the specified UI element.

C#
public void Add(UIElement uiElement)
Parameters:uiElementUIElement

The UI element.

Clears this instance.

C#
public void Clear()

Determines whether [contains] [the specified UI element].

C#
public bool Contains(UIElement uiElement)
Parameters:uiElementUIElement

The UI element.

Returns:

bool

Gets the UI elements for viewport pane.

C#
public IEnumerable<UIElement> GetUIElementsForViewportPane(ViewportPaneType viewportPaneType)
Parameters:viewportPaneTypeViewportPaneType

Type of the viewport pane.

Returns:

IEnumerable<UIElement>

Removes the specified UI element.

C#
public void Remove(UIElement uiElement)
Parameters:uiElementUIElement

The UI element.

Sets the render transform.

C#
public void SetRenderTransform(UIUpdateContext updateContext, RenderTransform transform)
Parameters:updateContextUIUpdateContext

The update context.

transformRenderTransform

The transform.

Updates the specified pane type.

C#
public void Update(UIElement uiElement, ViewportPaneType paneType)
Parameters:uiElementUIElement

The UI element.

paneTypeViewportPaneType

Type of the pane.

Updates the specified element.

C#
public void Update(UIElement element)
Parameters:elementUIElement

The element.