GseosBlocks.TBDMBlock.SendBlock
Previous  Top  Next

SendBlock([bCopyMode], [bDataSource])

The SendBlock() member function is a method of all BDM blocks. You use this function to publish blocks of that particular type.

ParameterDescription     
bCopyModeOptional. If True the contents of the block will be copied into the next block. The default is False and you will get an uninitialized block after you sent off the current one.     
bDataSourceOptional, defaults to False if not specified. If True the block is generated from the Python data source and is mutually exclusive with all other data sources in the system. To enable the data source call GseosBlocks.EnableDataSource(). You usually specify this parameter only if you write a data source in a Python module.     
Returns
None

Example

TestDec.Data[0:100] = TLM.Data[0:100]
TestDec.SendBlock()