Home > lang > special > put 
 en fr de es it nl pl pt pt_BR sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
_put
[ Static ] Public Sub _put ( Value As Datatype , ... )

The _put Метод is called when the [] operator is used on the Објект or the Класа to insert data in it.

The method can be static. Then, the [] operator will have to be used on the class, not the object.

The method must take two or more arguments. These arguments will be the value to insert into the object, and those passed between the [ and the ] operators.

For example, the instruction MyObject[X, Y] = Value will cause a call to _put with Value, X and Y as parameters.

This method returns nothing.

See also

Special Methods