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

32 lines
1.0 KiB
TypeScript

/**
* @module "ui/text-base"
*
* Contains the TextField class, which represents an editable single-line box.
*/ /** */
import { EditableTextBase, Property } from "../editable-text-base";
export const secureProperty: Property<TextField, boolean>;
/**
* Represents an editable text field.
*/
export class TextField extends EditableTextBase {
public static returnPressEvent: string;
/**
* 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 [UITextField](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextField_Class/) that represents the user interface for this component. Valid only when running on iOS.
*/
ios: any /* UITextField */;
/**
* Gets or sets if a text field is for password entry.
*/
secure: boolean;
}