Files
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

28 lines
849 B
TypeScript

/**
* @module "ui/label"
*
* Contains the Label class, which represents a standard label widget.
*/ /** */
import { TextBase } from "../text-base";
/**
* Represents a text label.
*/
export class Label extends TextBase {
/**
* Gets the native [android widget](http://developer.android.com/reference/android/widget/TextView.html) that represents the user interface for this component. Valid only when running on Android OS.
*/
android: any /* android.widget.TextView */;
/**
* Gets the native [UILabel](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UILabel_Class/) that represents the user interface for this component. Valid only when running on iOS.
*/
ios: any /* UILabel */;
/**
* Gets or sets whether the Label wraps text or not.
*/
textWrap: boolean;
}