LineDisplayWindow.TryScrollTextAsync Method
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.
Scroll the window text contents the specified number of lines in the specified direction.
public:
virtual IAsyncOperation<bool> ^ TryScrollTextAsync(LineDisplayScrollDirection direction, unsigned int numberOfColumnsOrRows) = TryScrollTextAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryScrollTextAsync(LineDisplayScrollDirection const& direction, uint32_t const& numberOfColumnsOrRows);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryScrollTextAsync(LineDisplayScrollDirection direction, uint numberOfColumnsOrRows);
function tryScrollTextAsync(direction, numberOfColumnsOrRows)
Public Function TryScrollTextAsync (direction As LineDisplayScrollDirection, numberOfColumnsOrRows As UInteger) As IAsyncOperation(Of Boolean)
Parameters
- direction
- LineDisplayScrollDirection
The direction in which to scroll text.
- numberOfColumnsOrRows
-
UInt32
unsigned int
uint32_t
The number of columns or rows to scroll. Columns are used if the scroll direction is left or right; rows are used if the scroll direction is up or down.
Returns
- Attributes