Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KeyboardInsetChangedEventArgs.cs
1using System;
2
4{
8 public sealed class KeyboardInsetChangedEventArgs : EventArgs
9 {
15 public KeyboardInsetChangedEventArgs(double keyboardHeight, bool isVisible)
16 {
17 this.KeyboardHeight = keyboardHeight;
18 this.IsVisible = isVisible;
19 }
20
24 public double KeyboardHeight { get; }
25
29 public bool IsVisible { get; }
30 }
31}
Event data describing an update to the keyboard inset height.
double KeyboardHeight
Gets the keyboard height measured in device-independent units.
KeyboardInsetChangedEventArgs(double keyboardHeight, bool isVisible)
Initializes a new instance of the KeyboardInsetChangedEventArgs class.
bool IsVisible
Gets a value indicating whether the keyboard is currently visible.