Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MemoResizeMode Enum

Lists values that define how users can resize the Memo component.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public enum MemoResizeMode

#Members

Name Description
Disabled

Users are not allowed to resize the component.

Vertical

Users can only change the component height.

Horizontal

Users can only change the component’s width.

VerticalAndHorizontal

Users can change both the component height and width.

#Related API Members

The following properties accept/return MemoResizeMode values:

#Remarks

Razor
<DxMemo @bind-Text="@TextValue"
        ResizeMode="MemoResizeMode.VerticalAndHorizontal">
</DxMemo>

@code {
    string TextValue { get; set; } = "Prepare 2020 Marketing Plan: We need to double revenues in 2020 and our marketing strategy is going to be key here. " +
                "R&D is improving existing products and creating new products so we can deliver great AV equipment to our customers. " +
                "Robert, please make certain to create a PowerPoint presentation for the members of the executive team.";

Memo - Resize Modes

Run Demo: Memo - Resize Modes

See Also