ScrollableControl.GetScrollState(Int32) Método
Definición
Determina si se ha establecido el marcador especificado.Determines whether the specified flag has been set.
protected:
bool GetScrollState(int bit);
protected bool GetScrollState (int bit);
member this.GetScrollState : int -> bool
Protected Function GetScrollState (bit As Integer) As Boolean
Parámetros
- bit
- Int32
Marcador que se va a comprobar.The flag to check.
Devoluciones
true
si se ha establecido el marcador especificado; de lo contrario, false
.true
if the specified flag has been set; otherwise, false
.
Comentarios
En la tabla siguiente se describen las marcas que ScrollableControl utiliza el control.The following table describes the flags the ScrollableControl control uses.
ValorValue | DescripciónDescription |
---|---|
ScrollStateAutoScrolling | Máscara que se usa para recuperar si la AutoScroll propiedad está establecida en true .A mask used to retrieve whether the AutoScroll property is set to true . |
ScrollStateHScrollVisible | Máscara que se usa para recuperar si la HScroll propiedad está establecida en true .A mask used to retrieve whether the HScroll property is set to true . |
ScrollStateVScrollVisible | Máscara que se usa para recuperar si la VScroll propiedad está establecida en true .A mask used to retrieve whether the VScroll property is set to true . |
ScrollStateUserHasScrolled | Máscara que se usa para recuperar si el usuario ha realizado el ScrollableControl desplazamiento.A mask used to retrieve whether the user has made the ScrollableControl scroll. |
ScrollStateFullDrag | Máscara que se usa para recuperar si el usuario ha habilitado la operación de arrastrar y colocar de la ventana completa.A mask used to retrieve whether the user has enabled the full window drag-and-drop operation. |