Table of Contents

Fill (Statement)

Format

Create a One Dimensional Array and Fill With a Value

dim variable ( array_size ) fill expression
dim variable [ array_size ] fill expression

Create a Two Dimensional Array and Fill With a Value

dim variable ( array_size_rows , array_size_columns) fill expression
dim variable [ array_size_rows , array_size_columns] fill expression

Fill an Existing Array With a Single Value

dim variable fill expression
dim variable[] fill expression
variable fill expression
variable[] fill expression

Description

Fills a newly dimensioned or previously dimensioned array with a single value.

See Also

2016/01/01 22:42

History

1.99.99.56New to version