:: com :: sun :: star :: awt :: grid ::

unpublished struct GridColumnEvent
Base Hierarchy
GridColumnEvent
 ┗ ::com::sun::star::lang::EventObject
Usage Restrictions
not published
Description
An event used by a XGridColumnModel to notify changes in the column model to the XGridControl. You usually need to fill this event only if you implement the XGridColumnModel yourself.
See also
XGridColumnModel, XGridControl, XGridColumnListener

Elements' Summary
valueName Contains the property name of the changed value  
oldValue Contains the old value  
newValue Contains the new value  
index Contains the index of the changed column 
column Contains the changed column 
Elements' Details
valueName
string valueName;
Description
Contains the property name of the changed value
oldValue
any oldValue;
Description
Contains the old value
newValue
any newValue;
Description
Contains the new value
index
long index;
Description
Contains the index of the changed column
column
XGridColumn column;
Description
Contains the changed column
Top of Page