Node-Inspector plugins - How do I create a section, how do I make a TextEdit bigger(already checked the documentation)

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By parser_101

Hello everyone!
I’ve read the documentation 4-5 times already, but it is awful when it comes to plugins.
I have the following questions:

  1. How do I create a section for my custom node like in this picture?
    https://ibb.co/YTLCSZh
    As you can see, other nodes (such as Node2D) have their own “sections”. I want my custom node to have it’s own section but it has only the “Node” section (since it inherits from it)

  2. Why my TextEdit instance is so small? I instantiated it with the following code:

func parse_begin(object):
	var text_edit = TextEdit.new()
	add_custom_control(text_edit)
	text_edit.text = "test"

What I have: https://ibb.co/SXDJr7c

What I need: https://ibb.co/Yh09BR0

:bust_in_silhouette: Reply From: parser_101

up, can someone help me? Too many questions at once perhaps?