RadBorderHandler
Provides a cross-platform handler for the IRadBorder control. This handler manages the mapping between the virtual IRadBorder and the native border view implementations across different platforms.
Definition
Namespace:Telerik.Maui.Handlers
Assembly:Telerik.Maui.Core.dll
Syntax:
public class RadBorderHandler : ViewHandler<IRadBorder, BorderViewGroup>
Inheritance: objectRadBorderHandler
Derived Classes:
Constructors
Initializes a new instance of the RadBorderHandler class with the default property mapper.
public RadBorderHandler()
Initializes a new instance of the RadBorderHandler class with the specified property mapper and command mapper.
public RadBorderHandler(PropertyMapper mapper, CommandMapper commandMapper)
The PropertyMapper to use for property mapping, or null to use the default BorderMapper.
commandMapperCommandMapperThe CommandMapper to use for command mapping, or null if no command mapping is needed.
Initializes a new instance of the RadBorderHandler class with the specified property mapper.
public RadBorderHandler(PropertyMapper mapper)
The PropertyMapper to use for property mapping, or null to use the default BorderMapper.
Fields
BorderMapper
PropertyMapper<IRadBorder, RadBorderHandler>
Gets the property mapper that defines how IRadBorder properties are mapped to native view properties. This mapper includes mappings for background color, border color, border brush, corner radius, border thickness, and content.
public static PropertyMapper<IRadBorder, RadBorderHandler> BorderMapper