Attachable event handler name

Programmatically added event handler name should match pattern: Attachable_ prefix

Noncompliant Code Example

// Parameters:
//  Item - FormField
Procedure Incorrect(Item)
	
	Item.SetAction("OnChange", "IncorrectOnChange");
	
EndProcedure

Compliant Solution

// Parameters:
//  Item - FormField
Procedure Correct(Item)
	
	Item.SetAction("OnChange", "Attachable_CorrectOnChange");
	
EndProcedure

See