Files
NativeScript/ui/text-view/text-view.d.ts
Hristo Hristov b2c182fd7a Improve Binding class (#2038)
Remove options parameter
2016-04-27 16:43:45 +03:00

21 lines
877 B
TypeScript

/**
* Contains the TextView class, which represents an editable multi-line line box.
*/
declare module "ui/text-view" {
import {EditableTextBase} from "ui/editable-text-base";
/**
* Represents an editable multiline text view.
*/
export class TextView extends EditableTextBase {
/**
* Gets the native [android widget](http://developer.android.com/reference/android/widget/EditText.html) that represents the user interface for this component. Valid only when running on Android OS.
*/
android: any /* android.widget.EditText */;
/**
* Gets the native iOS [UITextView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextView_Class/) that represents the user interface for this component. Valid only when running on iOS.
*/
ios: any /* UITextView */;
}
}