I have a question, before to recover or save text in a textview the methods getText and setText were used, now, yesterday I started working with a textview and the getText method did not appear in the list of recommended methods when I put
objectoTextView.
but I have seen that there is a property of the texview called "text", that passing a value does of setText, also it also makes getText when I call it without passing it a value ....
objectoTextView.text="Hola mundo"
var variable=objectoTextView.Text
My question is, are the textText getText and setText methods obsolete and replaced by "text"?