LineDisplayAttributes.IsCharacterSetMappingEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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).