Difference between revisions of "Section"

From Lianjapedia
Jump to: navigation, search
Line 1: Line 1:
 +
Note: property, method and event names should be referred to in lowercase in case-sensitive scripting languages.
 +
 
====Properties====
 
====Properties====
  
Line 8: Line 10:
 
!Value
 
!Value
 
!width="50%"|Description
 
!width="50%"|Description
 +
|-
 +
|ActiveControl
 +
|RW
 +
|Object
 +
|Currently active Control
 +
|-
 +
|BackColor
 +
|RW
 +
|Character
 +
|Section's background color
 
|-
 
|-
 
|Caption
 
|Caption
 
|RW
 
|RW
|
+
|Character
|
+
|Text displayed in the section header
 
|-
 
|-
|Picture
+
|valign="top"|Command
 +
|valign="top"|RW
 +
|valign="top"|Character
 +
|valign="top"|Custom BROWSE or EDIT command to be executed in the section
 +
|-
 +
|Database
 
|RW
 
|RW
|
+
|Character
|
+
|The section's associated database
 +
|-
 +
|valign="top"|Filter
 +
|valign="top"|RW
 +
|valign="top"|Character
 +
|valign="top"|Filter expression to restrict the records included in the data
 
|-
 
|-
|Stretch
+
|FooterCaption
 
|RW
 
|RW
|
+
|Character
|
+
|Text displayed in section footer
 
|-
 
|-
|Hideheaderatruntime
+
|FooterVisible
 
|RW
 
|RW
|
+
|Boolean
|
+
|Whether section footer is displayed
 
|-
 
|-
|Hideactionbaratruntime
+
|Grid
 +
|R
 +
|Object
 +
|Reference to grid contained in section
 +
|-
 +
|HideHeader
 
|RW
 
|RW
|
+
|Boolean
|
+
|Whether section header is hidden
 
|-
 
|-
|Footercaption
+
|HideActionbar
 
|RW
 
|RW
|
+
|Boolean
|
+
|Whether section actionbar is hidden
 +
|-
 +
|Id
 +
|R
 +
|Character
 +
|Section's id
 +
|-
 +
|Picture
 +
|RW
 +
|Character
 +
|Filename of background image
 +
|-
 +
|valign="top"|Stretch
 +
|valign="top"|RW
 +
|valign="top"|Numeric
 +
|valign="top"|Whether background image should be scaled to fit section: 0 = do not scale, 1 = scale
 +
|-
 +
|Table
 +
|RW
 +
|Character
 +
|The section's associated table
 +
|-
 +
|valign="top"|Type
 +
|valign="top"|R
 +
|valign="top"|Character
 +
|valign="top"|Section's type: form, grid, webview, imagestrip, tabview, attachments, canvas, report, chart, custom, timeline, notifications
 +
|-
 +
|Url
 +
|RW
 +
|Character
 +
|URL rendered by section (WebView only)
 +
|-
 +
|WebView
 +
|R
 +
|Object
 +
|Reference to webview contained in section
 
|-
 
|-
 
|}
 
|}
Line 50: Line 112:
 
!width="50%"|Description
 
!width="50%"|Description
 
|-
 
|-
|Addobject
+
|valign="top"|AddObject
|
+
|valign="top"|existing as Object | newobject as Character, class as Character
|
+
|valign="top"|Add an existing object or a new object, in which case the object's class must also be specified
 +
|-
 +
|RemoveObject
 +
|existing as Object
 +
|Remove the specified object
 +
|-
 +
|Expand
 +
|None
 +
|Expand the section
 +
|-
 +
|Collapse
 +
|None
 +
|Collapse the section
 +
|-
 +
|MoveFirst
 +
|None
 +
|Move to the first data record
 +
|-
 +
|MoveLast
 +
|None
 +
|Move to the last data record
 +
|-
 +
|MoveNext
 +
|None
 +
|Move to the next data record
 +
|-
 +
|MovePrevious
 +
|None
 +
|Move to the previous data record
 +
|-
 +
|Edit
 +
|None
 +
|Enter edit mode for the current record
 +
|-
 +
|Delete
 +
|None
 +
|Delete the current record
 +
|-
 +
|valign="top"|Search
 +
|valign="top"|searchstring as Character
 +
|valign="top"|Search the current index for the specified text
 +
|-
 +
|valign="top"|GoTo
 +
|valign="top"|recordnumber as Numeric
 +
|valign="top"|Move to the specified data record number
 +
|-
 +
|Save
 +
|None
 +
|Save data changes
 +
|-
 +
|Cancel
 +
|None
 +
|Cancel data changes
 
|-
 
|-
|Removeobject
+
|Print
|
+
|None
|
+
|Print the section
 
|-
 
|-
 
|}
 
|}

Revision as of 12:08, 9 January 2013

Note: property, method and event names should be referred to in lowercase in case-sensitive scripting languages.

Properties

This class supports the Common properties plus the following:

Property Access (R/RW) Value Description
ActiveControl RW Object Currently active Control
BackColor RW Character Section's background color
Caption RW Character Text displayed in the section header
Command RW Character Custom BROWSE or EDIT command to be executed in the section
Database RW Character The section's associated database
Filter RW Character Filter expression to restrict the records included in the data
FooterCaption RW Character Text displayed in section footer
FooterVisible RW Boolean Whether section footer is displayed
Grid R Object Reference to grid contained in section
HideHeader RW Boolean Whether section header is hidden
HideActionbar RW Boolean Whether section actionbar is hidden
Id R Character Section's id
Picture RW Character Filename of background image
Stretch RW Numeric Whether background image should be scaled to fit section: 0 = do not scale, 1 = scale
Table RW Character The section's associated table
Type R Character Section's type: form, grid, webview, imagestrip, tabview, attachments, canvas, report, chart, custom, timeline, notifications
Url RW Character URL rendered by section (WebView only)
WebView R Object Reference to webview contained in section

Methods

This class supports the Common Methods plus the following:

Method Args Description
AddObject existing as Object | newobject as Character, class as Character Add an existing object or a new object, in which case the object's class must also be specified
RemoveObject existing as Object Remove the specified object
Expand None Expand the section
Collapse None Collapse the section
MoveFirst None Move to the first data record
MoveLast None Move to the last data record
MoveNext None Move to the next data record
MovePrevious None Move to the previous data record
Edit None Enter edit mode for the current record
Delete None Delete the current record
Search searchstring as Character Search the current index for the specified text
GoTo recordnumber as Numeric Move to the specified data record number
Save None Save data changes
Cancel None Cancel data changes
Print None Print the section

Events

This class supports the Common Events plus the following:

Event Args Description