![JAR search and dependency download from the Maven repository](/logo.png)
scaffold.libs_as.feathers.controls.TrackInteractionMode.as Maven / Gradle / Ivy
/*
Feathers
Copyright 2012-2016 Bowler Hat LLC. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.controls
{
/**
* Interaction modes for components with a track.
*/
public class TrackInteractionMode
{
/**
* When the track is touched, the slider's thumb jumps directly to the
* touch position, and the slider's value
property is
* updated to match as if the thumb were dragged to that position, and
* the thumb may continue to be dragged until the touch ends.
*/
public static const TO_VALUE:String = "toValue";
/**
* When the track is touched, the value
is increased or
* decreased (depending on the location of the touch) by the value of
* the page
property.
*/
public static const BY_PAGE:String = "byPage";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy