java.lang.Object
java.awt.Component
java.awt.TextComponent
java.awt.TextArea
- All Implemented Interfaces:
- ImageObserver, MenuContainer, Serializable, Accessible
- See Also:
- Top Examples, Source Code
public void addNotify()
- See Also:
TextComponent.removeNotify()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void append(String str)
- See Also:
insert(java.lang.String, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[896]Textarea scrollbar
By lone_lone33 { at } yahoo { dot } com { dot } sg on 2004/09/14 07:43:58 Rate
if the the whole text can't show in windows, text-area with scrollbar will be appeared to see the whole text.
@Deprecated
public void appendText(String str)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public AccessibleContext getAccessibleContext()
- See Also:
- TextComponent, Accessible
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int getColumns()
- See Also:
getRows()
, setColumns(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Dimension getMinimumSize()
- See Also:
Component.getPreferredSize()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Dimension getMinimumSize(int rows,
int columns)
- See Also:
Component.getMinimumSize()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Dimension getPreferredSize()
- See Also:
- Component
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Dimension getPreferredSize(int rows,
int columns)
- See Also:
Component.getPreferredSize()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int getRows()
- See Also:
getColumns()
, setRows(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int getScrollbarVisibility()
- See Also:
TextArea(java.lang.String, int, int, int)
, SCROLLBARS_NONE
, SCROLLBARS_HORIZONTAL_ONLY
, SCROLLBARS_VERTICAL_ONLY
, SCROLLBARS_BOTH
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void insert(String str,
int pos)
- See Also:
append(java.lang.String)
, replaceRange(java.lang.String, int, int)
, TextComponent.setText(java.lang.String)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public void insertText(String str,
int pos)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public Dimension minimumSize()
- See Also:
- Component
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public Dimension minimumSize(int rows,
int columns)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected String paramString()
- See Also:
- TextComponent
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public Dimension preferredSize()
- See Also:
- Component
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public Dimension preferredSize(int rows,
int columns)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void replaceRange(String str,
int start,
int end)
- See Also:
insert(java.lang.String, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public void replaceText(String str,
int start,
int end)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int SCROLLBARS_BOTH
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[826]_
By gred24 { at } hotmail { dot } com on 2004/07/03 06:52:30 Rate
infor = new JTextArea ( "",10,25,SCROLLBARS_BOTH ) ;
public static final int SCROLLBARS_HORIZONTAL_ONLY
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int SCROLLBARS_NONE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[1978]blaat
By Anonymous on 2008/08/31 04:49:19 Rate
public static final int SCROLLBARS_NONE
public static final int SCROLLBARS_VERTICAL_ONLY
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setColumns(int columns)
- See Also:
setRows(int)
, getColumns()
, IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setRows(int rows)
- See Also:
setColumns(int)
, getRows()
, IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public TextArea()
throws HeadlessException
- See Also:
GraphicsEnvironment.isHeadless()
, SCROLLBARS_BOTH
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public TextArea(int rows,
int columns)
throws HeadlessException
- See Also:
GraphicsEnvironment.isHeadless()
, SCROLLBARS_BOTH
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public TextArea(String text)
throws HeadlessException
- See Also:
GraphicsEnvironment.isHeadless()
, SCROLLBARS_BOTH
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public TextArea(String text,
int rows,
int columns)
throws HeadlessException
- See Also:
GraphicsEnvironment.isHeadless()
, SCROLLBARS_BOTH
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public TextArea(String text,
int rows,
int columns,
int scrollbars)
throws HeadlessException
- See Also:
GraphicsEnvironment.isHeadless()
, SCROLLBARS_BOTH
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples