Class JTextArea
public class JTextArea : JTextComponent, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
- Inheritance
-
JTextArea
- Implements
- Inherited Members
- Extension Methods
Constructors
JTextArea()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public JTextArea()
JTextArea(String)
public JTextArea(String arg0)
Parameters
JTextArea(String, int, int)
public JTextArea(String arg0, int arg1, int arg2)
Parameters
JTextArea(Document)
public JTextArea(Document arg0)
Parameters
JTextArea(Document, String, int, int)
public JTextArea(Document arg0, String arg1, int arg2, int arg3)
Parameters
JTextArea(int, int)
public JTextArea(int arg0, int arg1)
Parameters
JTextArea(params object[])
Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class
public JTextArea(params object[] args)
Parameters
args
object[]
Properties
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
Columns
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#getColumns() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#setColumns(int)
public int Columns { get; set; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
LineCount
public int LineCount { get; }
Property Value
LineWrap
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#getLineWrap() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#setLineWrap(boolean)
public bool LineWrap { get; set; }
Property Value
Rows
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#getRows() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#setRows(int)
public int Rows { get; set; }
Property Value
TabSize
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#getTabSize() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#setTabSize(int)
public int TabSize { get; set; }
Property Value
WrapStyleWord
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#getWrapStyleWord() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/JTextArea.html#setWrapStyleWord(boolean)
public bool WrapStyleWord { get; set; }
Property Value
Methods
Append(String)
public void Append(String arg0)
Parameters
GetLineEndOffset(int)
public int GetLineEndOffset(int arg0)
Parameters
Returns
Exceptions
GetLineOfOffset(int)
public int GetLineOfOffset(int arg0)
Parameters
Returns
Exceptions
GetLineStartOffset(int)
public int GetLineStartOffset(int arg0)
Parameters
Returns
Exceptions
Insert(String, int)
public void Insert(String arg0, int arg1)
Parameters
ReplaceRange(String, int, int)
public void ReplaceRange(String arg0, int arg1, int arg2)