-
Notifications
You must be signed in to change notification settings - Fork 1
/
rich-textfield.common.d.ts
49 lines (49 loc) · 1.76 KB
/
rich-textfield.common.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import stack = require("ui/layouts/stack-layout");
import { Property, PropertyChangeData } from "ui/core/dependency-observable";
export declare class RichTextField extends stack.StackLayout {
message: string;
private textField;
private label;
static secureProperty: Property;
secure: boolean;
static textPaddingLeftProperty: Property;
textPaddingLeft: string;
static fieldPaddingTopProperty: Property;
fieldPaddingTop: string;
static iconColorProperty: Property;
iconColor: string;
static iconProperty: Property;
icon: string;
static iconSizeProperty: Property;
iconSize: number;
static fieldHeightProperty: Property;
fieldHeight: number;
static fieldColorProperty: Property;
fieldColor: string;
static fieldPaddingLeftProperty: Property;
fieldPaddingLeft: string;
static fieldPaddingRightProperty: Property;
fieldPaddingRight: string;
static fieldBackgroundColorProperty: Property;
fieldBackgroundColor: string;
static fieldHintProperty: Property;
fieldHint: string;
static fieldHintColorProperty: Property;
fieldHintColor: string;
static fieldBorderColorProperty: Property;
fieldBorderColor: string;
static fieldBorderWidthProperty: Property;
fieldBorderWidth: string;
static fieldLeftBorderWidthProperty: Property;
fieldLeftBorderWidth: string;
static fieldRightBorderWidthProperty: Property;
fieldRightBorderWidth: string;
static fieldTopBorderWidthProperty: Property;
fieldTopBorderWidth: string;
static fieldBottomBorderWidthProperty: Property;
fieldBottomBorderWidth: string;
constructor();
onLoad(eventData: any): void;
onPropertyChanged(data: PropertyChangeData): void;
private calculateLabelPadding(stackLayout);
}