filename#

property MultiplexerBand.filename: str#

Name of file defining the multiplexer band.

Value should be a full file path.

Examples

>>> from ansys.aedt.core import Emit
>>> app = Emit()
>>> mux = app.schematic.create_component("Multiplexer")
>>> mplex_band = mux.children[0]
>>> mplex_band.passband_type = MultiplexerBand.PassbandTypeOption.BY_FILE
>>> mplex_band.filename = "example_value"