Disable resizing property of textBlock

hi,
i just want to disabled the resizing property of text-block so that user should not be able to resize the size of text-block

i just want to remove this resizing option from text-block

Have you tried a CSS rule?

textarea {
  resize: none;
}

Or perhaps something more specific than for all textareas.