Share via


LineDisplayAttributes.IsCharacterSetMappingEnabled Property

Definition

Gets or sets whether character set mapping is enabled.

public:
 property bool IsCharacterSetMappingEnabled { bool get(); void set(bool value); };
bool IsCharacterSetMappingEnabled();

void IsCharacterSetMappingEnabled(bool value);
public bool IsCharacterSetMappingEnabled { get; set; }
var boolean = lineDisplayAttributes.isCharacterSetMappingEnabled;
lineDisplayAttributes.isCharacterSetMappingEnabled = boolean;
Public Property IsCharacterSetMappingEnabled As Boolean

Property Value

Boolean

bool

True if character set mapping is enabled; otherwise, False.

Remarks

When LineDisplayCapabilities.CanMapCharacterSets is True, this writeable property controls whether character mapping is enabled. When character mapping is enabled, characters sent by the application are mapped by the device driver/the Service Object to the characters supported by the device.

When LineDisplayCapabilities.CanMapCharacterSets is False the value of this property is fixed to False and cannot be changed.

Changes to this property are committed to the device on the next call to ClaimedLineDisplay.TryUpdateAttributesAsync(LineDisplayAttributes).

Applies to

See also