Difference between revisions of "WITH"

From Lianjapedia
Jump to: navigation, search
Line 19: Line 19:
 
with oProduct
 
with oProduct
 
.productname = "Lianja"
 
.productname = "Lianja"
.productversion = "10.0"
+
.productversion = "1.0"
.productyear = "2010"
+
.productyear = "2013"
 
endwith
 
endwith
 
</code>
 
</code>

Revision as of 12:06, 21 December 2012

Purpose

Specify multiple properties for an object

Syntax

WITH <object>

<property definitions>

ENDWITH

See Also

ACLASS(), ADDPROPERTY(), AMEMBERS(), COMPOBJ(), CREATEOBJECT(), DEFINE CLASS, DISPLAY CLASSES, DODEFAULT(), FOREACH, LIST CLASSES, LOADOBJECT(), NEWOBJECT(), OBJECT(), PRINT_HTML(), PRINT_JSON(), PRINT_R(), PRINT_XML(), REMOVEPROPERTY(), REQUIRE_ONCE(), SAVEOBJECT(), SQL SELECT

Description

The WITH...ENDWITH block is used to specify multiple properties for an object. The object name is specified in <object>. The <property definitions> consists of property assignments. The properties are specified using preceding dot notation.

Example

with oProduct
.productname = "Lianja"
.productversion = "1.0"
.productyear = "2013"
endwith