Skip to main content

Documentation Index

Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Open topic with navigation CAPL Functions » ISO11783 » Task Controller Interaction Layer (TC IL) » TCIL_SetNodeProperty

TCIL_SetNodeProperty

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long TCIL_SetNodeProperty( char propertyName[], long propertyValue); // form 1
long TCIL_SetNodeProperty( dbNode tc, char propertyName[], long propertyValue); // form 2

Description

Changes an internal property of the node.

Parameters

Return Values

  • 0: Property has been set successfully
  • < 0: An error has occurred: IL Error Code

Example

Example form 2
void SetLanguageToEnglish()
{
  TCIL_SetNodeProperty(TC, "languageCode", 0x656E); // 'en'
}