ZPT-Sharp
v1.0.0
Zope Page Templates for .NET
|
Represents a collection of METAL macros. More...
Public Member Functions | |
IZptElement | GetElement (string name) |
Gets a single macro element by name. More... | |
bool | HasMacro (string name) |
Gets a value indicating whether the current container contains a macro of the given name. More... | |
IEnumerable< IMetalMacro > | GetAllMacros () |
Gets a collection of all of the macros in the container. More... | |
![]() | |
bool | HandleTalesPath (string pathFragment, out object result, IRenderingContext currentContext) |
Gets an System.Object based upon a TALES path fragment. More... | |
Represents a collection of METAL macros.
IEnumerable<IMetalMacro> CSF.Zpt.Metal.IMetalMacroContainer.GetAllMacros | ( | ) |
Gets a collection of all of the macros in the container.
Implemented in CSF.Zpt.Metal.MetalMacroContainer.
IZptElement CSF.Zpt.Metal.IMetalMacroContainer.GetElement | ( | string | name | ) |
Gets a single macro element by name.
null
reference if no such macro exists.name | The macro name. |
Implemented in CSF.Zpt.Metal.MetalMacroContainer.
bool CSF.Zpt.Metal.IMetalMacroContainer.HasMacro | ( | string | name | ) |
Gets a value indicating whether the current container contains a macro of the given name.
true
, if a macro exists of the given name, false
otherwise.name | The macro name. |
Implemented in CSF.Zpt.Metal.MetalMacroContainer.