In This Article

MarkupLabelTextUIElement Class

Provides a MarkupLabelUIElement for text.

public class MarkupLabelTextUIElement : MarkupLabelUIElement, IInputElement, IUIElement, ILogicalTreeNode, IDpiAwareElement, IDisposable
Inheritance:
object MarshalByRefObject DisposableObject LogicalTreeNodeBase UIElement MarkupLabelUIElement object
Derived:
MarkupLabelWhitespaceUIElement
Implements:
IInputElement IUIElement ILogicalTreeNode IDpiAwareElement IDisposable

Constructors

MarkupLabelTextUIElement(MarkupLabelElement, string)

Initializes a new instance of the MarkupLabelTextUIElement class.

public MarkupLabelTextUIElement(MarkupLabelElement element, string text)
Parameter Type Description
element MarkupLabelElement

The MarkupLabelElement that owns this element.

text string

The text of the element.

Properties

ClipBounds

Gets a Rectangle specifying the clip bounds when drawing the element.

public override Rectangle ClipBounds { get; }

Property Value

Rectangle:

A Rectangle specifying the clip bounds when drawing the element.

Descent

Gets the descent from the baseline that the element has.

public override int Descent { get; }

Property Value

int:

The descent from the baseline that the element has.

Text

Gets the text of the element.

public string Text { get; }

Property Value

string:

The text of the element.

Methods

MeasureOverride(Graphics, Size)

Measures the size in layout required for child elements and determines a size for the element itself.

protected override Size MeasureOverride(Graphics g, Size availableSize)
Parameter Type Description
g Graphics

The Graphics object to use for measurement.

availableSize Size

The available size that this element can give to child elements. Infinity can be specified as a value to indicate that the element will size to whatever content is available.

Returns

Size:

The size that this element determines it needs during layout, based on its calculations of child element sizes.

OnRender(PaintEventArgs)

Renders the element.

protected override void OnRender(PaintEventArgs e)
Parameter Type Description
e PaintEventArgs

A PaintEventArgs that contains the event data.

Inherited Members

Extension Methods