Extensions.FlashPlus.IsLateBound

From emotive
Jump to navigation Jump to search

Classification

Name IsLateBound
Short Description Check the given block of the given flash:FlashSession can be flashed late-bound
Class Term
Extension OTX FlashPlus extension
Group Flash plus related terms
Exceptions FlashPlusException
Checker Rules -
Standard Compliant Yes

OTL Syntax

BooleanTerm FlashPlus.IsLateBound(NumericTerm block, FlashSessionTerm session);

Description

Returns true if the given block of the given flash:FlashSession can be flashed late-bound. Otherwise returns false.

Icons Note.png The appropriate MVCI system operation is MCDDbFlashData.isLatebound.

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
String The active flash file name

Properties

Name Data Type Class Default Cardinality Description
Block Numeric Term [1..1] Specifies a block in the flash:FlashSession context that will be addressed. The value will be in the range of the existing blocks. Float values will be truncated.
Session FlashSession Term - [1..1] Specifies the flash:FlashSession, which provides the data that will be addressed.

OTL Examples

/// Local Declarations

DiagCom.ComChannel ComChannel1;
Flash.FlashSession FlashSession1;
Boolean Boolean1 = false;

/// Flow

ComChannel1 = DiagCom.GetComChannel("SCHEINWERFER", NULL, false);
FlashSession1 = Flash.GetFlashSession("_7PP907357F_7520");
Boolean1 = FlashPlus.IsLateBound(1, FlashSession1);

See also

SetActiveFile
GetActiveFileName
GetFlashDataFileNames
GetOwnIdentFromComChannel
FlashPlusException