Open In App

How to create a textarea component in MATLAB

Improve
Improve
Like Article
Like
Save
Share
Report

Matlab offers tools for developing GUI applications. It provides functions that can create TextFields, Labels, Buttons, and many more, along with properties to manipulate the components. In this article, we will learn to create a TextArea Component using Matlab.

Creating a textarea component

A Text Area component is a UI component that allows us to input multiple lines of text. To create a text area object, we use the Matlab function uitextarea(), which accepts two optional parameters, the parent window in which this component resides and its values.

uitextarea(parent, Name:Value);

The parent is a figure or window that will hold all the components of our GUI. The Name-Value pair is the value that the text area will be initialized with.

Properties of textarea component

Properties of UI components are used to access and mutate their content as well as their appearances. Use dot notation to refer to a specific property.

A few of the important properties of the text area component are as follows:

  • Value: We can use the Value property of a text area to access or set its content.
  • Placeholder: The text that will be shown in the text area when it’s empty. Default is an empty string.
  • Horizontal Alignment: Specifies the alignment of the text within the text area. possible options are left, right or centre. Default is ‘left’.
  • WordWrap: Wraps the content to match the container’s width. Default is ‘on’.
  • FontName: Used to set the font name for the content of the text area.
  • FontSize: Used to set the font size of the text.
  • FontWeight: this property is used to set the boldness level of the text in the text area.
  • FontAngle: Use to change the angle of the font.
  • FontColor: Used to change the font colour.
  • BackgroundColor: This property helps to set the background colour of the text.
  • Enable: Using this property a text area can be disabled or enabled for use.
  • Position: accepts a list of 4 values, the first 2 are locations and the last two are the size of the text area.
  • Visible: Visibility of the text area is controlled by this property. Default is ‘on’.

There are three syntaxes of uitextarea:

  • textareaObject = uitextarea;
  • textareaObject = uitextarea(parent);
  • textareaObject = uitextarea(parent, Name, Value);

Now we see the first syntax without any parameters. It creates the text area component and the Matlab creates a figure window to hold the component.

Example 1: 

Matlab




% MATLAB code for
% creating a textarea
textareaObject = uitextarea;


Output:

uitextarea also accepts an optional parent container or window. If you have defined a window and want to add a text area to it, then textareaObject = uitextarea(parent) used.

Example 2: 

Matlab




% MATLAB code for create a textarea
% and pass the figure as parent
% create a figure
fig = uifigure;
textareaObject = uitextarea(fig);


Output:

We also have the option to set the properties while instantiating a text area.

Example 3: 

Matlab




% create a figure window
fig = uifigure;
 
% create a text area with figure as parent
txa = uitextarea(fig, 'Value', {'Mango';'Apple';'Litchi'});
 
% set the position and size of the text area
txa.Position = [100,100,150,150];


Output:

 

Using uifigure, we created a figure window which will be our parent window. It will hold other components. The uitextarea() is used to create a text area component, and we pass the parent window as its parameter and a key-value pair to set its property Value, which determines the text area’s content. The Position property accepts a 4 value list, the first 2 values are the component’s position in the parent window, and the last two are the size of the components (width and height).

Example 4:

Matlab




% MATLAB code for text area with Scrollbar 
fig = uifigure;
textareaObject = uitextarea(fig);
 
% setting the position of the
% text area within the window.
textareaObject.Position = [100 100 80 80];
textareaObject.Value = 'Apple Mango Banana Litchi guava Pineapple Watermelon Orange grapes Pomegranate';


Output before scroll:

Now, we can use the scroll function with the component and the location where to scroll like ‘bottom’. as parameter.

Syntax: 

scroll(textareaObject, ‘bottom’);

Output after scroll:



Last Updated : 28 Mar, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads