Change font of Multiline text

Hi,
I want to change font size and font-family of Multiline Text when export to PDF. How do I have to do?

Hello @JugkritNWR,

You can change the appearance of any element of the form in the PDF file using the CSS. For plain text field that would be:

.k-pdf-export textarea.form-control.fd-textarea, {
    font-size: 20px
}

Please learn more in save SharePoint form as PDF article.

Dear @mnikitina ,

I can change the PDF font size of other type of field but for Sharepoint Multiline of Text I can not.
Please help.

@JugkritNWR,

What type of the field is it? Plain text or Rich text?
image

You can get the element CSS class by right clicking on the element and clicking Inspect Element. This will bring up the CSS selectors for that element:

Dear @mnikitina ,

Below is the type of my field.
image

@JugkritNWR,

Enhanced rich text column type can be exported to PDF only from the Display from.

To change styling of the text on the Display from when exporting to PDF try out this CSS:

.k-pdf-export .fd-sp-field-note {
    font-size: 20px !important;
}