Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

SmartFormatter.InsertExtension

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public SmartFormatter InsertExtension(int position, ISource sourceExtension);

Parameters

Parameter Description
position The position in the Unity.SmartStrings.SmartFormatter.SourceExtensions list where new extensions will be added.
sourceExtension Source extension to insert.

Returns

SmartFormatter This SmartFormatter instance.

Description

Adds the ISource extensions at the position of the SmartFormatter.GetSourceExtensions list of this formatter, if the Type has not been added before. If the extension implements IInitializer, IInitializer.Initialize will be invoked.


Declaration

public SmartFormatter InsertExtension(int position, IFormatter formatterExtension);

Parameters

Parameter Description
position The position in the formatter extensions list where the new extension is added.
formatterExtension Formatter extension to insert.

Returns

SmartFormatter This SmartFormatter instance.

Description

Adds the IFormatter extension at the position of the SmartFormatter.GetFormatterExtensions list of this formatter, if the Type has not been added before. If the extension implements IInitializer, IInitializer.Initialize will be invoked.