scaffold.libs_as.feathers.controls.AutoSizeMode.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
{
/**
* Constants that determine how a component should automatically calculate
* its own dimensions when no explicit dimensions are provided.
*/
public class AutoSizeMode
{
/**
* The component will automatically calculate its dimensions to fill the
* entire stage.
*/
public static const STAGE:String = "stage";
/**
* The component will automatically calculate its dimensions to fit its
* content's ideal dimensions.
*/
public static const CONTENT:String = "content";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy