Package system.windows.forms
Class DataGridViewCell
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.windows.forms.DataGridViewElement
-
- system.windows.forms.DataGridViewCell
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
- Direct Known Subclasses:
DataGridViewButtonCell
,DataGridViewCheckBoxCell
,DataGridViewComboBoxCell
,DataGridViewHeaderCell
,DataGridViewImageCell
,DataGridViewLinkCell
,DataGridViewTextBoxCell
public class DataGridViewCell extends DataGridViewElement implements java.lang.AutoCloseable
The base .NET class managing System.Windows.Forms.DataGridViewCell, System.Windows.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.Forms.DataGridViewCell
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Windows.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: System.Windows.Formsstatic java.lang.String
className
Qualified class name: System.Windows.Forms.DataGridViewCellstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description DataGridViewCell()
DataGridViewCell(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DataGridViewAdvancedBorderStyle
AdjustCellBorderStyle(DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, boolean singleVerticalBorderAdded, boolean singleHorizontalBorderAdded, boolean isFirstDisplayedColumn, boolean isFirstDisplayedRow)
static DataGridViewCell
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoDataGridViewCell
, a cast assert is made to check if types are compatible.NetObject
Clone()
void
close()
void
DetachEditingControl()
void
Dispose()
AccessibleObject
getAccessibilityObject()
int
getColumnIndex()
Rectangle
getContentBounds()
Rectangle
GetContentBounds(int rowIndex)
ContextMenuStrip
getContextMenuStrip()
NetObject
getDefaultNewRowValue()
boolean
getDisplayed()
NetObject
getEditedFormattedValue()
NetObject
GetEditedFormattedValue(int rowIndex, DataGridViewDataErrorContexts context)
NetType
getEditType()
Rectangle
getErrorIconBounds()
java.lang.String
getErrorText()
NetObject
getFormattedValue()
NetType
getFormattedValueType()
boolean
getFrozen()
boolean
getHasStyle()
ContextMenuStrip
GetInheritedContextMenuStrip(int rowIndex)
DataGridViewElementStates
getInheritedState()
DataGridViewElementStates
GetInheritedState(int rowIndex)
DataGridViewCellStyle
getInheritedStyle()
DataGridViewCellStyle
GetInheritedStyle(DataGridViewCellStyle inheritedCellStyle, int rowIndex, boolean includeColors)
boolean
getIsInEditMode()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeDataGridViewColumn
getOwningColumn()
DataGridViewRow
getOwningRow()
Size
getPreferredSize()
boolean
getReadOnly()
boolean
getResizable()
int
getRowIndex()
boolean
getSelected()
Size
getSize()
DataGridViewCellStyle
getStyle()
NetObject
getTag()
java.lang.String
getToolTipText()
NetObject
getValue()
NetType
getValueType()
boolean
getVisible()
void
InitializeEditingControl(int rowIndex, NetObject initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle)
boolean
KeyEntersEditMode(KeyEventArgs e)
static int
MeasureTextHeight(Graphics graphics, java.lang.String text, Font font, int maxWidth, TextFormatFlags flags)
static int
MeasureTextHeight(Graphics graphics, java.lang.String text, Font font, int maxWidth, TextFormatFlags flags, JCORefOut<java.util.concurrent.atomic.AtomicBoolean> widthTruncated)
static Size
MeasureTextPreferredSize(Graphics graphics, java.lang.String text, Font font, Single maxRatio, TextFormatFlags flags)
static Size
MeasureTextSize(Graphics graphics, java.lang.String text, Font font, TextFormatFlags flags)
static int
MeasureTextWidth(Graphics graphics, java.lang.String text, Font font, int maxHeight, TextFormatFlags flags)
NetObject
ParseFormattedValue(NetObject formattedValue, DataGridViewCellStyle cellStyle, TypeConverter formattedValueTypeConverter, TypeConverter valueTypeConverter)
void
PositionEditingControl(boolean setLocation, boolean setSize, Rectangle cellBounds, Rectangle cellClip, DataGridViewCellStyle cellStyle, boolean singleVerticalBorderAdded, boolean singleHorizontalBorderAdded, boolean isFirstDisplayedColumn, boolean isFirstDisplayedRow)
Rectangle
PositionEditingPanel(Rectangle cellBounds, Rectangle cellClip, DataGridViewCellStyle cellStyle, boolean singleVerticalBorderAdded, boolean singleHorizontalBorderAdded, boolean isFirstDisplayedColumn, boolean isFirstDisplayedRow)
void
setContextMenuStrip(ContextMenuStrip ContextMenuStrip)
void
setErrorText(java.lang.String ErrorText)
void
setJCOInstance(JCObject instance)
void
setOwningColumn(DataGridViewColumn OwningColumn)
void
setOwningRow(DataGridViewRow OwningRow)
void
setReadOnly(boolean ReadOnly)
void
setSelected(boolean Selected)
void
setStyle(DataGridViewCellStyle Style)
void
setTag(NetObject Tag)
void
setToolTipText(java.lang.String ToolTipText)
void
setValue(NetObject Value)
void
setValueType(NetType ValueType)
-
Methods inherited from class system.windows.forms.DataGridViewElement
getDataGridView, getState, setDataGridView, setState
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Windows.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Windows.Forms- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Windows.Forms.DataGridViewCell- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classDataGridViewElement
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classDataGridViewElement
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classDataGridViewElement
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classDataGridViewElement
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classDataGridViewElement
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classDataGridViewElement
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static DataGridViewCell cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoDataGridViewCell
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
DataGridViewCell
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
KeyEntersEditMode
public boolean KeyEntersEditMode(KeyEventArgs e) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
MeasureTextHeight
public static int MeasureTextHeight(Graphics graphics, java.lang.String text, Font font, int maxWidth, TextFormatFlags flags, JCORefOut<java.util.concurrent.atomic.AtomicBoolean> widthTruncated) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException, CultureNotFoundException, IndexOutOfRangeException, FormatException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
OutOfMemoryException
CultureNotFoundException
IndexOutOfRangeException
FormatException
InvalidEnumArgumentException
-
MeasureTextHeight
public static int MeasureTextHeight(Graphics graphics, java.lang.String text, Font font, int maxWidth, TextFormatFlags flags) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, InvalidEnumArgumentException
-
MeasureTextWidth
public static int MeasureTextWidth(Graphics graphics, java.lang.String text, Font font, int maxHeight, TextFormatFlags flags) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, NotSupportedException, FormatException, InvalidEnumArgumentException
-
GetContentBounds
public Rectangle GetContentBounds(int rowIndex) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, KeyNotFoundException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
KeyNotFoundException
NotSupportedException
-
PositionEditingPanel
public Rectangle PositionEditingPanel(Rectangle cellBounds, Rectangle cellClip, DataGridViewCellStyle cellStyle, boolean singleVerticalBorderAdded, boolean singleHorizontalBorderAdded, boolean isFirstDisplayedColumn, boolean isFirstDisplayedRow) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidEnumArgumentException, Win32Exception
-
MeasureTextPreferredSize
public static Size MeasureTextPreferredSize(Graphics graphics, java.lang.String text, Font font, Single maxRatio, TextFormatFlags flags) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException, CultureNotFoundException, FormatException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
OutOfMemoryException
CultureNotFoundException
FormatException
InvalidEnumArgumentException
-
MeasureTextSize
public static Size MeasureTextSize(Graphics graphics, java.lang.String text, Font font, TextFormatFlags flags) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
InvalidEnumArgumentException
-
Clone
public NetObject Clone() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, MethodAccessException, MissingMethodException, MemberAccessException, TargetInvocationException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, CultureNotFoundException, Win32Exception, MulticastNotSupportedException, InvalidOperationException, ThreadStateException, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
NotSupportedException
MethodAccessException
MissingMethodException
MemberAccessException
TargetInvocationException
RankException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
CultureNotFoundException
Win32Exception
MulticastNotSupportedException
InvalidOperationException
ThreadStateException
KeyNotFoundException
-
GetEditedFormattedValue
public NetObject GetEditedFormattedValue(int rowIndex, DataGridViewDataErrorContexts context) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, KeyNotFoundException, NotSupportedException, FormatException, Win32Exception, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
KeyNotFoundException
NotSupportedException
FormatException
Win32Exception
InvalidCastException
-
ParseFormattedValue
public NetObject ParseFormattedValue(NetObject formattedValue, DataGridViewCellStyle cellStyle, TypeConverter formattedValueTypeConverter, TypeConverter valueTypeConverter) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, FormatException, PlatformNotSupportedException, IndexOutOfRangeException, CultureNotFoundException, InvalidCastException
-
GetInheritedContextMenuStrip
public ContextMenuStrip GetInheritedContextMenuStrip(int rowIndex) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
AdjustCellBorderStyle
public DataGridViewAdvancedBorderStyle AdjustCellBorderStyle(DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, boolean singleVerticalBorderAdded, boolean singleHorizontalBorderAdded, boolean isFirstDisplayedColumn, boolean isFirstDisplayedRow) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, InvalidEnumArgumentException
-
GetInheritedStyle
public DataGridViewCellStyle GetInheritedStyle(DataGridViewCellStyle inheritedCellStyle, int rowIndex, boolean includeColors) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException
-
GetInheritedState
public DataGridViewElementStates GetInheritedState(int rowIndex) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
DetachEditingControl
public void DetachEditingControl() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, Win32Exception
-
Dispose
public void Dispose() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArrayTypeMismatchException, MulticastNotSupportedException
-
InitializeEditingControl
public void InitializeEditingControl(int rowIndex, NetObject initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, Win32Exception
-
PositionEditingControl
public void PositionEditingControl(boolean setLocation, boolean setSize, Rectangle cellBounds, Rectangle cellClip, DataGridViewCellStyle cellStyle, boolean singleVerticalBorderAdded, boolean singleHorizontalBorderAdded, boolean isFirstDisplayedColumn, boolean isFirstDisplayedRow) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, InvalidEnumArgumentException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
InvalidEnumArgumentException
Win32Exception
-
close
public void close() throws java.lang.Exception
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.lang.Exception
-
getDisplayed
public boolean getDisplayed() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getFrozen
public boolean getFrozen() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getHasStyle
public boolean getHasStyle() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsInEditMode
public boolean getIsInEditMode() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getReadOnly
public boolean getReadOnly() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setReadOnly
public void setReadOnly(boolean ReadOnly) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidEnumArgumentException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, KeyNotFoundException, FormatException, OverflowException, Win32Exception, NotSupportedException, TypeLoadException, InvalidCastException, MulticastNotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
InvalidEnumArgumentException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
KeyNotFoundException
FormatException
OverflowException
Win32Exception
NotSupportedException
TypeLoadException
InvalidCastException
MulticastNotSupportedException
-
getResizable
public boolean getResizable() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getSelected
public boolean getSelected() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSelected
public void setSelected(boolean Selected) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, FormatException, InvalidCastException, Win32Exception, NotSupportedException, OverflowException
-
getVisible
public boolean getVisible() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getColumnIndex
public int getColumnIndex() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getRowIndex
public int getRowIndex() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getContentBounds
public Rectangle getContentBounds() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
InvalidOperationException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
NotSupportedException
-
getErrorIconBounds
public Rectangle getErrorIconBounds() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
InvalidOperationException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
NotSupportedException
-
getPreferredSize
public Size getPreferredSize() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
InvalidOperationException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
NotSupportedException
-
getSize
public Size getSize() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getDefaultNewRowValue
public NetObject getDefaultNewRowValue() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getEditedFormattedValue
public NetObject getEditedFormattedValue() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, KeyNotFoundException, NotSupportedException, FormatException, Win32Exception, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
KeyNotFoundException
NotSupportedException
FormatException
Win32Exception
InvalidCastException
-
getFormattedValue
public NetObject getFormattedValue() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, KeyNotFoundException, NotSupportedException, FormatException, Win32Exception, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
KeyNotFoundException
NotSupportedException
FormatException
Win32Exception
InvalidCastException
-
getTag
public NetObject getTag() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setTag
public void setTag(NetObject Tag) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArrayTypeMismatchException
-
getValue
public NetObject getValue() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, FormatException, InvalidEnumArgumentException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
CultureNotFoundException
FormatException
InvalidEnumArgumentException
Win32Exception
-
setValue
public void setValue(NetObject Value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, Win32Exception, TypeLoadException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
FormatException
Win32Exception
TypeLoadException
InvalidEnumArgumentException
-
getErrorText
public java.lang.String getErrorText() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, CultureNotFoundException, NotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, InvalidEnumArgumentException, Win32Exception, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ObjectDisposedException
InvalidOperationException
CultureNotFoundException
NotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
InvalidEnumArgumentException
Win32Exception
RankException
ArrayTypeMismatchException
-
setErrorText
public void setErrorText(java.lang.String ErrorText) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArrayTypeMismatchException
-
getToolTipText
public java.lang.String getToolTipText() throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, IndexOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, RankException, ArgumentException, ArrayTypeMismatchException, Win32Exception, NotSupportedException, OutOfMemoryException
-
setToolTipText
public void setToolTipText(java.lang.String ToolTipText) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArrayTypeMismatchException
-
getEditType
public NetType getEditType() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getFormattedValueType
public NetType getFormattedValueType() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getValueType
public NetType getValueType() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setValueType
public void setValueType(NetType ValueType) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArrayTypeMismatchException
-
getAccessibilityObject
public AccessibleObject getAccessibilityObject() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArrayTypeMismatchException
-
getContextMenuStrip
public ContextMenuStrip getContextMenuStrip() throws java.lang.Throwable, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
-
setContextMenuStrip
public void setContextMenuStrip(ContextMenuStrip ContextMenuStrip) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, MulticastNotSupportedException
-
getInheritedStyle
public DataGridViewCellStyle getInheritedStyle() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidEnumArgumentException, ExternalException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
InvalidOperationException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidEnumArgumentException
ExternalException
NotSupportedException
-
getStyle
public DataGridViewCellStyle getStyle() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArrayTypeMismatchException
-
setStyle
public void setStyle(DataGridViewCellStyle Style) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, RankException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArrayTypeMismatchException, InvalidOperationException, InvalidEnumArgumentException
-
getOwningColumn
public DataGridViewColumn getOwningColumn() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setOwningColumn
public void setOwningColumn(DataGridViewColumn OwningColumn) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getInheritedState
public DataGridViewElementStates getInheritedState() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getOwningRow
public DataGridViewRow getOwningRow() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setOwningRow
public void setOwningRow(DataGridViewRow OwningRow) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-