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

Definition

Constructors

C#
public DiagramConnectionContentBlockChild()

Properties

Renders the text in bold. Applies when type is "text" or omitted.

C#
[Parameter]
public bool? Bold { get; set; }
C#
[Parameter]
public RenderFragment ChildContent { get; set; }

The CSS color of the text. Inherits from the parent content settings when not set. Applies when type is "text" or omitted.

C#
[Parameter]
public string Color { get; set; }

The font family of the text. Inherits from the parent content settings when not set. Applies when type is "text" or omitted.

C#
[Parameter]
public string FontFamily { get; set; }

The font size of the text in pixels. Inherits from the parent content settings when not set. Applies when type is "text" or omitted.

C#
[Parameter]
public double? FontSize { get; set; }

The height of the inline image in pixels. Defaults to the fontSize value or 16 when not set. Applies when type is "image".

C#
[Parameter]
public double? Height { get; set; }

Renders the text in italic. Applies when type is "text" or omitted.

C#
[Parameter]
public bool? Italic { get; set; }

The URL or data URI of the inline image. Applies when type is "image".

C#
[Parameter]
public string Src { get; set; }

The text content of the inline item. Applies when type is "text" or omitted.

C#
[Parameter]
public string Text { get; set; }

The type of the inline item. Use "text" (or omit) for a text run, "break" for a line break, and "image" for an inline image.

C#
[Parameter]
public DiagramConnectionContentBlocksChildrenType? Type { get; set; }

Renders the text with an underline decoration. Underline thickness scales proportionally to the font size. Applies when type is "text" or omitted.

C#
[Parameter]
public bool? Underline { get; set; }

The width of the inline image in pixels. Defaults to the fontSize value or 16 when not set. Applies when type is "image".

C#
[Parameter]
public double? Width { get; set; }

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
public override void Dispose()

Overrides: DataVizChildComponent.Dispose()

C#
protected override void OnAfterRender(bool firstRender)
Parameters:firstRenderbool

Overrides: ComponentBase.OnAfterRender(bool)

C#
protected override void OnInitialized()

Overrides: DataVizChildComponent.OnInitialized()

C#
protected override void OnParametersSet()

Overrides: ComponentBase.OnParametersSet()