name property
name property
Gets or sets the name of the data source object to be used to access the data source object in a template document.
Remarks
When the name of the data source object is specified, you can access the data source object and its members in a template document using the name.
When the name of the data source object is null or empty, you can still access members of the data source object in a template document using context object member access (see Template Syntax Reference for more information), but you cannot access the data source object itself.
When passing multiple DataSourceInfo
instances to DocumentAssembler
, only the name of
the first data source object can be null or empty. Names of the rest ones must be specified and unique.
Definition:
@property
def name(self):
...
@name.setter
def name(self, value):
...
See Also
- module
groupdocs.assembly
- class
DataSourceInfo
- class
DocumentAssembler