skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • NEW: Design Kits for Figma
    • Online Training
    • Document Processing Library
    • Embedded Reporting for web and desktop

    Web

    Kendo UI UI for jQuery UI for Angular UI for React UI for Vue UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI UI for Xamarin

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Test Studio Dev Edition Telerik JustMock

    CMS

    Sitefinity

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility and Security
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class RowColumnHeadingBase

Provides a base for the row and column heading controls.

Inheritance
System.Object
ControlBase
RowColumnHeadingBase
ColumnHeading
RowHeading
Inherited Members
ControlBase.GetTemplateChild<T>(String)
ControlBase.GetRequiredTemplateChild<T>(String, Boolean)
Namespace: Telerik.Windows.Controls.Spreadsheet.Worksheets.Margins
Assembly: Telerik.Windows.Controls.Spreadsheet.dll

Syntax

public abstract class RowColumnHeadingBase : ControlBase

Constructors

RowColumnHeadingBase()

Initializes a new instance of the RowColumnHeadingBase class.

Declaration
protected RowColumnHeadingBase()

Fields

FillProperty

Fill dependency property.

Declaration
public static readonly DependencyProperty FillProperty
Field Value
System.Windows.DependencyProperty

FullySelectedFillBrushProperty

Fully selected fill brush dependency property.

Declaration
public static readonly DependencyProperty FullySelectedFillBrushProperty
Field Value
System.Windows.DependencyProperty

HeadingStateProperty

Heading state dependency property.

Declaration
public static readonly DependencyPropertyKey HeadingStateProperty
Field Value
System.Windows.DependencyPropertyKey

HoverFillBrushProperty

Hover fill brush dependency property.

Declaration
public static readonly DependencyProperty HoverFillBrushProperty
Field Value
System.Windows.DependencyProperty

NormalFillBrushProperty

Normal fill brush dependency property.

Declaration
public static readonly DependencyProperty NormalFillBrushProperty
Field Value
System.Windows.DependencyProperty

RectangleStrokeBrushProperty

Rectangle stroke brush dependency property.

Declaration
public static readonly DependencyProperty RectangleStrokeBrushProperty
Field Value
System.Windows.DependencyProperty

RectangleStrokeThicknessProperty

Rectangle stroke thickness dependency property.

Declaration
public static readonly DependencyProperty RectangleStrokeThicknessProperty
Field Value
System.Windows.DependencyProperty

SelectedFillBrushProperty

Selected fill brush dependency property.

Declaration
public static readonly DependencyProperty SelectedFillBrushProperty
Field Value
System.Windows.DependencyProperty

TextProperty

Text dependency property.

Declaration
public static readonly DependencyProperty TextProperty
Field Value
System.Windows.DependencyProperty

ThumbLength

The thumb length.

Declaration
protected static readonly double ThumbLength
Field Value
System.Double

Properties

CurrentHeadingSize

Gets or sets the size of the current heading.

Declaration
public double CurrentHeadingSize { get; set; }
Property Value
System.Double

The size of the current heading.

Fill

Gets or sets the fill.

Declaration
public Brush Fill { get; set; }
Property Value
System.Windows.Media.Brush

The fill brush.

FirstResizeThumb

Gets the first resize thumb.

Declaration
protected ResizeThumb FirstResizeThumb { get; }
Property Value
ResizeThumb

The first resize thumb.

FullySelectedFillBrush

Gets or sets the fully selected fill brush.

Declaration
public Brush FullySelectedFillBrush { get; set; }
Property Value
System.Windows.Media.Brush

The fully selected fill brush.

HeadingState

Gets or sets the state of the heading.

Declaration
public RowColumnHeadingState HeadingState { get; }
Property Value
RowColumnHeadingState

The state of the heading.

HoverFillBrush

Gets or sets the hover fill brush.

Declaration
public Brush HoverFillBrush { get; set; }
Property Value
System.Windows.Media.Brush

The hover fill brush.

Index

Gets or sets the index.

Declaration
public int Index { get; set; }
Property Value
System.Int32

The index.

MaxHeadingSize

Gets or sets the the max size of heading.

Declaration
public double MaxHeadingSize { get; set; }
Property Value
System.Double

The the max size of heading.

NormalFillBrush

Gets or sets the normal fill brush.

Declaration
public Brush NormalFillBrush { get; set; }
Property Value
System.Windows.Media.Brush

The normal fill brush.

PreviousHeadingSize

Gets or sets the size of the previous heading.

Declaration
public double PreviousHeadingSize { get; set; }
Property Value
System.Double

The size of the previous heading.

RectangleStrokeBrush

Gets or sets the rectangle stroke brush.

Declaration
public Brush RectangleStrokeBrush { get; set; }
Property Value
System.Windows.Media.Brush

The rectangle stroke brush.

RectangleStrokeThickness

Gets or sets the rectangle stroke thickness.

Declaration
public double RectangleStrokeThickness { get; set; }
Property Value
System.Double

The rectangle stroke thickness.

SecondResizeThumb

Gets the second resize thumb.

Declaration
protected ResizeThumb SecondResizeThumb { get; }
Property Value
ResizeThumb

The second resize thumb.

SelectedFillBrush

Gets or sets the selected fill brush.

Declaration
public Brush SelectedFillBrush { get; set; }
Property Value
System.Windows.Media.Brush

The selected fill brush.

Text

Gets or sets the text.

Declaration
public string Text { get; set; }
Property Value
System.String

The text value.

Methods

ApplyThumbsProperties()

Applies the thumbs properties.

Declaration
protected abstract void ApplyThumbsProperties()

GetNewSize(Point)

Gets the new size.

Declaration
protected abstract double GetNewSize(Point point)
Parameters
System.Windows.Point point

The point.

Returns
System.Double

The new size.

IsPointInsideThumb(MouseEventArgs)

Determines whether the pointer is inside thumb.

Declaration
protected abstract bool IsPointInsideThumb(MouseEventArgs e)
Parameters
System.Windows.Input.MouseEventArgs e

The System.Windows.Input.MouseEventArgs instance containing the event data.

Returns
System.Boolean

True if the pointer is inside thumb.

OnApplyTemplate()

When overridden in a derived class, is invoked whenever application code or internal processes call System.Windows.FrameworkElement.ApplyTemplate.

Declaration
public override void OnApplyTemplate()

OnResizeCompleted(RowColumnHeadingResizeEventArgs)

Raises the ResizeCompleted event.

Declaration
protected virtual void OnResizeCompleted(RowColumnHeadingResizeEventArgs e)
Parameters
RowColumnHeadingResizeEventArgs e

The RowColumnHeadingResizeEventArgs instance containing the event data.

OnResizeDelta(RowColumnHeadingResizeEventArgs)

Raises the ResizeDelta event.

Declaration
protected virtual void OnResizeDelta(RowColumnHeadingResizeEventArgs e)
Parameters
RowColumnHeadingResizeEventArgs e

The RowColumnHeadingResizeEventArgs instance containing the event data.

OnResizeStarted(RowColumnHeadingResizeEventArgs)

Raises the ResizeStarted event.

Declaration
protected virtual void OnResizeStarted(RowColumnHeadingResizeEventArgs e)
Parameters
RowColumnHeadingResizeEventArgs e

The RowColumnHeadingResizeEventArgs instance containing the event data.

Events

ResizeCompleted

Occurs when the resize is completed.

Declaration
public event EventHandler<RowColumnHeadingResizeEventArgs> ResizeCompleted
Event Type
System.EventHandler<RowColumnHeadingResizeEventArgs>

ResizeDelta

Occurs when the resize delta is changed.

Declaration
public event EventHandler<RowColumnHeadingResizeEventArgs> ResizeDelta
Event Type
System.EventHandler<RowColumnHeadingResizeEventArgs>

ResizeStarted

Occurs when the resize is started.

Declaration
public event EventHandler<RowColumnHeadingResizeEventArgs> ResizeStarted
Event Type
System.EventHandler<RowColumnHeadingResizeEventArgs>

Extension Methods

CollectionExtensions.ToEnumerable<T>(T)
EnumerableExtensions.ToEnumerable<T>(T)
Getting Started
  • Install Now
  • Demos
  • SDK Samples Browser
  • Sample Applications
Support Resources
  • Code Library
  • Knowledge Base
  • MVVM Support
  • Videos
  • GitHub SDK Repository
Community
  • Forums
  • Blogs
  • XAML Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.