diff --git a/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp b/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp index 5460f4cffda..79fa74fd72f 100644 --- a/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +++ b/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp @@ -389,6 +389,11 @@ struct CompTextHost : public winrt::implements { //@cmember Get the bits representing requested scroll bars for the window HRESULT TxGetScrollBars(DWORD *pdwScrollBar) override { if (m_outer->m_multiline) { + // Check if scrolling is enabled for multiline inputs + if (!m_outer->windowsTextInputProps().scrollEnabled) { + *pdwScrollBar = 0; + return S_OK; + } *pdwScrollBar = WS_VSCROLL | WS_HSCROLL | ES_AUTOVSCROLL | ES_AUTOHSCROLL; } else { *pdwScrollBar = WS_HSCROLL | ES_AUTOHSCROLL;