Fixed TBBUTTONINFO.fsStyle set failure #326

pull/350/head
David Hall 2022-10-08 20:38:18 -06:00
parent bdf07f10f5
commit 55bab3873e
1 changed files with 1 additions and 1 deletions

View File

@ -3777,7 +3777,7 @@ namespace Vanara.PInvoke
/// <para>Type: <c><c>BYTE</c></c></para>
/// <para>Style flags of the button. This can be one or more of the values listed in Toolbar Control and Button Styles.</para>
/// </summary>
public ToolbarStyle fsStyle { get => (ToolbarStyle)_fsStyle; set => _fsStyle = (byte)((ushort)fsStyle & 0x00FF); }
public ToolbarStyle fsStyle { get => (ToolbarStyle)_fsStyle; set => _fsStyle = (byte)((ushort)value & 0x00FF); }
private byte _fsStyle;