An interface for converters that can convert an object to a corresponding MarkupExtension.
Inheritance Hierarchy
IMarkupExtensionConverter
Remarks
This interface is only used for GraphML serialization.
Type Details
- yFiles module
- view
Methods
Returns if the converter can convert the value
to a MarkupExtension in the current write context.
Parameters
options - Object
A map of options to pass to the method.
A map of options to pass to the method.
- context - IWriteContext
- The current write context.
- value - any
- The object to convert.
Returns
- ↪boolean
- Whether the converter can convert the passed value.
Converts the value
to a MarkupExtension using the current write context.
Parameters
options - Object
A map of options to pass to the method.
A map of options to pass to the method.
- context - IWriteContext
- The current write context.
- value - any
- The object to convert.
Returns
- ↪MarkupExtension
- The MarkupExtension the value was converted to.