1 package Excel::Template::Container::Scope;
7 @ISA = qw(Excel::Template::Container);
9 use Excel::Template::Container;
12 # This is used as a placeholder for scoping values across any number
13 # of children. It does nothing on its own.
20 Excel::Template::Container::Scope
24 To provide scoping of parameters for children
32 Excel::Template::Container
52 <scope param1="value1" param2="value2">
56 In the above example, the children would all have access to the parameters
57 param1 and param2. This is useful if you have a section of your template that
58 all has the same set of parameter values, but don't have a common parent.
62 Rob Kinyon (rob.kinyon@gmail.com)